diff --git a/CHANGELOG b/CHANGELOG index 257a2868e..5b51a5511 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,48 @@ +Version 3.4.2 + + Updates to the documentation (tobias, silke, annando) + Updates to the translations (tobiasd & translation teams) + Updates to themes frost-mobile, vier, duepuntozero, quattro (annando, tobiasd) + Enancements of the communications via OStatus and Diaspora protocols (annando) + Option to automatically follow OStatus contacts was moved from addon to the core (annando) + Add tool to import OStatus contacts from an old account (annando) + SALMON slaps with OStatus were reworked (annando) + Fix for saving searches (rabuzarus) + Fix separation of list items in contact editor (issue #1747) (tobiasd) + When a picture is uploaded, "don't send a note about this new picture" is now the default behaviour (tobiasd) + Show profile url in contact-edit overview listing (issue #1745) (tobiasd) + The vagrant VM usage was changed so that the "installation" is now done automatically on the first run. Example users are automatically put into the database (silke) + Buttons to insert images or attachment to a post use a popup browser to select a previously uploaded item or upload a new one (fabrixxm, rabuzarus) + Improvements in contact handling (annando) + Friendica node can now query other nodes about their users and the contact lists (annando) + Contact recommendation is done only for recently active users (annando) + Admins can opt for search the local DB for contacts instead of the global directory (annando) + The global directory is queried in the background to update local DB and improve similar searches in the future. (annando) + By communication over the Diaspora protocol, red#matrix sources are now correctly identified, hubzilla is detected (annando) + Adopt limitation of usage of "-" in username to avoid conflicts with GNU Social and Diaspora (annando) + The [url] tag now also suppots ftp, mailto, gopher links (annando) + An "inspect queue" module was added to the admin panel (tobiasd) + Fix some missing SQL data escapes (fabrixxm) + Improved the accessibility of the web UI for better screen reader compatibility (annando) + Added access keys (annando) + Support for the public relay server of Diaspora (annando) + Support for the new nodeinfo protocol (successor of current statistics.json), addon deprecated as functionality has been moved into the core (annando) + Fix issue with moved Friendica profiles and Diaspora communication (issue #1491) (annando) + Show more information on contact request page (issue #1739) (annando) + Support for newer versions of the Twidere client was enhanced (annando) + Support for inline [code] tag usage (fabrixxm) + Fix login form in aside (issue #1348) (annando) + Show both url-style and webfinger-style identity address in profile (issue #1621) (tobiasd) + Add button to reload all active plugins in admin plugins page to ensure new hooks are used (fabrixxm) + Make the hardcoded path to global directory configurable (annando) + Change default directory to dir.friendi.ca (annando) + Improve cache system with granular expire time (annando) + Remove oohembed code (issue #1855) (annando) + Checks for mcrypt availability before enable or use RINO2 (fabrixm) + Fix following email contacts (issue #1896) (annando) + Parse BBCode in contact request notification email (annando) + + Version 3.4.1 Implement server-to-server encryption (RINO) using php-encryption library as "RINO 2", deprecate "RINO 1" (issue #1655) (fabrixxm) diff --git a/INSTALL.txt b/INSTALL.txt index 294c6c9dd..7726bdb0d 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -64,6 +64,8 @@ you wish to communicate with the Diaspora network. 3. Create an empty database and note the access details (hostname, username, password, database name). + - Friendica needs the permission to create and delete fields and tables in its own database. + 4. If you know in advance that it will be impossible for the web server to write or create files in your web directory, create an empty file called diff --git a/boot.php b/boot.php index 0e50e8c0e..dcf6c65b1 100644 --- a/boot.php +++ b/boot.php @@ -17,9 +17,9 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); -define ( 'FRIENDICA_VERSION', '3.4.1' ); +define ( 'FRIENDICA_VERSION', '3.4.2' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1185 ); +define ( 'DB_UPDATE_VERSION', 1188 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -84,6 +84,15 @@ define ( 'LOGGER_DEBUG', 2 ); define ( 'LOGGER_DATA', 3 ); define ( 'LOGGER_ALL', 4 ); +/** + * cache levels + */ + +define ( 'CACHE_MONTH', 0 ); +define ( 'CACHE_WEEK', 1 ); +define ( 'CACHE_DAY', 2 ); +define ( 'CACHE_HOUR', 3 ); + /** * registration policies */ @@ -274,6 +283,7 @@ define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' ); define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' ); define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' ); define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' ); +define ( 'ACTIVITY_SHARE', NAMESPACE_ACTIVITY_SCHEMA . 'share' ); define ( 'ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke' ); define ( 'ACTIVITY_MOOD', NAMESPACE_ZOT . '/activity/mood' ); @@ -828,7 +838,7 @@ if(! class_exists('App')) { $v = get_class_vars( $class ); if(x($v,"name")) $name = $v['name']; } - if ($name===""){ + if ($name===""){ echo "template engine $class cannot be registered without a name.\n"; killme(); } @@ -1448,7 +1458,7 @@ if(! function_exists('current_theme')) { $a = get_app(); $page_theme = null; - + // Find the theme that belongs to the user whose stuff we are looking at if($a->profile_uid && ($a->profile_uid != local_user())) { @@ -1487,7 +1497,7 @@ if(! function_exists('current_theme')) { // user has selected to have the mobile theme be the same as the normal one $system_theme = $standard_system_theme; $theme_name = $standard_theme_name; - + if($page_theme) $theme_name = $page_theme; } @@ -1532,7 +1542,7 @@ if(! function_exists('current_theme_url')) { $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : ''); if (file_exists('view/theme/' . $t . '/style.php')) return($a->get_baseurl() . '/view/theme/' . $t . '/style.pcss' . $opts); - + return($a->get_baseurl() . '/view/theme/' . $t . '/style.css'); } } @@ -1618,9 +1628,9 @@ if(! function_exists('load_contact_links')) { $url = normalise_link($rr['url']); $ret[$url] = $rr; } - } - else + } else $ret['empty'] = true; + $a->contacts = $ret; return; } @@ -1633,24 +1643,24 @@ if(! function_exists('load_contact_links')) { * @return string */ function build_querystring($params, $name=null) { - $ret = ""; - foreach($params as $key=>$val) { - if(is_array($val)) { - if($name==null) { - $ret .= build_querystring($val, $key); - } else { - $ret .= build_querystring($val, $name."[$key]"); - } - } else { - $val = urlencode($val); - if($name!=null) { - $ret.=$name."[$key]"."=$val&"; - } else { - $ret.= "$key=$val&"; - } - } - } - return $ret; + $ret = ""; + foreach($params as $key=>$val) { + if(is_array($val)) { + if($name==null) { + $ret .= build_querystring($val, $key); + } else { + $ret .= build_querystring($val, $name."[$key]"); + } + } else { + $val = urlencode($val); + if($name!=null) { + $ret.=$name."[$key]"."=$val&"; + } else { + $ret.= "$key=$val&"; + } + } + } + return $ret; } function explode_querystring($query) { @@ -1658,8 +1668,7 @@ function explode_querystring($query) { if($arg_st !== false) { $base = substr($query, 0, $arg_st); $arg_st += 1; - } - else { + } else { $base = ''; $arg_st = 0; } @@ -1708,6 +1717,15 @@ function random_digits($digits) { return $rn; } +function get_server() { + $server = get_config("system", "directory"); + + if ($server == "") + $server = "http://dir.friendi.ca"; + + return($server); +} + function get_cachefile($file, $writemode = true) { $cache = get_itemcachepath(); @@ -1745,16 +1763,16 @@ function clear_cache($basepath = "", $path = "") { $cachetime = 86400; if (is_writable($path)){ - if ($dh = opendir($path)) { - while (($file = readdir($dh)) !== false) { - $fullpath = $path."/".$file; - if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != "..")) - clear_cache($basepath, $fullpath); - if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime))) - unlink($fullpath); + if ($dh = opendir($path)) { + while (($file = readdir($dh)) !== false) { + $fullpath = $path."/".$file; + if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != "..")) + clear_cache($basepath, $fullpath); + if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime))) + unlink($fullpath); + } + closedir($dh); } - closedir($dh); - } } } @@ -1793,7 +1811,11 @@ function get_lockpath() { if ($temppath != "") { $lockpath = $temppath."/lock"; - mkdir($lockpath); + + if (!is_dir($lockpath)) + mkdir($lockpath); + elseif (!is_writable($lockpath)) + $lockpath = $temppath; if (is_dir($lockpath) AND is_writable($lockpath)) { set_config("system", "lockpath", $lockpath); @@ -1804,14 +1826,22 @@ function get_lockpath() { } function get_temppath() { + $a = get_app(); + $temppath = get_config("system","temppath"); if (($temppath != "") AND is_dir($temppath) AND is_writable($temppath)) return($temppath); $temppath = sys_get_temp_dir(); if (($temppath != "") AND is_dir($temppath) AND is_writable($temppath)) { - set_config("system", "temppath", $temppath); - return($temppath); + $temppath .= "/".$a->get_hostname(); + if (!is_dir($temppath)) + mkdir($temppath); + + if (is_dir($temppath) AND is_writable($temppath)) { + set_config("system", "temppath", $temppath); + return($temppath); + } } return(""); diff --git a/database.sql b/database.sql index b65dee657..76df6aec1 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 3.4.0 (Lily of the valley) --- DB_UPDATE_VERSION 1185 +-- Friendica 3.4.1 (Lily of the valley) +-- DB_UPDATE_VERSION 1188 -- ------------------------------------------ @@ -53,6 +53,7 @@ CREATE TABLE IF NOT EXISTS `auth_codes` ( CREATE TABLE IF NOT EXISTS `cache` ( `k` varchar(255) NOT NULL PRIMARY KEY, `v` text NOT NULL, + `expire_mode` int(11) NOT NULL DEFAULT 0, `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', INDEX `updated` (`updated`) ) DEFAULT CHARSET=utf8; @@ -136,6 +137,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( `hub-verify` varchar(255) NOT NULL DEFAULT '', `last-update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `success_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `failure_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `name-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', @@ -300,18 +302,25 @@ CREATE TABLE IF NOT EXISTS `gcign` ( CREATE TABLE IF NOT EXISTS `gcontact` ( `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL DEFAULT '', + `nick` varchar(255) NOT NULL DEFAULT '', `url` varchar(255) NOT NULL DEFAULT '', `nurl` varchar(255) NOT NULL DEFAULT '', `photo` varchar(255) NOT NULL DEFAULT '', `connect` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated` datetime DEFAULT '0000-00-00 00:00:00', + `last_contact` datetime DEFAULT '0000-00-00 00:00:00', + `last_failure` datetime DEFAULT '0000-00-00 00:00:00', `location` varchar(255) NOT NULL DEFAULT '', `about` text NOT NULL, `keywords` text NOT NULL, `gender` varchar(32) NOT NULL DEFAULT '', + `community` tinyint(1) NOT NULL DEFAULT 0, `network` varchar(255) NOT NULL DEFAULT '', `generation` tinyint(3) NOT NULL DEFAULT 0, - INDEX `nurl` (`nurl`) + `server_url` varchar(255) NOT NULL DEFAULT '', + INDEX `nurl` (`nurl`), + INDEX `updated` (`updated`) ) DEFAULT CHARSET=utf8; -- @@ -352,6 +361,28 @@ CREATE TABLE IF NOT EXISTS `group_member` ( INDEX `uid_gid_contactid` (`uid`,`gid`,`contact-id`) ) DEFAULT CHARSET=utf8; +-- +-- TABLE gserver +-- +CREATE TABLE IF NOT EXISTS `gserver` ( + `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY, + `url` varchar(255) NOT NULL DEFAULT '', + `nurl` varchar(255) NOT NULL DEFAULT '', + `version` varchar(255) NOT NULL DEFAULT '', + `site_name` varchar(255) NOT NULL DEFAULT '', + `info` text NOT NULL, + `register_policy` tinyint(1) NOT NULL DEFAULT 0, + `poco` varchar(255) NOT NULL DEFAULT '', + `noscrape` varchar(255) NOT NULL DEFAULT '', + `network` varchar(32) NOT NULL DEFAULT '', + `platform` varchar(255) NOT NULL DEFAULT '', + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `last_poco_query` datetime DEFAULT '0000-00-00 00:00:00', + `last_contact` datetime DEFAULT '0000-00-00 00:00:00', + `last_failure` datetime DEFAULT '0000-00-00 00:00:00', + INDEX `nurl` (`nurl`) +) DEFAULT CHARSET=utf8; + -- -- TABLE guid -- diff --git a/doc/Accesskeys.md b/doc/Accesskeys.md new file mode 100644 index 000000000..0c00c2547 --- /dev/null +++ b/doc/Accesskeys.md @@ -0,0 +1,70 @@ +Accesskeys in Friendica +======================= + +General +------- +* p: profile +* n: network +* c: community +* s: search +* a: admin +* f: notifications +* u: user menu (in themes "vier" and "quattro") + +/profile +-------- +* m: Status Messages and Posts +* r: Profile Details +* h: Photo Albums +* v: Videos +* e: Events and Calendar +* t: Personal Notes + +/contacts (contact list) +--------- +* g: Suggestions +* l: Show all Contacts +* o: Only show unblocked contacts +* b: Only show blocked contacts +* i: Only show ignored contacts +* y: Only show archived contacts +* h: Only show hidden contacts + +/contacts (single contact view) +------------------------------- +* b: Toggle Blocked status +* i: Toggle Ignored status +* v: Toggle Archive status +* r: Repair + +/message +-------- +* m: New message + +/network +-------- +* e: Sort by Comment Date +* t: Sort by Post Date +* r: Conversation (Posts that mention or involve you) +* w: New posts +* b: Bookmarks +* m: Favourite Posts + +/notifications +-------------- +* y: System +* w: Network +* r: Personal +* h: Home +* i: Introductions + +/settings +--------- +* o: Account +* t: Additional features +* w: Social Networks +* l: Plugins +* d: Delegations +* b: Connected apps +* e: Export personal data +* r: Remove account diff --git a/doc/BBCode.md b/doc/BBCode.md index 7068f1691..fe7c1481f 100644 --- a/doc/BBCode.md +++ b/doc/BBCode.md @@ -1,146 +1,154 @@ -Friendica BBCode tags reference -======================== - -* [Home](help) - -Inline ------ - - -
[b]bold[/b]
: bold - -
[i]italic[/i]
: italic - -
[u]underlined[/u]
: underlined - -
[s]strike[/s]
: strike - -
[color=red]red[/color]
: red - -
[url=http://www.friendica.com]Friendica[/url]
: Friendica - -
[img]http://friendica.com/sites/default/files/friendika-32.png[/img]
: Immagine/foto - -
[size=xx-small]small text[/size]
: small text - -
[size=xx-large]big text[/size]
: big text - -
[size=20]exact size[/size] (size can be any number, in pixel)
: exact size - - - - - - - -Block ------ - -
[code]code[/code]
- -code - -

 

- -
[quote]quote[/quote]
- -
quote
- -

 

- -
[quote=Author]Author? Me? No, no, no...[/quote]
- -Author wrote:
Author? Me? No, no, no...
- -

 

- -
[center]centered text[/center]
- -
centered text
- -

 

- -**Table** -
[table border=1]
- [tr] 
-   [th]Tables now[/th]
- [/tr]
- [tr]
-   [td]Have headers[/td]
- [/tr]
-[/table]
- -
Tables now
Have headers
- -

 

- -**List** - -
[list]
- [*] First list element
- [*] Second list element
-[/list]
- - -[list] is equivalent to [ul] (unordered list). - -[ol] can be used instead of [list] to show an ordered list: - -
[ol]
- [*] First list element
- [*] Second list element
-[/ol]
- - -For more options on ordered lists, you can define the style of numeration on [list] argument: -
[list=1]
: decimal - -
[list=i]
: lover case roman - -
[list=I]
: upper case roman - -
[list=a]
: lover case alphabetic - -
[list=A] 
: upper case alphabetic - - - - -Embed ------- - -You can embed video, audio and more in a message. - -
[video]url[/video]
-
[audio]url[/audio]
- -Where *url* can be an url to youtube, vimeo, soundcloud, or other sites wich supports oembed or opengraph specifications. -*url* can be also full url to an ogg file. HTML5 tag will be used to show it. - -
[url]*url*[/url]
- -If *url* supports oembed or opengraph specifications the embedded object will be shown (eg, documents from scribd). -Page title with a link to *url* will be shown. - -Map ---- - -
[map]address[/map]
-
[map=lat,long]
- -You can embed maps from coordinates or addresses. -This require "openstreetmap" addon version 1.3 or newer. - - -Special -------- - -If you need to put literal bbcode in a message, [noparse], [nobb] or [pre] are used to escape bbcode: - -
[noparse][b]bold[/b][/noparse]
: [b]bold[/b] - - +Friendica BBCode tags reference +======================== + +* [Home](help) + +Inline +----- + + +
[b]bold[/b]
: bold + +
[i]italic[/i]
: italic + +
[u]underlined[/u]
: underlined + +
[s]strike[/s]
: strike + +
[color=red]red[/color]
: red + +
[url=http://www.friendica.com]Friendica[/url]
: Friendica + +
[img]http://friendica.com/sites/default/files/friendika-32.png[/img]
: Immagine/foto + +
[size=xx-small]small text[/size]
: small text + +
[size=xx-large]big text[/size]
: big text + +
[size=20]exact size[/size] (size can be any number, in pixel)
: exact size + + + + + + + +Block +----- + +
[code]code[/code]
+ +code + +

 

+ +
[quote]quote[/quote]
+ +
quote
+ +

 

+ +
[quote=Author]Author? Me? No, no, no...[/quote]
+ +Author wrote:
Author? Me? No, no, no...
+ +

 

+ +
[center]centered text[/center]
+ +
centered text
+ +

 

+ +
You should not read any further if you want to be surprised.[spoiler]There is a happy end.[/spoiler]
+ +You should not read any further if you want to be surprised.
*click to open/close* + +(The text between thhe opening and the closing of the spoiler tag will be visible once the link is clicked. So *"There is a happy end."* wont be visible until the spoiler is uncovered.) + +

 

+ +**Table** +
[table border=1]
+ [tr] 
+   [th]Tables now[/th]
+ [/tr]
+ [tr]
+   [td]Have headers[/td]
+ [/tr]
+[/table]
+ +
Tables now
Have headers
+ +

 

+ +**List** + +
[list]
+ [*] First list element
+ [*] Second list element
+[/list]
+ + +[list] is equivalent to [ul] (unordered list). + +[ol] can be used instead of [list] to show an ordered list: + +
[ol]
+ [*] First list element
+ [*] Second list element
+[/ol]
+ + +For more options on ordered lists, you can define the style of numeration on [list] argument: +
[list=1]
: decimal + +
[list=i]
: lover case roman + +
[list=I]
: upper case roman + +
[list=a]
: lover case alphabetic + +
[list=A] 
: upper case alphabetic + + + + +Embed +------ + +You can embed video, audio and more in a message. + +
[video]url[/video]
+
[audio]url[/audio]
+ +Where *url* can be an url to youtube, vimeo, soundcloud, or other sites wich supports oembed or opengraph specifications. +*url* can be also full url to an ogg file. HTML5 tag will be used to show it. + +
[url]*url*[/url]
+ +If *url* supports oembed or opengraph specifications the embedded object will be shown (eg, documents from scribd). +Page title with a link to *url* will be shown. + +Map +--- + +
[map]address[/map]
+
[map=lat,long]
+ +You can embed maps from coordinates or addresses. +This require "openstreetmap" addon version 1.3 or newer. + + +Special +------- + +If you need to put literal bbcode in a message, [noparse], [nobb] or [pre] are used to escape bbcode: + +
[noparse][b]bold[/b][/noparse]
: [b]bold[/b] + + diff --git a/doc/Chats.md b/doc/Chats.md index fefc14f91..77b21833a 100644 --- a/doc/Chats.md +++ b/doc/Chats.md @@ -49,7 +49,7 @@ Just unpack the file and rename the directory to „jappixmini“. Next, upload this directory and the .tgz-file into your addon directory of your friendica installation. Now you can activate the plugin globally on the admin pages. -In the plugin sidebar, you will find an entry of jappix now (where you can also find twitter, statusnet and others). +In the plugin sidebar, you will find an entry of jappix now (where you can also find twitter, GNU Social and others). The following page shows the settings of this plugin. Activate the BOSH proxy. diff --git a/doc/Connectors.md b/doc/Connectors.md index 2b46b49c6..cd4b643f1 100644 --- a/doc/Connectors.md +++ b/doc/Connectors.md @@ -4,14 +4,13 @@ Connectors * [Home](help) Connectors allow you to connect with external social networks and services. -They are only required for posting to existing accounts on Facebook, Twitter, and StatusNet. +They are only required for posting to existing accounts on Twitter or GNU Social. There is also a connector for accessing your email INBOX. If the following network connectors are installed on your system, select the following links to visit the appropriate settings page and configure them for your account: -* [Facebook](/settings/addon) * [Twitter](/settings/addon) -* [StatusNet](/settings/addon) +* [GNU Social](/settings/addon) * [Email](/settings) Instructions For Connecting To People On Specific Services @@ -30,10 +29,10 @@ Diaspora Add the Diaspora 'handle' to the 'Connect/Follow' text box on your [Contacts](contacts) page. -Identi.ca/StatusNet/GNU-Social +GNU Social --- -These are described as the "federated social web" or OStatus contacts. +This is described as the "federated social web" or OStatus contacts. Please note that there are **no** privacy provisions on the OStatus network. Any message which is delivered to **any** OStatus member is visible to anybody in the world and will negate any privacy settings that you have in effect. @@ -43,7 +42,7 @@ Since OStatus communications do not use authentication, if you select the profil To connect with an OStatus member insert their profile URL or Identity address into the Connect box on your [Contacts](contacts) page. -The StatusNet connector may be used if you wish posts to appear on an OStatus site using an existing OStatus account. +The GNU Social connector may be used if you wish posts to appear on an OStatus site using an existing OStatus account. It is not necessary to do this, as you may 'follow' OStatus members from Friendica and they may follow you (by placing their own Identity Address into your 'Connect' page). Blogger, Wordpress, RSS feeds, arbitrary web pages @@ -69,23 +68,3 @@ Configure the email connector from your [Settings](settings) page. Once this has been done, you may enter an email address to connect with using the Connect box on your [Contacts](contacts) page. They must be the sender of a message which is currently in your INBOX for the connection to succeed. You may include email contacts in private conversations. - -Facebook ---- - -The Facebook connector is a plugin/addon which allows you to interact with friends on Facebook from within Friendica. -If enabled, your Facebook friend list will be imported, and you will see and be able to respond to Facebook posts. -Facebook members may also be added to private conversation groups. -You will not be able to connect with individual Facebook accounts - but will have your entire friend list imported and updated if new friends are added. - -Assuming the Facebook plugin/addon has been installed on your system, it can be enabled by going to your [Plugin Settings](settings/addon) page, and then selecting "Facebook Connector Settings" on that page. -This will only appear if the Facebook plugin/addon has been installed. -Follow the instruction to install or remove the Facebook connector. - -You may also choose whether your public postings are posted to Facebook by default. -You may toggle this setting at any time from the Permissions settings of the status post editor (click the lock icon). -This setting has no effect on private conversations - which will always be delivered to Facebook friends who are included in the permissions. - -(Note: At this time, Facebook contacts will not be able to view any private photos. -This will be resolved in a future release. -Facebook contacts may however see any public photos you have uploaded.) diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index 6ae5cb5cd..ff8c3c54c 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -69,7 +69,7 @@ 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. +Also, they were mostly made for other platforms using the GNU Social API. This means they lack the features that are really specific to Friendica. Popular clients you might want to have a look at are: diff --git a/doc/FAQ.md b/doc/FAQ.md index fd2012c7e..9197c068c 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -19,6 +19,8 @@ Admins * **[Can I configure multiple domains with the same code instance?](help/FAQ#multiple)** * **[Where can I find the source code of friendica, addons and themes?](help/FAQ#sources)** +* **[I've changed the my email address now the admin panel is gone?](help/FAQ#adminaccount1)** +* **[Can there be more then just one admin for a node?](help/FAQ#adminaccount2)** User -------- @@ -119,7 +121,7 @@ No. The act of 'following' a hashtags is an interesting technology, but presents 1. Posts would have to be copied to all sites on the network that are "listening" to that hashtag. This would increase the storage demands to the detriment of small sites. It would make the use of shared hosting practically impossible. -2. Making spam easy (tag spam is quite a serious issue on identi.ca for instance) +2. Making spam easy (tag spam is a serious issue on Twitter for instance) 3. It creates a natural bias towards large sites which hold more tagged content - if your network uses tagging instead of other conversation federation mechanisms such as groups/forums. @@ -151,7 +153,7 @@ RSS feed of the conversations at your site ###Are there any clients for friendica I can use? -Friendica is using a [Twitter/StatusNet compatible API](help/api), which means you can use any Twitter/StatusNet/GNU Social client for your plattform as long as you can change the API path in its settings. +Friendica is using a [Twitter/GNU Social compatible API](help/api), which means you can use any Twitter/GNU Social client for your plattform as long as you can change the API path in its settings. Here is a list of known working clients: * Android @@ -198,3 +200,14 @@ There you will always find the current stable version of friendica. Addons are listed at [this page](https://github.com/friendica/friendica-addons). If you are searching for new themes, you can find them at [Friendica-Themes.com](http://friendica-themes.com/) + + +###I've changed the my email address now the admin panel is gone? + +Have a look into your .htconfig.php and fix your email address there. + + +###Can there be more then just one admin for a node? + +Yes. You just have to list more then one email address in the +.htconfig.php file. The listed emails need to be separated by a comma. diff --git a/doc/Groups-and-Privacy.md b/doc/Groups-and-Privacy.md index 6e860b20d..ddde9eeb2 100644 --- a/doc/Groups-and-Privacy.md +++ b/doc/Groups-and-Privacy.md @@ -40,7 +40,7 @@ These private conversations work best when your friends are Friendica members. W This is a trust issue you need to be aware of. No software in the world can prevent your friends from leaking your confidential and trusted communications. Only a wise choice of friends. -But it isn't as clear cut when dealing with status.net, identi.ca and other network providers. You are encouraged to be **very** cautious when other network members are in a group because it's entirely possible for your private messages to end up in a public newsfeed. If you look at the Contact Edit page for any person, we will tell you whether or not they are members of an insecure network where you should exercise caution. +But it isn't as clear cut when dealing with GNU Social and other network providers. You are encouraged to be **very** cautious when other network members are in a group because it's entirely possible for your private messages to end up in a public newsfeed. If you look at the Contact Edit page for any person, we will tell you whether or not they are members of an insecure network where you should exercise caution. Once you have created a post, you can not change the permissions assigned. Within seconds it has been delivered to lots of people - and perhaps everybody it was addressed to. If you mistakenly created a message and wish you could take it back, the best you can do is to delete it. We will send out a delete notification to everybody who received the message - and this should wipe out the message with the same speed it was initially propagated. In most cases it will be completely wiped from the Internet - in under a minute. Again, this applies to Friendica networks. Once a message spreads to other networks, it may not be removed quickly and in some cases it may not be removed at all. @@ -62,8 +62,8 @@ Our developers are working on solutions to allow access to your friends - no mat Your profile and "wall" may also be visited by your friends from other networks, and you can block access to these by web visitors that Friendica doesn't know. Be aware that this could include some of your friends on other networks. -This may produce undesired results when posting a long status message to (for instance) Twitter and even Facebook. When Friendica sends a post to these networks which exceeds the service length limit, we truncate it and provide a link to the original. The original is a link back to your Friendica profile. As Friendica cannot prove who they are, it may not be possible for these people to view your post in full. +This may produce undesired results when posting a long status message to (for instance) Twitter or App.net. When Friendica sends a post to these networks which exceeds the service length limit, we truncate it and provide a link to the original. The original is a link back to your Friendica profile. As Friendica cannot prove who they are, it may not be possible for these people to view your post in full. For people in this situation we would recommend providing a "Twitter-length" summary, with more detail for friends that can see the post in full. -Blocking your profile or entire Friendica site from unknown web visitors also has serious implications for communicating with StatusNet/identi.ca members. These networks communicate with others via public protocols that are not authenticated. In order to view your posts, these networks have to access them as an "unknown web visitor". If we allowed this, it would mean anybody could in fact see your posts, and you've instructed Friendica not to allow this. So be aware that the act of blocking your profile to unknown visitors also has the effect of blocking outbound communication with public networks (such as identi.ca) and feed readers such as Google Reader. +Blocking your profile or entire Friendica site from unknown web visitors also has serious implications for communicating with GNU Social members. These networks communicate with others via public protocols that are not authenticated. In order to view your posts, these networks have to access them as an "unknown web visitor". If we allowed this, it would mean anybody could in fact see your posts, and you've instructed Friendica not to allow this. So be aware that the act of blocking your profile to unknown visitors also has the effect of blocking outbound communication with public networks (such as GNU Social) and feed readers such as Google Reader. diff --git a/doc/Home.md b/doc/Home.md index 068523628..ff991e3d2 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -10,6 +10,8 @@ Friendica Documentation and Resources * [BBCode tag reference](help/BBCode) * [Comment, sort and delete posts](help/Text_comment) * [Profiles](help/Profiles) + * [Accesskey reference](help/Accesskeys + * [Events](help/events) * You and other users * [Connectors](help/Connectors) * [Making Friends](help/Making-Friends) @@ -27,10 +29,10 @@ Friendica Documentation and Resources * [Install](help/Install) * [Settings](help/Settings) -* [Installing Connectors (Facebook/Twitter/StatusNet)](help/Installing-Connectors) +* [Installing Connectors (Twitter/GNU Social)](help/Installing-Connectors) * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) -* [Twitter/StatusNet API Functions](help/api) +* [Twitter/GNU Social API Functions](help/api) **Developer Manual** @@ -40,6 +42,7 @@ Friendica Documentation and Resources * [How to translate Friendica](help/translations) * [Bugs and Issues](help/Bugs-and-Issues) * [Plugin Development](help/Plugins) +* [Theme Development](help/themes) * [Smarty 3 Templates](help/smarty3-templates) **External Resources** diff --git a/doc/Improve-Performance.md b/doc/Improve-Performance.md index ced590122..1128e41b1 100644 --- a/doc/Improve-Performance.md +++ b/doc/Improve-Performance.md @@ -16,51 +16,19 @@ This value reduces the data that is send from the server to the client. 50 is a Set "OStatus conversation completion interval" to "never". -If you have many OStatus contacts then completing of conversations can be very time wasting. The downside: You won't see every comment in OStatus threads. - - Set "Path for lock file" to an empty folder outside your web root. - -Lock files help avoid the possibility of several background processes running at the same time. - -For example: It can happen that the poller.php takes longer than expected. -When there is no lock file, it is possible for several instances of poller.php to run at the same time - which would slow down the system and affect the maximum numbers of processes and database connections. - -Please define a full file path that is writeable by the web server process. -If your site is located at "/var/www/sitename/htdocs/" you could maybe create a folder "/var/www/sitename/temp/". +If you have many OStatus contacts then completing of conversations can take some time. Since you will miss several comments in OStatus threads, you maybe should consider the option "At post arrival" instead. Enable "Use MySQL full text engine" -When using MyISAM (default) this speeds up search. - - Set "Path to item cache" to an empty value outside your web root. - -Parsed BBCode and some external images will be put there. -Parsing BBCode is a time wasting process that also makes heave use of the CPU. -You can use the same folder you used for the lock file. - -**Warning!** - -The folder for item cache is cleaned up regularly. -Every file that exceeds the cache duration is deleted. **If you accidentally point the cache path to your web root then you will delete your web root!** -So double check that the folder only contains temporary content that can be deleted at any time. -You have been warned. +When using MyISAM (default) or InnoDB on MariaDB 10 this speeds up search. Plugins -------- Active the following plugins: - Alternate Pagination - Privacy Image Cache rendertime -###Alternate Pagination - -This plugin reduces the database load massively. -Downside: You can't see the total number of pages available at each module, and have this replaced with "older" and "newer" links. - -Go to the admin settings of "altpager" and set it to "global". - ###rendertime This plugin doesn't speed up your system. @@ -111,13 +79,6 @@ In a Debian-based distribution you will need to install the packages named "php5 Please refer to external documentation for a more detailed explanation how to set up a system based upon FCGI. -###APC - -APC is an opcode cache. -It speeds up the processing of PHP code. -When APC is enabled, Friendica uses it to store configuration data between different requests. -This helps speeding up the page creation time. - ###Database There are scripts like [tuning-primer.sh](http://www.day32.com/MySQL/) and [mysqltuner.pl](http://mysqltuner.pl) that analyze your database server and give hints on values that could be changed. diff --git a/doc/Install.md b/doc/Install.md index cf58af66f..bd15f10b5 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -65,6 +65,8 @@ If you copy the directory tree to your webserver, make sure that you also copy . Create an empty database and note the access details (hostname, username, password, database name). +Friendica needs the permission to create and delete fields and tables in its own database. + ###Run the installer Point your web browser to the new site and follow the instructions. diff --git a/doc/Installing-Connectors.md b/doc/Installing-Connectors.md index 49f21608f..4cacc1c45 100644 --- a/doc/Installing-Connectors.md +++ b/doc/Installing-Connectors.md @@ -1,13 +1,13 @@ -Installing Connectors (Facebook/Twitter/StatusNet) +Installing Connectors (Twitter/GNU Social) ================================================== * [Home](help) -Friendica uses plugins to provide connectivity to some networks, such as Facebook and Twitter. +Friendica uses plugins to provide connectivity to some networks, such as Twitter or App.net. -There is also a plugin to post through to an existing account on a StatusNet service. -You only need this to post to an already existing StatusNet account, but not to communicate with StatusNet members in general. +There is also a plugin to post through to an existing account on a GNU Social service. +You only need this to post to an already existing GNU Social account, but not to communicate with GNU Social members in general. All three plugins require an account on the target network. In addition you (or typically the server administrator) will need to obtain an API key to provide authenticated access to your Friendica server. @@ -51,7 +51,7 @@ After this, your users can configure their Twitter account settings from "Settin Find the author's documentation here: [http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin](http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin) -StatusNet Plugin for Friendica +GNU Social Plugin for Friendica --- * Author: Tobias Diekershoff @@ -60,77 +60,33 @@ StatusNet Plugin for Friendica ###Configuration -When the addon is activated the user has to aquire the following in order to connect to the StatusNet account of choice. +When the addon is activated the user has to aquire the following in order to connect to the GNU Social account of choice. -* The base URL for the StatusNet API, for identi.ca this is https://identi.ca/api/ +* The base URL for the GNU Social API, for quitter.se this is https://quitter.se/api/ * OAuth Consumer key & secret To get the OAuth Consumer key pair the user has to 1 ask her Friendica admin if a pair already exists or -2 has to register the Friendica server as a client application on the StatusNet server. +2 has to register the Friendica server as a client application on the GNU Social server. -This can be done from the account settings under "Settings -> Connections -> Register an OAuth client application -> Register a new application" on the StatusNet server. +This can be done from the account settings under "Settings -> Connections -> Register an OAuth client application -> Register a new application" on the GNU Social server. During the registration of the OAuth client remember the following: -* Application names must be unique on the StatusNet site, so we recommend a Name of 'friendica-nnnn', replace 'nnnn' with a random number or your website name. +* Application names must be unique on the GNU Social site, so we recommend a Name of 'friendica-nnnn', replace 'nnnn' with a random number or your website name. * there is no callback url * register a desktop client * with read & write access * the Source URL should be the URL of your Friendica server -After the required credentials for the application are stored in the configuration you have to actually connect your Friendica account with StatusNet. +After the required credentials for the application are stored in the configuration you have to actually connect your Friendica account with GNU Social. This is done from the Settings -> Connector Settings page. -Follow the Sign in with StatusNet button, allow access and then copy the security code into the box provided. +Follow the Sign in with GNU Social button, allow access and then copy the security code into the box provided. Friendica will then try to acquire the final OAuth credentials from the API. -If successful, the addon settings will allow you to select to post your public messages to your StatusNet account (have a look behind the little lock symbol beneath the status "editor" on your Home or Network pages). +If successful, the addon settings will allow you to select to post your public messages to your GNU Social account (have a look behind the little lock symbol beneath the status "editor" on your Home or Network pages). ###More documentation Find the author's documentation here: [http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin](http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/StatusNet_Plugin) - -The Friendica/Facebook connector ---- - -###Configuration - -First, register an API key for your site on [Facebook](developer.facebook.com). -This requires a Facebook account, and may require additional authentication in the form of credit card or mobile phone verification. - -We'd be very happy if you include "Friendica" in the application name to increase name recognition. -The Friendica icons are also present in the images directory and may be uploaded as a Facebook app icon. -Use images/friendica-16.jpg for the Icon and images/friendica-128.jpg for the logo. - -The url should be your site URL with a trailing slash. - -You **may** be required to provide a privacy and/or terms of service URL. - -Navigate to Set Web->Site URL & Domain -> Website Settings. -Set Site URL to yoursubdomain.yourdomain.com. -Set Site Domain to your yourdomain.com. - -Install the Facebook plugin on your Friendica site at 'admin/plugins'. -You should then see a link for Facebook under 'Plugin Features' on the sidebar of the admin panel. -Select it. - -Enter the App-ID and App Secret that Facebook gave you. -Change any other settings as desired. - -On Friendica, each member who wishes to use the Facebook connector should visit the Facebook Settings section of their "Settings->Connector Settings" page, and click 'Install Facebook Connector'. - -Choose the appropriate settings for your usage and privacy requirements. - -This will ask you to log into Facebook and grant permission to the plugin to do its stuff. -Allow it to do so. - -You're done. - -To turn it off visit the Connector Settings page again and 'Remove Facebook posting'. - -Videos and embeds will not be posted if there is no other content. -Links and images will be converted to a format suitable for the Facebook API and long posts truncated - with a link to view the full post. - -Facebook contacts will also not be able to view "private" photos, as they are not able to authenticate to your site. -We will address this in a future release. diff --git a/doc/Making-Friends.md b/doc/Making-Friends.md index 7355a10af..8f2985463 100644 --- a/doc/Making-Friends.md +++ b/doc/Making-Friends.md @@ -51,14 +51,11 @@ This will take you through a similar process. Connect to users of alternate networks --- -###StatusNet/GNUSocial, Google Plus, Twitter, Diaspora +###GNU Social, Twitter, Diaspora You can also use your Identity Address or other people's Identity Addresses to become friends across networks. The list of possible networks is growing all the time. -If you know (for instance) "bob" on identi.ca (a StatusNet site) you could put bob@identi.ca into your Contact page and become friends across networks. -(Or you can put in the URL to Bob's identi.ca page if you wish). - -You can also be "partial" friends with somebody on Google Plus by putting in their gmail address. -Google Plus does not yet support all the protocols we need for direct messaging, but you should be able to follow status updates from within Friendica. +If you know (for instance) "bob" on gnusocial.de (a GNU Social site) you could put bob@gnusocial.de into your Contact page and become friends across networks. +(Or you can put in the URL to Bob's gnusocial.de page if you wish). You can do the same for Twitter accounts and Diaspora accounts. @@ -70,10 +67,10 @@ If you have supplied your mailbox connection information on your Settings page, You can also reply to them from within Friendica. People can also become friends with you from other networks. -If a friend of yours has an identi.ca account, they can become friends with you by putting your Friendica Identity Address into their identi.ca subscription dialog box. +If a friend of yours has an GNU Social account, they can become friends with you by putting your Friendica Identity Address into their GNU Social subscription dialog box. A similar mechanism is available for Diaspora members, by putting your identity address into their search bar. -Note: Some versions of StatusNet software may require the full URL to your profile and may not work with the identity address. +Note: Some versions of GNU Social software may require the full URL to your profile and may not work with the identity address. Notification --- diff --git a/doc/Move-Account.md b/doc/Move-Account.md index 394d08fa3..19e6f1155 100644 --- a/doc/Move-Account.md +++ b/doc/Move-Account.md @@ -21,7 +21,7 @@ Friendica will recreate your account on the new server, with your contacts and g A message is sent to Friendica contacts, to inform them about your move: If your contacts are runnning on an updated server, your details on their side will be automatically updated. -StatusNet/GNUSocial/Diaspora contacts +GNU Social/Diaspora contacts --- -Contacts on Statusnet/Identi.ca or Diaspora will be archived, as we can't inform them about your move. +Contacts on GNU Social or Diaspora will be archived, as we can't inform them about your move. You should ask them to remove your contact from their lists and re-add you, and you should do the same with their contact. diff --git a/doc/Plugins.md b/doc/Plugins.md index cf236d422..dcd6e3b05 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -2,7 +2,6 @@ Friendica Addon/Plugin development ========================== Please see the sample addon 'randplace' for a working example of using some of these features. -The facebook addon provides an example of integrating both "addon" and "module" functionality. Addons work by intercepting event hooks - which must be registered. Modules work by intercepting specific page requests (by URL path). diff --git a/doc/Settings.md b/doc/Settings.md index fee8ec1c5..60fff847a 100644 --- a/doc/Settings.md +++ b/doc/Settings.md @@ -200,7 +200,7 @@ This configures the URL to update the global directory, and is supplied in the d The undocumented part is that if this is not set, the global directory is completely unavailable to the application. This allows a private community to be completely isolated from the global mistpark network. - $a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit'; + $a->config['system']['directory'] = 'http://dir.friendi.ca'; Developer Settings --- diff --git a/doc/Tags-and-Mentions.md b/doc/Tags-and-Mentions.md index 337525d88..5501d0d58 100644 --- a/doc/Tags-and-Mentions.md +++ b/doc/Tags-and-Mentions.md @@ -23,7 +23,7 @@ You can tag a person on a different network or one that is **not in your social Unless their system blocks unsolicited "mentions", the person tagged will likely receive a "Mention" post/activity or become a direct participant in the conversation in the case of public posts. Please note that Friendica blocks incoming "mentions" from people with no relationship to you. This is a spam prevention measure. -Remote mentions are delivered using the OStatus protocol. This protocol is used by Friendica and StatusNet and several other systems, but is not currently implemented in Diaspora. +Remote mentions are delivered using the OStatus protocol. This protocol is used by Friendica and GNU Social and several other systems, but is not currently implemented in Diaspora. Friendica makes no distinction between people and groups for the purpose of tagging. (Some other networks use !group to indicate a group.) diff --git a/doc/Vagrant.md b/doc/Vagrant.md index 979c5c49b..1d23ace13 100644 --- a/doc/Vagrant.md +++ b/doc/Vagrant.md @@ -17,7 +17,7 @@ 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. +5. Open 192.168.22.10 in a browser. 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. @@ -30,13 +30,7 @@ If you want to stop vagrant after finishing your work, run the following command in the development directory. -Import test data ----------------- - -If you want some test data in your vagrant Friendica instance import the database dump friendica_test_data.sql like so (inside the VM): - - $> mysql -u root -p friendica < /vagrant/friendica_test_data.sql - +The vagrant Friendica instance contains a test database. You will then have the following accounts to login: * admin, password admin diff --git a/doc/api.md b/doc/api.md index fa9df1245..147c8b751 100644 --- a/doc/api.md +++ b/doc/api.md @@ -1,40 +1,280 @@ Implemented API calls === -The friendica API aims to be compatible to the [StatusNet API](http://status.net/wiki/Twitter-compatible_API) which aims to be compatible to the [Twitter API 1.0](https://dev.twitter.com/docs/api/1). +The Friendica API aims to be compatible to the [GNU Social API](http://skilledtests.com/wiki/Twitter-compatible_API) and the [Twitter API](https://dev.twitter.com/rest/public). Please refer to the linked documentation for further information. -General ---- +## Implemented API calls -### Unsupported parameters -* cursor: Not implemented in StatusNet -* trim_user: Not implemented in StatusNet -* contributor_details: Not implemented in StatusNet -* place_id: Not implemented in StatusNet -* display_coordinates: Not implemented in StatusNet +### General +#### Unsupported parameters +* cursor: Not implemented in GNU Social +* trim_user: Not implemented in GNU Social +* contributor_details: Not implemented in GNU Social +* place_id: Not implemented in GNU Social +* display_coordinates: Not implemented in GNU Social * include_rts: To-Do -* include_my_retweet: Retweets in friendica are implemented in a different way +* include_my_retweet: Retweets in Friendica are implemented in a different way -### Different behaviour +#### Different behaviour * screen_name: The nick name in friendica is only unique in each network but not for all networks. The users are searched in the following priority: Friendica, StatusNet/GNU Social, Diaspora, pump.io, Twitter. If no contact was found by this way, then the first contact is taken. * include_entities: Default is "false". If set to "true" then the plain text is formatted so that links are having descriptions. -### Return values +#### Return values * cid: Contact id of the user (important for "contact_allow" and "contact_deny") * network: network of the user -account/verify_credentials ---- +### account/rate_limit_status -### Parameters +### account/verify_credentials +#### Parameters * skip_status: Don't show the "status" field. (Default: false) * include_entities: "true" shows entities for pictures and links (Default: false) -statuses/update, statuses/update_with_media ---- +### conversation/show +Unofficial Twitter command. It shows all direct answers (excluding the original post) to a given id. -### Parameters +#### Parameters +* id: id of the post +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* include_rts +* trim_user +* contributor_details + +### direct_messages +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* getText: Defines the format of the status field. Can be "html" or "plain" +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* skip_status + +### direct_messages/all +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* getText: Defines the format of the status field. Can be "html" or "plain" + +### direct_messages/conversation +Shows all direct messages of a conversation +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* getText: Defines the format of the status field. Can be "html" or "plain" +* uri: URI of the conversation + +### direct_messages/new +#### Parameters +* user_id: id of the user +* screen_name: screen name (for technical reasons, this value is not unique!) +* text: The message +* replyto: ID of the replied direct message +* title: Title of the direct message + +### direct_messages/sent +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* getText: Defines the format of the status field. Can be "html" or "plain" +* include_entities: "true" shows entities for pictures and links (Default: false) + +### favorites +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* user_id +* screen_name + +Favorites aren't displayed to other users, so "user_id" and "screen_name". So setting this value will result in an empty array. + +### favorites/create +#### Parameters +* id +* include_entities: "true" shows entities for pictures and links (Default: false) + +### favorites/destroy +#### Parameters +* id +* include_entities: "true" shows entities for pictures and links (Default: false) + +### followers/ids +#### Parameters +* stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) + +#### Unsupported parameters +* user_id +* screen_name +* cursor + +Friendica doesn't allow showing followers of other users. + +### friendica/photo +#### Parameters +* photo_id: Resource id of a photo. + +Returns data of a picture with the given resource. + +### friendica/photos/list + +Returns a list of all photo resources of the logged in user. + +### friends/ids +#### Parameters +* stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) + +#### Unsupported parameters +* user_id +* screen_name +* cursor + +Friendica doesn't allow showing friends of other users. + +### help/test + +### media/upload +#### Parameters +* media: image data + +### oauth/request_token +#### Parameters +* oauth_callback + +#### Unsupported parameters +* x_auth_access_type + +### oauth/access_token +#### Parameters +* oauth_verifier + +#### Unsupported parameters +* x_auth_password +* x_auth_username +* x_auth_mode + +### statuses/destroy +#### Parameters +* id: message number +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* trim_user + +### statuses/followers +* include_entities: "true" shows entities for pictures and links (Default: false) + +### statuses/friends +* include_entities: "true" shows entities for pictures and links (Default: false) + +### statuses/friends_timeline +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* exclude_replies: don't show replies (default: false) +* conversation_id: Shows all statuses of a given conversation. +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* include_rts +* trim_user +* contributor_details + +### statuses/home_timeline +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* exclude_replies: don't show replies (default: false) +* conversation_id: Shows all statuses of a given conversation. +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* include_rts +* trim_user +* contributor_details + +### statuses/mentions +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* include_rts +* trim_user +* contributor_details + +### statuses/public_timeline +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* exclude_replies: don't show replies (default: false) +* conversation_id: Shows all statuses of a given conversation. +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* trim_user + +### statuses/replies +#### Parameters +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* include_rts +* trim_user +* contributor_details + +### statuses/retweet +#### Parameters +* id: message number +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* trim_user + +### statuses/show +#### Parameters +* id: message number +* conversation: if set to "1" show all messages of the conversation with the given id +* include_entities: "true" shows entities for pictures and links (Default: false) + +#### Unsupported parameters +* include_my_retweet +* trim_user + +### statuses/update, statuses/update_with_media +#### Parameters * title: Title of the status * status: Status in text format * htmlstatus: Status in HTML format @@ -49,379 +289,157 @@ statuses/update, statuses/update_with_media * contact_deny * network * include_entities: "true" shows entities for pictures and links (Default: false) +* media_ids: (By now only a single value, no array) -### Unsupported parameters +#### Unsupported parameters * trim_user * place_id * display_coordinates -users/search ---- +### statuses/user_timeline +#### Parameters +* user_id: id of the user +* screen_name: screen name (for technical reasons, this value is not unique!) +* count: Items per page (default: 20) +* page: page number +* since_id: minimal id +* max_id: maximum id +* exclude_replies: don't show replies (default: false) +* conversation_id: Shows all statuses of a given conversation. +* include_entities: "true" shows entities for pictures and links (Default: false) -### Parameters +#### Unsupported parameters +* include_rts +* trim_user +* contributor_details + +### statusnet/config + +### statusnet/version + +#### Unsupported parameters +* user_id +* screen_name +* cursor + +Friendica doesn't allow showing followers of other users. + +### users/search +#### Parameters * q: name of the user -### Unsupported parameters +#### Unsupported parameters * page * count * include_entities -users/show ---- - -### Parameters +### users/show +#### Parameters * user_id: id of the user * screen_name: screen name (for technical reasons, this value is not unique!) * include_entities: "true" shows entities for pictures and links (Default: false) -statuses/home_timeline ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* exclude_replies: don't show replies (default: false) -* conversation_id: Shows all statuses of a given conversation. -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* include_rts -* trim_user -* contributor_details - -statuses/friends_timeline ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* exclude_replies: don't show replies (default: false) -* conversation_id: Shows all statuses of a given conversation. -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* include_rts -* trim_user -* contributor_details - -statuses/public_timeline ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* exclude_replies: don't show replies (default: false) -* conversation_id: Shows all statuses of a given conversation. -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* trim_user - -statuses/show ---- - -### Parameters -* id: message number -* conversation: if set to "1" show all messages of the conversation with the given id -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* include_my_retweet -* trim_user - -statuses/retweet ---- - -### Parameters -* id: message number -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* trim_user - -statuses/destroy ---- - -### Parameters -* id: message number -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* trim_user - -statuses/mentions ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* include_rts -* trim_user -* contributor_details - -statuses/replies ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* include_rts -* trim_user -* contributor_details - -statuses/user_timeline ---- - -### Parameters -* user_id: id of the user -* screen_name: screen name (for technical reasons, this value is not unique!) -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* exclude_replies: don't show replies (default: false) -* conversation_id: Shows all statuses of a given conversation. -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* include_rts -* trim_user -* contributor_details - -conversation/show ---- - -Unofficial Twitter command. It shows all direct answers (excluding the original post) to a given id. - -### Parameters -* id: id of the post -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* include_rts -* trim_user -* contributor_details - -favorites ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* user_id -* screen_name - -Favorites aren't displayed to other users, so "user_id" and "screen_name". So setting this value will result in an empty array. - -account/rate_limit_status ---- - -help/test ---- - -statuses/friends ---- -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters +#### Unsupported parameters * user_id * screen_name * cursor Friendica doesn't allow showing friends of other users. -statuses/followers ---- +## Not Implemented API calls +The following API calls are implemented in GNU Social but not in Friendica: (incomplete) -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* user_id -* screen_name -* cursor - -Friendica doesn't allow showing followers of other users. - -statusnet/config ---- - -statusnet/version ---- - -friends/ids ---- - -### Parameters -* stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) - -### Unsupported parameters -* user_id -* screen_name -* cursor - -Friendica doesn't allow showing friends of other users. - -followers/ids ---- - -Parameters ---- - -* stringify_ids: Should the id numbers be sent as text (true) or number (false)? (default: false) - -### Unsupported parameters -* user_id -* screen_name -* cursor - -Friendica doesn't allow showing followers of other users. - -direct_messages/new ---- - -### Parameters -* user_id: id of the user -* screen_name: screen name (for technical reasons, this value is not unique!) -* text: The message -* replyto: ID of the replied direct message -* title: Title of the direct message - -direct_messages/conversation ---- - -Shows all direct messages of a conversation -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* getText: Defines the format of the status field. Can be "html" or "plain" -* uri: URI of the conversation - -direct_messages/all ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* getText: Defines the format of the status field. Can be "html" or "plain" - -direct_messages/sent ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* getText: Defines the format of the status field. Can be "html" or "plain" -* include_entities: "true" shows entities for pictures and links (Default: false) - -direct_messages ---- - -### Parameters -* count: Items per page (default: 20) -* page: page number -* since_id: minimal id -* max_id: maximum id -* getText: Defines the format of the status field. Can be "html" or "plain" -* include_entities: "true" shows entities for pictures and links (Default: false) - -### Unsupported parameters -* skip_status - -oauth/request_token ---- - -### Parameters -* oauth_callback - -### Unsupported parameters -* x_auth_access_type - -oauth/access_token ---- - -### Parameters -* oauth_verifier - -### Unsupported parameters -* x_auth_password -* x_auth_username -* x_auth_mode - -Not Implemented API calls -=== - -The following list is extracted from the [API source file](https://github.com/friendica/friendica/blob/master/include/api.php) (at the very bottom): -* favorites/create -* favorites/destroy * statuses/retweets_of_me * friendships/create * friendships/destroy * friendships/exists * friendships/show -* account/update_location * account/update_profile_background_image * account/update_profile_image * blocks/create * blocks/destroy -The following are things from the Twitter API also not implemented in StatusNet: -* statuses/retweeted_to_me -* statuses/retweeted_by_me +The following API calls from the Twitter API aren't implemented neither in Friendica nor in GNU Social: + +* statuses/mentions_timeline +* statuses/retweets/:id +* statuses/oembed +* statuses/retweeters/ids +* statuses/lookup +* direct_messages/show +* search/tweets * direct_messages/destroy -* account/end_session +* friendships/no_retweets/ids +* friendships/incoming +* friendships/outgoing +* friendships/update +* friends/list +* friendships/lookup +* account/settings * account/update_delivery_device -* notifications/follow -* notifications/leave -* blocks/exists -* blocks/blocking -* lists - -Usage Examples -=== - -BASH / cURL ---- +* account/update_profile +* account/update_profile_background_image +* account/update_profile_image +* blocks/list +* blocks/ids +* users/lookup +* users/show +* users/search +* account/remove_profile_banner +* account/update_profile_banner +* users/profile_banner +* mutes/users/create +* mutes/users/destroy +* mutes/users/ids +* mutes/users/list +* users/suggestions/:slug +* users/suggestions +* users/suggestions/:slug/members +* favorites/list +* lists/list +* lists/statuses +* lists/members/destroy +* lists/memberships +* lists/subscribers +* lists/subscribers/create +* lists/subscribers/show +* lists/subscribers/destroy +* lists/members/create_all +* lists/members/show +* lists/members +* lists/members/create +* lists/destroy +* lists/update +* lists/create +* lists/show +* lists/subscriptions +* lists/members/destroy_all +* lists/ownerships +* saved_searches/list +* saved_searches/show/:id +* saved_searches/create +* saved_searches/destroy/:id +* geo/id/:place_id +* geo/reverse_geocode +* geo/search +* geo/place +* trends/place +* trends/available +* help/configuration +* help/languages +* help/privacy +* help/tos +* trends/closest +* users/report_spam +## Usage Examples +### BASH / cURL Betamax has documentated some example API usage from a [bash script](https://en.wikipedia.org/wiki/Bash_(Unix_shell) employing [curl](https://en.wikipedia.org/wiki/CURL) (see [his posting](https://betamax65.de/display/betamax65/43539)). /usr/bin/curl -u USER:PASS https://YOUR.FRIENDICA.TLD/api/statuses/update.xml -d source="some source id" -d status="the status you want to post" -Python ---- - -The [RSStoFriedika](https://github.com/pafcu/RSStoFriendika) code can be used as an example of how to use the API with python. -The lines for posting are located at [line 21](https://github.com/pafcu/RSStoFriendika/blob/master/RSStoFriendika.py#L21) and following. +### Python +The [RSStoFriedika](https://github.com/pafcu/RSStoFriendika) code can be used as an example of how to use the API with python. The lines for posting are located at [line 21](https://github.com/pafcu/RSStoFriendika/blob/master/RSStoFriendika.py#L21) and following. def tweet(server, message, group_allow=None): url = server + '/api/statuses/update' diff --git a/doc/de/BBCode.md b/doc/de/BBCode.md index dc8bf85d5..d3e205f0f 100644 --- a/doc/de/BBCode.md +++ b/doc/de/BBCode.md @@ -1,139 +1,155 @@ Referenz der Friendica BBCode Tags -======================== - -* [Zur Startseite der Hilfe](help) - -Inline Tags ------ - - +======================== + +* [Zur Startseite der Hilfe](help) + +Inline Tags +----- + +
[b]fett[/b]
: fett - +
[i]kursiv[/i]
: kursiv - +
[u]unterstrichen[/u]
: unterstrichen - +
[s]durchgestrichen[/s]
: durchgestrichen - +
[color=red]rot[/color]
: rot - +
[url=http://www.friendica.com]Friendica[/url]
: Friendica - +
[img]http://friendica.com/sites/default/files/friendika-32.png[/img]
: Immagine/foto - +
[size=xx-small]kleiner Text[/size]
: kleiner Text - +
[size=xx-large]groß Text[/size]
: großer Text - +
[size=20]exakte Textgröße[/size] (Textgröße kann jede Zahl sein, in Pixeln)
: exakte Größe - - - - - - - -Block Tags ------ - -
[code]Code[/code]
- -Code - -

 

- -
[quote]Zitat[/quote]
- -
Zitat
- -

 

- -
[quote=Autor]Der Autor? Ich? Nein, nein, nein...[/quote]
- -Autor hat geschrieben:
Der Autor? Ich? Nein, nein, nein...
- -

 

- -
[center]zentrierter Text[/center]
- -
zentrierter Text
- -

 

- -**Tabelle** -
[table border=1]
- [tr] 
-   [th]Tabellenzeile[/th]
- [/tr]
- [tr]
-   [td]haben Überschriften[/td]
- [/tr]
-[/table]
- -
Tabellenzeile
haben Überschriften
- -

 

- -**Listen** - -
[list]
- [*] Erstes Listenelement
- [*] Zweites Listenelement
-[/list]
- - -[list] ist Equivalent zu [ul] (unsortierte Liste). - -[ol] kann anstelle von [list] verwendet werden um eine sortierte Liste zu erzeugen: - -
[ol]
- [*] Erstes Listenelement
- [*] Zweites Listenelement
-[/ol]
- - -Für weitere Optionen von sortierten Listen kann man den Stil der Numerierung der Liste definieren: -
[list=1]
: dezimal - -
[list=i]
: römisch, Kleinbuchstaben - -
[list=I]
: römisch, Großbuchstaben - -
[list=a]
: alphabetisch, Kleinbuchstaben - -
[list=A] 
: alphabethisch, Großbuchstaben - - - - -Einbettung von Inhalten ------- - -Man kann viele Dinge, z.B. Video und Audio Dateine, in Nachrichten einbetten. - -
[video]url[/video]
-
[audio]url[/audio]
- -Wobei die *url* von youtube, vimeo, soundcloud oder einer anderen Seite stammen kann die die oembed oder opengraph Spezifikationen unterstützt. + + + + + + + +Block Tags +----- + +
[code]Code[/code]
+ +Code + +

 

+ +
[quote]Zitat[/quote]
+ +
Zitat
+ +

 

+ +
[quote=Autor]Der Autor? Ich? Nein, nein, nein...[/quote]
+ +Autor hat geschrieben:
Der Autor? Ich? Nein, nein, nein...
+ +

 

+ +
[center]zentrierter Text[/center]
+ +
zentrierter Text
+ +

 

+ +
Wer überrascht werden möchte sollte nicht weiter lesen.[spoiler]Es gibt ein Happy End.[/spoiler]
+ +Wer überrascht werden möchte sollte nicht weiter lesen.
*klicken zum öffnen/schließen* + +(Der Text zweischen dem öffnenden und dem schließenden Teil des spoiler Tags wird nicht angezeigt, bis der Link angeklickt wurde. In dem Fall wird *"Es gibt ein Happy End."* also erst angezeigt, wenn der Spoiler verraten wird.) + +

 

+ +**Tabelle** +
[table border=1]
+ [tr] 
+   [th]Tabellenzeile[/th]
+ [/tr]
+ [tr]
+   [td]haben Überschriften[/td]
+ [/tr]
+[/table]
+ +
Tabellenzeile
haben Überschriften
+ +

 

+ +**Listen** + +
[list]
+ [*] Erstes Listenelement
+ [*] Zweites Listenelement
+[/list]
+ + +[list] ist Equivalent zu [ul] (unsortierte Liste). + +[ol] kann anstelle von [list] verwendet werden um eine sortierte Liste zu erzeugen: + +
[ol]
+ [*] Erstes Listenelement
+ [*] Zweites Listenelement
+[/ol]
+ + +Für weitere Optionen von sortierten Listen kann man den Stil der Numerierung der Liste definieren: +
[list=1]
: dezimal + +
[list=i]
: römisch, Kleinbuchstaben + +
[list=I]
: römisch, Großbuchstaben + +
[list=a]
: alphabetisch, Kleinbuchstaben + +
[list=A] 
: alphabethisch, Großbuchstaben + + + + +Einbettung von Inhalten +------ + +Man kann viele Dinge, z.B. Video und Audio Dateine, in Nachrichten einbetten. + +
[video]url[/video]
+
[audio]url[/audio]
+ +Wobei die *url* von youtube, vimeo, soundcloud oder einer anderen Seite stammen kann die die oembed oder opengraph Spezifikationen unterstützt. Außerdem kann *url* die genaue url zu einer ogg Datei sein, die dann per HTML5 eingebunden wird. - -
[url]*url*[/url]
- + +
[url]*url*[/url]
+ Wenn *url* entweder oembed oder opengraph unterstützt wird das eingebettete Objekt (z.B. ein Dokument von scribd) eingebunden. Der Titel der Seite mit einem Link zur *url* wird ebenfalls angezeigt. - - - -Spezielle Tags -------- - + +Um eine Karte in einen Beitrag einzubinden, muss das *openstreetmap* Addon aktiviert werden. Ist dies der Fall, kann mit + +
[map]Broadway 26, New York[/map]
+ +eine Karte von [OpenStreetmap](http://openstreetmap.org) eingebettet werden. Zur Identifikation des Ortes können entweder seine Koordinaten in der Form + +
[map=lat,long]
+ +oder eine Adresse in obiger Form verwendet werden. + +Spezielle Tags +------- + Wenn Du über BBCode Tags in einer Nachricht schreiben möchtest, kannst Du [noparse], [nobb] oder [pre] verwenden um den BBCode Tags vor der Evaluierung zu schützen: - -
[noparse][b]fett[/b][/noparse]
: [b]fett[/b] - - + +
[noparse][b]fett[/b][/noparse]
: [b]fett[/b] + + diff --git a/doc/de/Chats.md b/doc/de/Chats.md index fb5beac32..a2d06f3c4 100644 --- a/doc/de/Chats.md +++ b/doc/de/Chats.md @@ -54,7 +54,7 @@ oder als normaler Download von hier: https://github.com/friendica/friendica-addo Entpacke diese Datei (ggf. den entpackten Ordner in „jappixmini“ umbenennen) und lade sowohl den entpackten Ordner komplett als auch die .tgz Datei in den Addon Ordner Deiner Friendica Installation hoch. Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. -Aktiviere das Jappixmini Addon und gehe anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, StatusNet-, usw. Einstellungen gemacht werden) zu den Jappix Grundeinstellungen. +Aktiviere das Jappixmini Addon und gehe anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, GNU Social-, usw. Einstellungen gemacht werden) zu den Jappix Grundeinstellungen. Setze hier den Haken zur Aktivierung des BOSH Proxys. Weiter gehts in den Einstellungen Deines Friendica Accounts. diff --git a/doc/de/Connectors.md b/doc/de/Connectors.md index 923eb3d87..7247124ef 100644 --- a/doc/de/Connectors.md +++ b/doc/de/Connectors.md @@ -4,15 +4,14 @@ Konnektoren (Connectors) * [Zur Startseite der Hilfe](help) Konnektoren erlauben es Dir, Dich mit anderen sozialen Netzwerken zu verbinden. -Konnektoren werden nur bei bestehenden Facebook-, Twitter und StatusNet-Accounts benötigt. +Konnektoren werden nur bei bestehenden Twitter und GNU Social-Accounts benötigt. Außerdem gibt es einen Konnektor, um Deinen Email-Posteingang zu nutzen. Wenn Du keinen eigenen Knoten betreibst und wissen willst, ob der server Deiner Wahl diese Konnektoren installiert hat, kannst Du Dich darüber auf der Seite '<domain_des_friendica-servers>/friendica' informieren. Sind die Netzwerk-Konnektoren auf Deinem System installiert sind, kannst Du mit den folgenden Links die Einstellungsseiten besuchen und für Deinen Account konfigurieren: -* [Facebook](/settings/connectors) * [Twitter](/settings/connectors) -* [StatusNet / GNU Social](/settings/connectors) +* [GNU Social](/settings/connectors) * [Email](/settings/connectors) Anleitung, um sich mit Personen in bestimmten Netzwerken zu verbinden @@ -29,9 +28,9 @@ Ebenso kannst Du deren Identitäts-Adresse in der "Verbinden"-Box auf Deiner ["K Füge die Diaspora-Identitäts-Adresse (z.B. name@diasporapod.com)auf Deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. -**Identi.ca/StatusNet/GNU-Social** +**GNU Social** -Diese Netzwerke werden als "federated social web" bzw. "OStatus"-Kontakte bezeichnet. +Dieses Netzwerk wird als "federated social web" bzw. "OStatus"-Kontakte bezeichnet. Bitte beachte, dass es **keine** Einstellungen zur Privatssphäre im OStatus-Netzwerk gibt. **Jede** Nachricht, die an eines dieser OStatus-Mitglieder verschickt wird, ist für jeden auf der Welt sichtbar; alle Privatssphäreneinstellungen verlieren ihre Wirkung. @@ -41,7 +40,7 @@ Da die OStatus-Kommunikation keine Authentifizierung benutzt, können OStatus-Nu Um Dich mit einem OStatus-Mitglied zu verbinden, trage deren Profil-URL oder Identitäts-Adresse auf Deiner ["Kontakte"-Seite](contacts) in das Feld "Neuen Kontakt hinzufügen" ein. -Der StatusNet-Konnektor kann genutzt werden, wenn Du Beiträge schreiben willst, die auf einer OStatus-Seite über einen existierenden OStatus-Account erscheinen sollen. +Der GNU Social-Konnektor kann genutzt werden, wenn Du Beiträge schreiben willst, die auf einer OStatus-Seite über einen existierenden OStatus-Account erscheinen sollen. Das ist nicht notwendig, wenn Du OStatus-Mitgliedern von Friendica aus folgst und diese Dir auch folgen, indem sie auf Deiner Kontaktseite ihre eigene Identitäts-Adresse eingeben. @@ -68,23 +67,3 @@ Konfiguriere den Email-Konnektor auf Deiner [Einstellungsseite](settings). Wenn Du das gemacht hast, kannst Du auf Deiner ["Kontakte"-Seite](contacts) die Email-Adresse in das Feld "Neuen Kontakt hinzufügen" eintragen. Diese Email-Adresse muss jedoch bereits mit einer Nachricht in Deinem Email-Posteingang auf dem Server liegen. Du hast die Möglichkeit, Email-Kontakte in Deine privaten Unterhaltungen einzubeziehen. - -**Facebook** - -Der Facebook-Konnektor ist ein Plugin/Addon, dass es Dir erlaubt, von Friendica aus mit Freunden auf Facebook zu interagieren. -Wenn er aktiviert ist, wird Deine Facebook-Freundesliste importiert und Du wirst Facebook-Beiträge sehen und kommentieren können. -Facebook-Freunde können außerdem zu privaten Gesprächen hinzugefügt werden. -Du hast nicht die Möglichkeit, einzelne Facebook-Accounts hinzuzufügen, sondern nur Deine gesamte Freundesliste, die aktualisiert wird, wenn neue Freunde hinzugefügt werden. - -Wenn das Facebook-Plugin/Addon installiert ist, kannst Du diesen auf Deiner Einstellungsseite unter ["Facebook Connector Settings"](/settings/connectors) einstellen. -Dieser Eintrag erscheint nur, wenn das Plugin/Addon installiert ist. -Folge den Vorgaben, um den Facebook-Konnektor zu installieren oder löschen. - -Du kannst ebenfalls auswählen, ob Deine öffentlichen Posts auch standardmäßig bei Facebook veröffentlicht werden sollen. -Du kannst diese Einstellung jederzeit im aktuellen Beitrag beeinflussen, indem Du auf das "Schloss"-Icon unter dem Beitragseditor gehst. -Diese Einstellung hat keine Auswirkung auf private Unterhaltungen. -Diese werden immer an Facebook-Freunde mit den entsprechenden Genehmigungen geschickt. - -(Beachte: Aktuell können Facebook-Kontakte keine privaten Fotos sehen. -Das wird zukünftig gelöst. -Facebook-Kontakte können aber trotzdem öffentliche Fotos sehen, die Du hochgeladen hast.) diff --git a/doc/de/FAQ.md b/doc/de/FAQ.md index 5670d8f35..d5aa19e6c 100644 --- a/doc/de/FAQ.md +++ b/doc/de/FAQ.md @@ -131,7 +131,7 @@ Die Möglichkeit, einem hashtag zu folgen, ist eine interessante Technik, führt 1.) Alle Beiträge, die diesen tag nutzen, müssten zu allen Seiten im Netzwerk kopiert werden. Das erhöht den Speicherbedarf und beeinträchtigt kleine Seiten. Die Nutzung von geteilten Hosting-Angeboten (Shared Hosting) wäre praktisch unmöglich. -2.) Die Verbreitung von Spam wäre vereinfacht (tag-Spam ist z.B. bei identi.ca ein schwerwiegendes Problem) +2.) Die Verbreitung von Spam wäre vereinfacht (tag-Spam ist z.B. bei Twitter ein schwerwiegendes Problem) 3.) Der wichtigste Grund der gegen diese Technik spricht ist, dass sie eine natürliche Ausrichtung auf größere Seiten mit mehr getaggten Inhalten zur Folge hat. Dies kann z.B. aufkommen, wenn Dein Netzwerk tags anstelle von anderen Kommunikationsmitteln wie Gruppen oder Foren nutzt. diff --git a/doc/de/Groups-and-Privacy.md b/doc/de/Groups-and-Privacy.md index abb650036..4ce4d28e1 100644 --- a/doc/de/Groups-and-Privacy.md +++ b/doc/de/Groups-and-Privacy.md @@ -59,7 +59,7 @@ Dies ist eine Vertrauensfrage, die du beachten musst. Keine Software der Welt kann deine Freunde davon abhalten, die privaten Unterhaltungen zu veröffentlichen. Nur eine gute Auswahl deiner Freunde. -Bei status.net, identi.ca und anderen Netzwerk-Anbietern ist es nicht so gesichert. +Bei GNu Social und anderen Netzwerk-Anbietern ist es nicht so gesichert. Du musst **sehr** vorsichtig sein, wenn du Mitglieder anderer Netzwerke in einer deiner Gruppen hast, da es möglich ist, dass deine privaten Nachrichten in einem öffentlichen Stream enden. Wenn du auf die "Kontakt bearbeiten"-Seite einer Person gehst, zeigen wir dir, ob sie Mitglied eines unsicheren Netzwerks ist oder nicht. @@ -104,9 +104,9 @@ Da Friendica nicht bestätigen kann, um wen es sich handelt, kann es passieren, Für Leute, die davon betroffen sind, schlagen wir vor, eine Zusammenfassung in Twitter-Länge zu erstellen mit mehr Details für Freunde, die den ganzen Beitrag sehen können. -Dein Profil oder deine gesamte Friendica-Seite zu blockieren, hat außerdem ernsthafte Einflüsse auf deine Kommunikation mit StatusNet/identi.ca-Nutzern. +Dein Profil oder deine gesamte Friendica-Seite zu blockieren, hat außerdem ernsthafte Einflüsse auf deine Kommunikation mit GNU Social-Nutzern. Diese Netzwerke kommunizieren mit anderen über öffentliche Protokolle, die nicht authentifiziert werden. Um deine Beiträge zu sehen, müssen diese Netzwerke deine Beiträge als "unbekannte Webbesucher" ansehen. Wenn wir das erlauben, würde es dazu führen, das absolut jeder deine Beiträge sehen. Und du hast Friendica so eingestellt, das nicht zuzulassen. -Beachte also, dass das Blockieren von unbekannten Besuchern auch dazu führen kann, dass öffentliche Netzwerke (wie identi.ca) und Newsfeed-Reader wie Google Reader auch geblockt werden. +Beachte also, dass das Blockieren von unbekannten Besuchern auch dazu führen kann, dass öffentliche Netzwerke (wie GNU Social) und Newsfeed-Reader auch geblockt werden. diff --git a/doc/de/Home.md b/doc/de/Home.md index 0fd5634cc..561809d6c 100644 --- a/doc/de/Home.md +++ b/doc/de/Home.md @@ -10,6 +10,8 @@ Friendica - Dokumentation und Ressourcen * [Referenz der BBCode Elemente](help/BBCode) * [Beiträge kommentieren, einordnen und löschen](help/Text_comment) * [Profile](help/Profiles) + * [Referenz der Accesskeys](help/Accesskeys) + * [Veranstaltungen](help/events) (EN) * Du und andere Nutzer * [Konnektoren (Connectors)](help/Connectors) * [Freunde finden](help/Making-Friends) @@ -29,13 +31,23 @@ Friendica - Dokumentation und Ressourcen * [Installation](help/Install) * [Konfigurationen](help/Settings) * [Plugins](help/Plugins) -* [Konnektoren (Connectors) installieren (Facebook/Twitter/StatusNet)](help/Installing-Connectors) +* [Konnektoren (Connectors) installieren (Twitter/GNU Social)](help/Installing-Connectors) * [Nachrichtenfluss](help/Message-Flow) * [Betreibe deine Seite mit einem SSL-Zertifikat](help/SSL) * [Entwickler](help/Developers) -* [Twitter/StatusNet API Functions](help/api) (EN) +* [Twitter/GNU Social API Functions](help/api) (EN) * [Translation of Friendica](help/translations) (EN) +**Entwickler Dokumentation** + +* [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) +* [Plugin Development](help/Plugins) +* [Theme Development](help/themes) +* [Smarty 3 Templates](help/smarty3-templates) **Externe Ressourcen** diff --git a/doc/de/Improve-Performance.md b/doc/de/Improve-Performance.md index cc19dbf13..674927396 100644 --- a/doc/de/Improve-Performance.md +++ b/doc/de/Improve-Performance.md @@ -22,56 +22,19 @@ Dieser Wert reduziert die Daten, die vom Server an den Client geschickt werden. setze "Intervall zum Vervollständigen von OStatus Unterhaltungen" auf "niemals" Wenn du viele OStatus-Kontakte hast, dann kann die Vervollständigung von Unterhaltungen sehr zeitraubend sein. -Der Nachteil: Du siehst nicht jede Antwort einer OStatus-Unterhaltung. - - setze "Pfad für die Sperrdatei" auf einen Ordner außerhalb deines Stammverzeichnisses deines Servers. - -Sperrdateien sorgen dafür, dass Hintergrundprozesse nicht parallel ablaufen. - -Als Beispiel: Es kann passieren, dass die poller.php länger als erwartet läuft. -Ohne Sperrdatei kann es passieren, dass mehrere Instanzen der poller.php zur gleichen Zeit laufen. -Dies würde das System verlangsamen und Einfluss auf die maximale Anzahl an Prozessen und Datenbankverbindungen nehmen. - -Bitte definiere einen kompletten Pfad, auf den der Server einen Schreibzugriff hat. Wenn deine Seite unter "/var/www/namederseite/htdocs/" liegt, dann kannst du z.B. einen Ordner unter "/var/www/sitename/temp/" erstellen. +Der Nachteil: Du siehst nicht jede Antwort einer OStatus-Unterhaltung. Aus diesem Grund ist die Option "Beim Empfang von Nachrichten" in der Regel ein guter Kompromiss. setze "Nutze MySQL full text engine". -Wenn du MyISAM (Standardeinstellung) nutzt, dann beschleunigt dies die Suche. - - setze "Pfad zum Eintrag Cache" auf einen leeren Ordner außerhalb deines Stammverzeichnisses. - -Verarbeiteter BBCode und einige externe Bilder werden hier gespeichert. -BBCode verarbeiten ist ein zeitintensiver Prozess, der zudem eine hohe CPU-Leistung erfordert. - -Du kannst den gleichen Ordner nutzen, den du für die Sperrdatei genutzt hast. - -**Warnung!** - -Der Ordner für den Eintrag-Cache wird regelmäßig geleert. -Jede Datei, die die Cache-Dauer überschreitet, wird gelöscht. **Wenn du versehentlich den Cache-Pfad auf dein Stammverzeichnis legst, dann würde dir dies das gesamte Stammverzeichnis löschen.** - -Prüfe also doppelt, dass der gewählte Ordner nur temporäre Dateien enthält, die jederzeit gelöscht werden können. +Wenn du MyISAM (Standardeinstellung) oder InnoDB mit MariaDB 10 nutzt, dann beschleunigt dies die Suche. Plugins -------- Aktiviere die folgenden Plugins: - Alternate Pagination - Privacy Image Cache rendertime -###Alternate Pagination - -**Beschreibung** - -Dieses Plugin reduziert die Ladezeit der Datenbank massiv. -Nachteil: Du kannst nicht mehr die Anzahl aller Seiten sehen. - -**Einrichtung** - -Gehe auf admin/plugins/altpager und wähle "global". - ###rendertime **Beschreibung** @@ -130,14 +93,6 @@ Wenn du Apache nutzt, dann denk darüber nach, FCGI zu nutzen. Wenn du eine Debian-basierte Distribution nutzt, dann wirst du die Pakete "php5-cgi" und "libapache2-mod-fcgid" benötigen. Nutze externe Dokumente, um eine detailiertere Erklärung für die Einrichtung eines Systems auf FCGI-Basis zu erhalten. -**APC** - -APC ist ein Zwischenspeicher für die Verarbeitung des Befehlscodes. -Es beschleunigt die Verarbeitung des PHP-Codes. - -Wenn APC aktiviert ist, dann nutzt Friendica dies, um Konfigurationseinstellungen für verschiedene Anfragen zwischenzuspeichern. -Dies beschleunigt die Reaktionszeit der Seite. - ###Database Es gibt Skripte wie [tuning-primer.sh](http://www.day32.com/MySQL/) und [mysqltuner.pl](http://mysqltuner.pl), die den Datenbankserver analysieren und Hinweise darauf geben, welche Werte verändert werden könnten. diff --git a/doc/de/Install.md b/doc/de/Install.md index 36692bd2c..df95735f3 100644 --- a/doc/de/Install.md +++ b/doc/de/Install.md @@ -70,6 +70,8 @@ Wir planen, diese Einschränkung in einer zukünftigen Version zu beheben. 3. Erstelle eine leere Datenbank und notiere alle Zugangsdaten (Adresse der Datenbank, Nutzername, Passwort, Datenbankname). +Friendica benötigt die Berechtigungen um neue Felder in dieser Datenbank zu ertellen (create) und zu löschen (delete). + 4. Besuche deine Webseite mit deinem Browser und befolge die Anleitung. Bitte beachte jeden Fehler und korrigiere diese, bevor du fortfährst. 5. *Wenn* die automatisierte Installation aus irgendeinem Grund fehlschlägt, dann prüfe das Folgende: diff --git a/doc/de/Installing-Connectors.md b/doc/de/Installing-Connectors.md index f457ee51c..76daa685f 100644 --- a/doc/de/Installing-Connectors.md +++ b/doc/de/Installing-Connectors.md @@ -1,12 +1,12 @@ -Konnektoren installieren (Facebook/Twitter/StatusNet) +Konnektoren installieren (Twitter/GNU Social) ================================================== * [Zur Startseite der Hilfe](help) -Friendica nutzt Plugins, um die Verbindung zu anderen Netzwerken wie Facebook und Twitter zu gewährleisten. +Friendica nutzt Plugins, um die Verbindung zu anderen Netzwerken wie Twitter oder App.net zu gewährleisten. -Es gibt außerdem ein Plugin, um über einen bestehenden Status.Net-Account diesen Service zu nutzen. -Du brauchst dieses Plugin aber nicht, um mit Status.Net-Mitgliedern von Friendica aus zu kommunizieren - es sei denn, du wünschst es, über einen existierenden Account einen Beitrag zu schreiben. +Es gibt außerdem ein Plugin, um über einen bestehenden GNU Social-Account diesen Service zu nutzen. +Du brauchst dieses Plugin aber nicht, um mit GNU Social-Mitgliedern von Friendica aus zu kommunizieren - es sei denn, du wünschst es, über einen existierenden Account einen Beitrag zu schreiben. Alle drei Plugins benötigen einen Account im gewünschten Netzwerk. Zusätzlich musst du (bzw. der Administrator der Seite) einen API-Schlüssel holen, um einen authentifizierten Zugriff zu deinem Friendica-Server herstellen zu lassen. @@ -47,7 +47,7 @@ $a->config['twitter']['consumersecret'] = 'your consumer_secret here'; Anschließend kann der Nutzer deiner Seite die Twitter-Einstellungen selbst eintragen: "Einstellungen -> Connector Einstellungen". -**StatusNet Plugin für Friendica** +**GNU Social Plugin für Friendica** * Author: Tobias Diekershoff * tobias.diekershoff@gmx.net @@ -56,64 +56,29 @@ Anschließend kann der Nutzer deiner Seite die Twitter-Einstellungen selbst eint Konfiguration -Wenn das Addon aktiv ist, muss der Nutzer die folgenden Einstellungen vornehmen, um sich mit dem StatusNet-Account seiner Wahl zu verbinden. +Wenn das Addon aktiv ist, muss der Nutzer die folgenden Einstellungen vornehmen, um sich mit dem GNU Social-Account seiner Wahl zu verbinden. -* Die Basis-URL des StatusNet-API; für identi.ca ist es https://identi.ca/api/ +* Die Basis-URL des GNU Social-API; für quitter.se ist es https://quitter.se/api/ * OAuth Consumer key & Geheimnis Um das OAuth-Schlüsselpaar zu erhalten, muss der Nutzer (a) seinen Friendica-Admin fragen, ob bereits ein Schlüsselpaar existiert oder -(b) einen Friendica-Server als Anwendung auf dem StatusNet-Server anmelden. +(b) einen Friendica-Server als Anwendung auf dem GNU Social-Server anmelden. -Dies kann über Einstellungen --> Connections --> "Register an OAuth client application" -> "Register a new application" auf dem StatusNet-Server durchgeführt werden. +Dies kann über Einstellungen --> Connections --> "Register an OAuth client application" -> "Register a new application" auf dem GNU Social-Server durchgeführt werden. Während der Registrierung des OAuth-Clients ist Folgendes zu beachten: -* Der Anwendungsname muss auf der StatusNet-Seite einzigartig sein, daher empfehlen wir einen Namen wie "friendica-nnnn", ersetze dabei "nnnn" mit einer frei gewählten Nummer oder deinem Webseitennamen. +* Der Anwendungsname muss auf der GNU Social-Seite einzigartig sein, daher empfehlen wir einen Namen wie "friendica-nnnn", ersetze dabei "nnnn" mit einer frei gewählten Nummer oder deinem Webseitennamen. * es gibt keine Callback-URL * Registriere einen Desktop-Client * stelle Lese- und Schreibrechte ein * die Quell-URL sollte die URL deines Friendica-Servers sein -Sobald die benötigten Daten gespeichert sind, musst du deinen Friendica-Account mit StatusNet verbinden. +Sobald die benötigten Daten gespeichert sind, musst du deinen Friendica-Account mit GNU Social verbinden. Das kannst du über Einstellungen --> Connector-Einstellungen durchführen. -Folge dem "Einloggen mit StatusNet"-Button, erlaube den Zugriff und kopiere den Sicherheitscode in die entsprechende Box. +Folge dem "Einloggen mit GNU Social"-Button, erlaube den Zugriff und kopiere den Sicherheitscode in die entsprechende Box. Friendica wird dann versuchen, die abschließende OAuth-Einstellungen über die API zu beziehen. -Wenn es geklappt hat, kannst du in den Einstellungen festlegen, ob deine öffentlichen Nachrichten automatisch in deinem StatusNet-Account erscheinen soll (achte hierbei auf das kleine Schloss-Symbol im Status-Editor) - - -**Installiere den Friendica/Facebook-Konnektor** - -* Registriere einen API-Schlüssel für deine Seite auf [developer.facebook.com](Facebook). - -Hierfür benötigst du einen Facebook-Account und ggf. weitere Authentifizierungen über eine Kreditkarten- oder Mobilfunknummer. - -a. Wir würden uns sehr darüber freuen, wenn du "Friendica" in dem Anwendungsnamen eintragen würdest, um die Bekanntheit des Namens zu erhöhen. Das Friendica-Icon ist im Bildverzeichnis enthalten und kann als Anwendungs-Icon für die Facebook-App genutzt werden. Nutze [images/friendica-16.jpg](images/friendica-16.jpg) für das Icon und [images/friendica-128.jpg](images/friendica-128.jpg) für das Logo. - -b. Die URL sollte deine Seite mit dem abschließenden Schrägstrich sein - -Es **kann** notwendig sein, dass du eine "Privacy"- oder "Terms of service"-URL angeben musst. - -c. Setze nun noch unter "App Domains" die URL auf deineSubdomain.deineDomain.de und bei "Website with Facebook Login" die URL zu deineDomain.de. - -d. Installiere nun das Facebook-Plugin auf deiner Friendica-Seite über "admin/plugins". Du solltest links in der Sidebar einen Facebook-Link unter "Plugin Features" finden. Klicke diesen an. - -e. Gib nun die App-ID und das App-Secret ein, die Facebook dir gegeben hat. Ändere die anderen Daten, wie es gewünscht ist. - -Auf Friendica kann nun jeder Nutzer, der eine Verbindung zu Facebook wünscht, die Seite "Einstellungen -> Connector-Einstellungen" aufrufen und dort "Installiere Facebook-Connector" auswählen. - -Wähle die gewünschten Einstellungen für deine Nutzungs- und Privatsphäreansprüche. - -Hier meldest du dich bei Facebook an und gibst dem Plugin die nötigen Zugriffsrechte, um richtig zu funktionieren. -Erlaube dieses. - -Und fertig. Um es abzustellen, gehe wieder auf die Einstellungsseite und auf "Remove Facebook posting". - -Videos und eingebetteter Code werden nicht gepostet, wenn sonst kein anderer Inhalt enthalten ist. -Links und Bilder werden in ein Format übertragen, das von der Facebook-API verstanden wird. -Lange Texte werden verkürzt und mit einem Link zum Originalbeitrag versehen. - -Facebook-Kontakte können außerdem keine privaten Fotos sehen, da diese nicht richtig authentifiziert werden können, wenn sie deine Seite besuchen. -Dieser Fehler wird zukünftig bearbeitet. +Wenn es geklappt hat, kannst du in den Einstellungen festlegen, ob deine öffentlichen Nachrichten automatisch in deinem GNU Social-Account erscheinen soll (achte hierbei auf das kleine Schloss-Symbol im Status-Editor) diff --git a/doc/de/Making-Friends.md b/doc/de/Making-Friends.md index 0d7739068..b9ff78761 100644 --- a/doc/de/Making-Friends.md +++ b/doc/de/Making-Friends.md @@ -41,10 +41,7 @@ Dies wird dich durch einen ähnlichen Prozess leiten. Du kannst deine oder andere Identitäts-Adressen ebenfalls nutzen, um über verschiedene Netzwerke hinweg Freundschaften aufzubauen. Die Liste möglicher Netzwerke steigt immer weiter. -Wenn du z.B. "bob" auf identi.ca (eine Status.Net-Seite) kennst, dann kannst du bob@identi.ca auf deiner "Kontakt"-Seite verbinden. (Oder du kannst die URL von Bobs identi.ca-Seite eintragen, wenn du es wünscht). -Du kannst auch "teilweise" mit Leuten auf Google Buzz befreundet sein, wenn du deren GMail-Adresse einträgst. -Google Buzz unterstützt bisher noch nicht alle Protokolle, die wir für die direkte Kommunikation benötigen, aber es sollte möglich sein, Statusupdates von Friendica zu folgen. -Das Gleiche gilt für Twitter- und Diaspora-Accounts. +Wenn du z.B. "bob" auf quitter.se (eine GNU Social-Seite) kennst, dann kannst du bob@quitter.se auf deiner "Kontakt"-Seite verbinden. (Oder du kannst die URL von Bobs quitter.se-Seite eintragen, wenn du es wünscht). Tatsächlich kannst du jedem und jeder Website folgen, der/die einen Syndication-Feed (RSS/Atom etc.) zur Verfügung stellt. Wenn wir einen Informationsstrom und einen Namen dazu finden, können wir auch versuchen, uns damit zu verbinden. @@ -52,10 +49,10 @@ Wenn du deine Email-Postfachverbindung auf deiner Einstellungsseite konfiguriert Du kannst diesen Personen außerdem von Friendica aus antworten. Leute können sich ebenfalls von anderen Netzwerken aus mit dir befreunden. -Ein Freund von dir hat einen identi.ca-Account und kann sich mit dir befreunden, indem er deine Identitäts-Adresse in seine identi.ca-Verbinden-Dialogbox einträgt. +Ein Freund von dir hat einen GNU Social-Account und kann sich mit dir befreunden, indem er deine Identitäts-Adresse in seine GNU Social-Verbinden-Dialogbox einträgt. Ein ähnlicher Mechanismus ist für Diaspora-Nutzer vorhanden, indem deine Identitäts-Adresse in ihre Suchleiste eingegeben wird. -Beachte: Manche StatusNet-Versionen benötigen die volle URL deines Profils und funktionieren möglicherweise nicht mit der Identitäts-Adresse. +Beachte: Manche GNU Social-Versionen benötigen die volle URL deines Profils und funktionieren möglicherweise nicht mit der Identitäts-Adresse. Wenn jemand eine Freundschaftsanfrage schickt, erhältst du eine Benachrichtigung. Du musst dann diese Anfrage bestätigen, um die Freundschaftsanfrage abzuschließen. diff --git a/doc/de/Move-Account.md b/doc/de/Move-Account.md index 426692c28..14de05438 100644 --- a/doc/de/Move-Account.md +++ b/doc/de/Move-Account.md @@ -26,7 +26,7 @@ Friendica wird nun deinen Account auf dem neuen Server wiederherstellen, mit all An deine Friendica Kontakte wird außerdem eine Nachricht gesendet um sie über deine neue Adresse zu informieren. Wenn deine Kontakte ihren Account auf einem aktuellen Server haben werden deine Kontaktdetails automatisch aktualisiert. -Kontakte auf StatusNet/idendi.ca oder Diaspora werden archiviert, da wir ihnen keine Information über deinen Umzug zukommen lassen können. +Kontakte auf GNU Social oder Diaspora werden archiviert, da wir ihnen keine Information über deinen Umzug zukommen lassen können. Du solltest sie persönlich anschreiben deinen Eintrag aus ihren Kontaktlisten zu entfernen und dich neu hinzuzufügen, anschließend solltest du da gleiche mit ihren Accounts tun. Nach dem Umzug wird dein Account auf dem alten Server nicht mehr zuverlässig funktionieren und sollte deshalb gelöscht werden. diff --git a/doc/de/Settings.md b/doc/de/Settings.md index 6bc238e26..988b3657c 100644 --- a/doc/de/Settings.md +++ b/doc/de/Settings.md @@ -138,7 +138,7 @@ Dies erlaubt eine private Kommunikation, die komplett vom globalen Verzeichnis i Konfiguriere: ``` -$a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit'; +$a->config['system']['directory'] = 'http://dir.friendi.ca'; ``` diff --git a/doc/de/Tags-and-Mentions.md b/doc/de/Tags-and-Mentions.md index c085db7f4..e99d758db 100644 --- a/doc/de/Tags-and-Mentions.md +++ b/doc/de/Tags-and-Mentions.md @@ -25,7 +25,7 @@ Bitte beachte, dass Friendica eingehende "Erwähnungs"-Nachrichten von Personen Diese Maßnahme dient dazu, Spam zu vermeiden. "Fernerwähnungen" werden durch das OStatus-Protokoll übermittelt. -Dieses Protokoll wird von Friendica, StatusNet und anderen Systemen genutzt, ist allerdings derzeit nicht in Diaspora eingebaut. +Dieses Protokoll wird von Friendica, GNU Social und anderen Systemen genutzt, ist allerdings derzeit nicht in Diaspora eingebaut. Friendica unterscheidet bei Tags nicht zwischen Personen und Gruppen (einige andere Netzwerke nutzen "!gruppe", um solche zu markieren). diff --git a/doc/events.md b/doc/events.md new file mode 100644 index 000000000..abb457687 --- /dev/null +++ b/doc/events.md @@ -0,0 +1,61 @@ +# Events + +* [Home](help) + +A special form of postings are events. +The events you and your contacts share can be found at [/events](/events) on your node. +To get there go to your wall and follow the tab "events" +Depending on the theme you are using, there might be an additional link from the navigation menu to this page. + +## Event Overview + +The overview page shows the calendar of the current month, plus eventually some days in the beginning and the end. +Listed are all events for this month you created, or your contacts have shared with you. +This includes birthday reminders for contacts who share their birthday with you. + +From the controls, you can switch between month/week/day view. +Flip through the view forwards and backwards. +And return to *today*. + +To create a new event, you can either follow the link "Create New Event" or make a double click on the desired box in the calendarium for when the event should take place. + +With a click on an existing event a pop-up box will be opened which shows you the event. +From there you can edit the event or view the event at the source link, if you are the one who created the event. + +## Create a new Event + +Following one of the methods mentioned above you reach a form to enter the event data. +Fields marked with a *** have to be filled. + +* **Event Starts**: enter the date/time of the start of the event here +* **Event Finishes**: enter the finishing date/time for the event here + +When you click in one of these fields a pop-up will be opened that allows you to pick the day and the time. +If you double clicked on the day box in the calendarium these fields will be pre-filled for you. +The finishing date/time has to be after the beginning date/time of the event. +But you don't have to specify it. +If the event is open-end or the finishing date/time does not matter, just select the box below the two first fields. + +* **Adjust for viewer timezone**: If you check this box, the beginning and finisching times will automatically converted to the local time according to the timezone setting + +This might prevent too early birthday wishes, or the panic attac that you have forgotten the birthday from your buddy at the other end of the world. +And similar events. + +* **Title**: a title for the event +* **Description**: a longer description for the event +* **Location**: the location the event will took place + +These three fields describe your events. +In the descirption and location field you can use BBCode to format the text. + +* **Share this event**: when this box is checked the ACL will be shown to let you select with whom you wish to share the event. This works just like the controls of any other posting. + +When you *Share* the event it will be posted to your wall with the access permissions you've selected. +But before you do, you can also *preview* the event in a pop-up box. + +### Addons + +#### OpenStreetMap + +If this addon is activated on you friendica node, the content of the location field will be mathced with the identification service of OSM when you submit the event. +Should OSM find anything matching, a map for the location will be embedded automatically at the end of the events view. diff --git a/doc/readme.md b/doc/readme.md index 6020f2c01..a5eeb5451 100644 --- a/doc/readme.md +++ b/doc/readme.md @@ -29,11 +29,11 @@ Friendica Documentation and Resources * [Install](help/Install) * [Settings](help/Settings) * [Plugins](help/Plugins) -* [Installing Connectors (Facebook/Twitter/StatusNet)](help/Installing-Connectors) +* [Installing Connectors (Twitter/GNU Social)](help/Installing-Connectors) * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) * [Developers](help/Developers) -* [Twitter/StatusNet API Functions](help/api) +* [Twitter/GNU Social API Functions](help/api) * [Translation of Friendica](help/translations) diff --git a/doc/themes.md b/doc/themes.md new file mode 100644 index 000000000..add44c776 --- /dev/null +++ b/doc/themes.md @@ -0,0 +1,291 @@ +# Themes + +* [Home](help) + +To change the look of friendica you have to touch the themes. +The current default theme is [duepunto zero](https://github.com/friendica/friendica/tree/master/view/theme/duepuntozero) but there are numerous others. +Have a look at [friendica-themes.com](http://friendica-themes.com) for an overview of the existing themes. +In case none of them suits your needs, there are several ways to change a theme. +If you need help theming, there is a forum @[ftdevs@friendica.eu](https://friendica.eu/profile/ftdevs) where you can ask theme specific questions and present your themes. + +So, how to work on the UI of friendica. + +You can either directly edit an existing theme. +But you might loose your changes when the theme is updated by the friendica team. + +If you are almost happy with an existing theme, the easiest way to cover your needs is to create a new theme, inheritating most of the properties of the parent theme and change just minor stuff. +The below for a more detailed description of theme heritage. + +Some themes also allow users to select *variants* of the theme. +Those theme variants most often contain an additional [CSS](https://en.wikipedia.org/wiki/CSS) file to override some styling of the default theme values. +From the themes in the main repository *duepunto zero* and *vier* are using this methods for variations. +Quattro is using a slightly different approach. + +Third you can start your theme from scratch. +Which is the most complex way to change friendicas look. +But it leaves you the most freedom. +So below for a *detailed* description and the meaning of some special files. + +### Styling + +If you want to change the styling of a theme, have a look at the themes CSS file. +In most cases, you can found these in + + /view/theme/**your-theme-name**/style.css + +sometimes, there is also a file called style.php in the theme directory. +This is only needed if the theme allowes the user to change certain things of the theme dynamically. +Say the font size or set a background image. + +### Templates + +If you want to change the structure of the theme, you need to change the templates used by the theme. +Friendica themes are using [SMARTY3](http://www.smarty.net/) for templating. +The default template can be found in + + /view/templates + +if you want to override any template within your theme create your version of the template in + + /view/theme/**your-theme-name**/templates + +any template that exists there will be used instead of the default one. + +### Javascript + +The same rule applies to the JavaScript files found in + + /js + +they will be overwritten by files in + + /view/theme/**your-theme-name**/js. + +## Expand an existing Theme + +### Theme Variations + +Many themes are more *theme families* then only one theme. +*duepunto zero* and *vier* allow easily to add new theme variation. +We will go through the process of creating a new variation for *duepunto zero*. +The same (well almost, some names change) procedure applies to the *vier* theme. +And similar steps are needed for *quattro* but this theme is using [lessc](http://lesscss.org/#docs) to maintaine the CSS files.. + +In + + /view/theme/duepuntozero/deriv + +you find a couple of CSS files that define color derivations from the duepunto theme. +These resemble some of the now as unsupported marked themes, that were inherited by the duepunto theme. +Darkzero and Easter Bunny for example. + +The selection of the colorset is done in a combination of a template for a new form in the settings and aome functions in the theme.php file. +The template (theme_settings.tpl) + + {{include file="field_select.tpl" field=$colorset}} +
+ +
+ +defines a formular consisting of a [select](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select) pull-down which contains all aviable variants and s submit button. +See the documentation about [SMARTY3 templates](/help/snarty3-templates.md) for a summary of friendica specific blocks other then the select element. +But we don't really need to change anything at the template itself. + +The template alone wont work though. +You make friendica aware of its existance and tell it how to use the template file, by defining a config.php file. +It needs to define at lest the following functions + +* theme_content +* theme_post + +and may also define functions for the admin interface + +* theme_admin +* theme_admin_post. + +theme_content and theme_admin are used to make the form available in the settings, repectively the admin panel. +The _post functions handle the processing of the send form, in this case they save to selected variand in friendicas database. + +To make your own variation appear in the menu, all you need to do is to create a new CSS file in the deriv directoy and include it in the array in the config.php: + + $colorset = array( + 'default'=>t('default'), + 'greenzero'=>t('greenzero'), + 'purplezero'=>t('purplezero'), + 'easterbunny'=>t('easterbunny'), + 'darkzero'=>t('darkzero'), + 'comix'=>t('comix'), + 'slackr'=>t('slackr'), + ); + +the 1st part of the line is the name of the CSS file (without the .css) the 2nd part is the common name of the variant. +Calling the t() function with the common name makes the string translateable. +The selected 1st part will be saved in the database by the theme_post function. + + function theme_post(&$a){ + // non local users shall not pass + if(! local_user()) + return; + // if the one specific submit button was pressed then proceed + if (isset($_POST['duepuntozero-settings-submit'])){ + // and save the selection key into the personal config of the user + set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']); + } + } + +Now that this information is set in the database, what should friendica do with it? +For this, have a look at the theme.php file of the *duepunto zero*. +There you'll find somethink alike + + $colorset = get_pconfig( local_user(), 'duepuntozero','colorset'); + if (!$colorset) + $colorset = get_config('duepuntozero', 'colorset'); + if ($colorset) { + if ($colorset == 'greenzero') + $a->page['htmlhead'] .= ''."\n"; + /* some more variants */ + } + +which tells friendica to get the personal config of a user. +Check if it is set and if not look for the global config. +And finally if a config for the colorset was found, apply it by adding a link to the CSS file into the HTML header of the page. +So you'll just need to add a if selection, fitting your variant keyword and link to the CSS file of it. + +Done. +Now you can use the variant on your system. +But remember once the theme.php or the config.php you have to readd your variant to them. +If you think your color variation could be benifical for other friendica users as well, feel free to generate a pull request at github so we can include your work into the repository. + +### Inheritation + +Say, you like the duepuntozero but you want to have the content of the outer columns left and right exchanged. +That would be not a color variation as shown above. +Instead we will create a new theme, duepuntozero_lr, inherit the properties of duepuntozero and make small changes to the underlying php files. + +So create a directory called duepunto_lr and create a file called theme.php with your favorite text editor. +The content of this file should be something like + + theme_info = array( + 'extends' => 'duepuntozero'. + ); + set_template_engine($a, 'smarty3'); + /* and more stuff e.g. the JavaScript function for the header */ + } + +Next take the default.php file found in the /view direcotry and exchange the aside and right_aside elements. +So the central part of the file now looks like this: + + + + +
+ +
+ + + + +Finally we need a style.css file, inheriting the definitions from the parent theme and containing out changes for the new theme. +***Note***:You need to create the style.css and at lest import the base CSS file from the parent theme. + + @import url('../duepuntozero/style.css'); + +Done. +But I agree it is not really useful at this state. +Nevertheless, to use it, you just need to activate in the admin panel. +That done, you can select it in the settings like any other activated theme. + +## Creating a Theme from Scratch + +Keep patient. +Basically what you have to do is identifying which template you have to change so it looks more like what you want. +Adopt the CSS of the theme accordingly. +And iterate the process until you have the theme the way you want it. + +*Use the source Luke.* and don't hesitate to ask in @[ftdevs](https://friendica.eu/profile/ftdevs) or @[helpers](https://helpers.pyxis.uberspace.de/profile/helpers). + +## Special Files + +### unsupported + +If a file with this name (which might be empty) exists in the theme directory, the theme is marked as *unsupported*. +An unsupported theme may not be selected by a user in the settings. +Users who are already using it wont notice anything. + +### README(.md) + +The contents of this file, with or without the .md which indicates [Markdown](https://daringfireball.net/projects/markdown/) syntax, will be displayed at most repository hosting services and in the theme page within the admin panel of friendica. + +This file should contain information you want to let others know about your theme. + +### screenshot.[png|jpg] + +If you want to have a preview image of your theme displayed in the settings you should take a screenshot and save it with this name. +Supported formats are PNG and JPEG. + +### theme.php + +This is the main definition file of the theme. +In the header of that file, some meta information are stored. +For example, have a look at the theme.php of the *quattro* theme: + + + * Maintainer: Fabio + * Maintainer: Tobias + */ + +You see the definition of the themes name, it's version and the initial author of the theme. +These three information should be listed. +If the original author is not anymore working on the theme, but a maintainer has taken over, the maintainer should be listed as well. +The information from the theme header will be displayed in the admin panelö. + +Next crucial part of the theme.php file is a definition of an init function. +The name of the function is _init. +So in the case of quattro it is + + function quattro_init(&$a) { + $a->theme_info = array(); + set_template_engine($a, 'smarty3'); + } + +Here we have set the basic theme information, in this case they are empthy. +But the array needs to be set. +And we have set the template engine that should be used by friendica for this theme. +At the moment you should use the *smarty3* engine. +There once was a friendica specific templating engine as well but that is not used anymore. +If you like to use another templating engine, please implement it. + +When you want to inherit stuff from another theme you have to *announce* this in the theme_info: + + $a->theme_info = array( + 'extends' => 'duepuntozero', + ); + +which declares *duepuntozero* as parent of the theme. + +If you want to add something to the HTML header of the theme, one way to do so is by adding it to the theme.php file. +To do so, add something alike + + $a->page['htmlhead'] .= <<< EOT + /* stuff you want to add to the header */ + EOT; + +The $a variable holds the friendica application. +So you can access the properties of this friendica session from the theme.php file as well. + +### default.php + +This file covers the structure of the underlying HTML layout. +The default file is in + + /view/default.php + +if you want to change it, say adding a 4th column for banners of your favourite FLOSS projects, place a new default.php file in your theme directory. +As with the theme.php file, you can use the properties of the $a variable with holds the friendica application to decide what content is displayed. \ No newline at end of file diff --git a/htconfig.php b/htconfig.php index 25f334b79..508de9a32 100644 --- a/htconfig.php +++ b/htconfig.php @@ -1,12 +1,12 @@ config['sitename'] = "Friendica Social Network"; // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. -// Be certain to create your own personal account before setting -// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on +// Be certain to create your own personal account before setting +// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on // the registration page. REGISTER_APPROVE requires you set 'admin_email' // to the email address of an already registered person who can authorise -// and/or approve/deny the request. +// and/or approve/deny the request. // In order to perform system administration via the admin panel, admin_email // must precisely match the email address of the person logged in. @@ -51,12 +51,6 @@ $a->config['system']['maximagesize'] = 800000; $a->config['php_path'] = 'php'; -// You shouldn't need to change anything else. -// Location of global directory submission page. - -$a->config['system']['directory_submit_url'] = 'http://dir.friendica.com/submit'; -$a->config['system']['directory_search_url'] = 'http://dir.friendica.com/directory?search='; - // PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts $a->config['system']['huburl'] = '[internal]'; @@ -74,21 +68,8 @@ $a->config['system']['theme'] = 'duepuntozero'; $a->config['system']['no_regfullname'] = true; -// If set to true the priority settings of ostatus contacts are used -$a->config['system']['ostatus_use_priority'] = false; - -// If enabled, all items are cached in the given directory -$a->config['system']['itemcache'] = ""; - -// If enabled, the lockpath is used for a lockfile to check if the poller is running -$a->config['system']['lockpath'] = ""; - -// If enabled, the MyBB fulltext engine is used -// $a->config['system']['use_fulltext_engine'] = true; - -// Use the old style "share" -// $a->config['system']['old_share'] = false; - //Deny public access to the local directory //$a->config['system']['block_local_dir'] = false; +// Location of the global directory +$a->config['system']['directory'] = 'http://dir.friendi.ca'; diff --git a/include/Contact.php b/include/Contact.php index 103dbe9ad..920ec3c2b 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -113,7 +113,7 @@ function terminate_friendship($user,$self,$contact) { '$photo' => $self['photo'], '$thumb' => $self['thumb'], '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME), - '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . random_string(), + '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . get_guid(32), '$title' => '', '$type' => 'text', '$content' => t('stopped following'), @@ -267,7 +267,12 @@ function contact_photo_menu($contact) { function random_profile() { - $r = q("select url from gcontact where url like '%%://%%/profile/%%' order by rand() limit 1"); + $r = q("SELECT `url` FROM `gcontact` WHERE `network` = '%s' + AND `last_contact` >= `last_failure` + AND `updated` > UTC_TIMESTAMP - INTERVAL 1 MONTH + ORDER BY rand() LIMIT 1", + dbesc(NETWORK_DFRN)); + if(count($r)) return dirname($r[0]['url']); return ''; diff --git a/include/Scrape.php b/include/Scrape.php index 90fb1a9e3..93d68be22 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -249,7 +249,7 @@ function scrape_feed($url) { $ret['feed_atom'] = $url; return $ret; } - if(stristr($line,'application/rss+xml') || stristr($s,'loadHTML($s); + $xpath = new DomXPath($doc); + + $base = $xpath->query("//base"); + foreach ($base as $node) { + $attr = array(); + + if ($node->attributes->length) + foreach ($node->attributes as $attribute) + $attr[$attribute->name] = $attribute->value; + + if ($attr["href"] != "") + $basename = $attr["href"] ; } - if(! $dom) { - logger('scrape_feed: failed to parse.'); - return $ret; + $list = $xpath->query("//link"); + foreach ($list as $node) { + $attr = array(); + + if ($node->attributes->length) + foreach ($node->attributes as $attribute) + $attr[$attribute->name] = $attribute->value; + + if (($attr["rel"] == "alternate") AND ($attr["type"] == "application/atom+xml")) + $ret["feed_atom"] = $attr["href"]; + + if (($attr["rel"] == "alternate") AND ($attr["type"] == "application/rss+xml")) + $ret["feed_rss"] = $attr["href"]; } - - $head = $dom->getElementsByTagName('base'); - if($head) { - foreach($head as $head0) { - $basename = $head0->getAttribute('href'); - break; - } - } - if(! $basename) - $basename = implode('/', array_slice(explode('/',$url),0,3)) . '/'; - - $items = $dom->getElementsByTagName('link'); - - // get Atom/RSS link elements, take the first one of either. - - if($items) { - foreach($items as $item) { - $x = $item->getAttribute('rel'); - if(($x === 'alternate') && ($item->getAttribute('type') === 'application/atom+xml')) { - if(! x($ret,'feed_atom')) - $ret['feed_atom'] = $item->getAttribute('href'); - } - if(($x === 'alternate') && ($item->getAttribute('type') === 'application/rss+xml')) { - if(! x($ret,'feed_rss')) - $ret['feed_rss'] = $item->getAttribute('href'); - } - } - } - - // Drupal and perhaps others only provide relative URL's. Turn them into absolute. + // Drupal and perhaps others only provide relative URLs. Turn them into absolute. if(x($ret,'feed_atom') && (! strstr($ret['feed_atom'],'://'))) $ret['feed_atom'] = $basename . $ret['feed_atom']; @@ -509,6 +502,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { } if($mode == PROBE_NORMAL) { + if(strlen($zot)) { $s = fetch_url($zot); if($s) { @@ -528,6 +522,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { } } + if(strlen($dfrn)) { $ret = scrape_dfrn(($hcard) ? $hcard : $dfrn); if(is_array($ret) && x($ret,'dfrn-request')) { @@ -634,6 +629,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if($check_feed) { $feedret = scrape_feed(($poll) ? $poll : $url); + logger('probe_url: scrape_feed ' . (($poll)? $poll : $url) . ' returns: ' . print_r($feedret,true), LOGGER_DATA); if(count($feedret) && ($feedret['feed_atom'] || $feedret['feed_rss'])) { $poll = ((x($feedret,'feed_atom')) ? unamp($feedret['feed_atom']) : unamp($feedret['feed_rss'])); @@ -653,7 +649,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), LOGGER_DATA); // Don't try and parse an empty string - $feed->set_raw_data(($xml) ? $xml : ''); + $feed->set_raw_data(($xml) ? $xml : ''); $feed->init(); if($feed->error()) @@ -823,7 +819,9 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { } } - Cache::set("probe_url:".$mode.":".$url,serialize($result)); + // Only store into the cache if the value seems to be valid + if ($result['network'] != NETWORK_FEED) + Cache::set("probe_url:".$mode.":".$url,serialize($result), CACHE_DAY); return $result; } diff --git a/include/api.php b/include/api.php index b5d8f9cf3..2fd7d6d45 100644 --- a/include/api.php +++ b/include/api.php @@ -9,6 +9,14 @@ require_once("include/html2plain.php"); require_once("mod/share.php"); require_once("include/Photo.php"); + require_once("mod/item.php"); + require_once('include/security.php'); + require_once('include/contact_selectors.php'); + require_once('include/html2bbcode.php'); + require_once('mod/wall_upload.php'); + require_once("mod/proxy.php"); + require_once("include/message.php"); + /* * Twitter-Like API @@ -151,7 +159,6 @@ die('This api requires login'); } - require_once('include/security.php'); authenticate_success($record); $_SESSION["allow_api"] = true; call_hooks('logged_in', $a->user); @@ -185,7 +192,11 @@ if (strpos($a->query_string, ".atom")>0) $type="atom"; if (strpos($a->query_string, ".as")>0) $type="as"; + $stamp = microtime(true); $r = call_user_func($info['func'], $a, $type); + $duration = (float)(microtime(true)-$stamp); + logger("API call duration: ".round($duration, 2)."\t".$a->query_string, LOGGER_DEBUG); + if ($r===false) return; switch($type){ @@ -504,8 +515,7 @@ $r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url']))); } - require_once('include/contact_selectors.php'); - $network_name = network_to_name($uinfo[0]['network']); + $network_name = network_to_name($uinfo[0]['network'], $uinfo[0]['url']); $ret = Array( 'id' => intval($r[0]['id']), @@ -686,10 +696,10 @@ $txt = requestdata('status'); //$txt = urldecode(requestdata('status')); - require_once('library/HTMLPurifier.auto.php'); - require_once('include/html2bbcode.php'); - if((strpos($txt,'<') !== false) || (strpos($txt,'>') !== false)) { + + require_once('library/HTMLPurifier.auto.php'); + $txt = html2bb_video($txt); $config = HTMLPurifier_Config::createDefault(); $config->set('Cache.DefinitionImpl', null); @@ -701,12 +711,10 @@ $a->argv[1]=$user_info['screen_name']; //should be set to username? $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo - require_once('mod/wall_upload.php'); $bebop = wall_upload_post($a); //now that we have the img url in bbcode we can add it to the status and insert the wall item. $_REQUEST['body']=$txt."\n\n".$bebop; - require_once('mod/item.php'); item_post($a); // this should output the last post (the one we just posted). @@ -729,18 +737,16 @@ // logger('api_post: ' . print_r($_POST,true)); if(requestdata('htmlstatus')) { - require_once('library/HTMLPurifier.auto.php'); - require_once('include/html2bbcode.php'); - $txt = requestdata('htmlstatus'); if((strpos($txt,'<') !== false) || (strpos($txt,'>') !== false)) { + require_once('library/HTMLPurifier.auto.php'); + $txt = html2bb_video($txt); $config = HTMLPurifier_Config::createDefault(); $config->set('Cache.DefinitionImpl', null); - $purifier = new HTMLPurifier($config); $txt = $purifier->purify($txt); @@ -753,6 +759,11 @@ $_REQUEST['title'] = requestdata('title'); $parent = requestdata('in_reply_to_status_id'); + + // Twidere sends "-1" if it is no reply ... + if ($parent == -1) + $parent = ""; + if(ctype_digit($parent)) $_REQUEST['parent'] = $parent; else @@ -829,7 +840,6 @@ if(x($_FILES,'media')) { // upload the image if we have one $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo - require_once('mod/wall_upload.php'); $media = wall_upload_post($a); if(strlen($media)>0) $_REQUEST['body'] .= "\n\n".$media; @@ -856,7 +866,6 @@ // call out normal post function - require_once('mod/item.php'); item_post($a); // this should output the last post (the one we just posted). @@ -879,7 +888,6 @@ return false; } - require_once('mod/wall_upload.php'); $media = wall_upload_post($a, false); if(!$media) { // Output error @@ -996,9 +1004,9 @@ $status_info["entities"] = $converted["entities"]; if (($lastwall['item_network'] != "") AND ($status["source"] == 'web')) - $status_info["source"] = network_to_name($lastwall['item_network']); - elseif (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network']) != $status_info["source"])) - $status_info["source"] = trim($status_info["source"].' ('.network_to_name($lastwall['item_network']).')'); + $status_info["source"] = network_to_name($lastwall['item_network'], $user_info['url']); + elseif (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network'], $user_info['url']) != $status_info["source"])) + $status_info["source"] = trim($status_info["source"].' ('.network_to_name($lastwall['item_network'], $user_info['url']).')'); // "uid" and "self" are only needed for some internal stuff, so remove it from here unset($status_info["user"]["uid"]); @@ -1095,9 +1103,9 @@ $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']); - if (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network']) != $user_info["status"]["source"])) - $user_info["status"]["source"] = trim($user_info["status"]["source"].' ('.network_to_name($lastwall['item_network']).')'); + $user_info["status"]["source"] = network_to_name($lastwall['item_network'], $user_info['url']); + if (($lastwall['item_network'] != "") AND (network_to_name($lastwall['item_network'], $user_info['url']) != $user_info["status"]["source"])) + $user_info["status"]["source"] = trim($user_info["status"]["source"].' ('.network_to_name($lastwall['item_network'], $user_info['url']).')'); } @@ -1480,7 +1488,6 @@ if (!x($_REQUEST, "source")) $_REQUEST["source"] = api_source(); - require_once('mod/item.php'); item_post($a); } @@ -1512,7 +1519,6 @@ $ret = api_statuses_show($a, $type); - require_once('include/items.php'); drop_item($id, false); return($ret); @@ -1976,7 +1982,6 @@ $include_entities = strtolower(x($_REQUEST,'include_entities')?$_REQUEST['include_entities']:"false"); if ($include_entities != "true") { - require_once("mod/proxy.php"); preg_match_all("/\[img](.*?)\[\/img\]/ism", $bbcode, $images); @@ -2079,7 +2084,6 @@ // If image cache is activated, then use the following sizes: // thumb (150), small (340), medium (600) and large (1024) if (!get_config("system", "proxy_disabled")) { - require_once("mod/proxy.php"); $media_url = proxy_url($url); $sizes = array(); @@ -2214,9 +2218,9 @@ $status["entities"] = $converted["entities"]; if (($item['item_network'] != "") AND ($status["source"] == 'web')) - $status["source"] = network_to_name($item['item_network']); - else if (($item['item_network'] != "") AND (network_to_name($item['item_network']) != $status["source"])) - $status["source"] = trim($status["source"].' ('.network_to_name($item['item_network']).')'); + $status["source"] = network_to_name($item['item_network'], $user_info['url']); + else if (($item['item_network'] != "") AND (network_to_name($item['item_network'], $user_info['url']) != $status["source"])) + $status["source"] = trim($status["source"].' ('.network_to_name($item['item_network'], $user_info['url']).')'); // Retweets are only valid for top postings @@ -2471,8 +2475,6 @@ $sender = api_get_user($a); - require_once("include/message.php"); - if ($_POST['screen_name']) { $r = q("SELECT `id`, `nurl`, `network` FROM `contact` WHERE `uid`=%d AND `nick`='%s'", intval(api_user()), diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 34c932f74..fc05e720f 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -34,6 +34,15 @@ function diaspora2bb($s) { $s = str_replace('#','#',$s); + $search = array(" \n", "\n "); + $replace = array("\n", "\n"); + do { + $oldtext = $s; + $s = str_replace($search, $replace, $s); + } while ($oldtext != $s); + + $s = str_replace("\n\n", "
", $s); + $s = html2bbcode($s); // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands @@ -143,22 +152,22 @@ function format_event_diaspora($ev) { $o .= '**' . (($ev['summary']) ? bb2diaspora($ev['summary']) : bb2diaspora($ev['desc'])) . '**' . "\n"; $o .= t('Starts:') . ' ' . '[' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', + . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', $ev['start'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', + : day_translate(datetime_convert('UTC', 'UTC', $ev['start'] , $bd_format))) . '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['start'])) . ")\n"; if(! $ev['nofinish']) - $o .= t('Finishes:') . ' ' . '[' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', + $o .= t('Finishes:') . ' ' . '[' + . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', $ev['finish'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', + : day_translate(datetime_convert('UTC', 'UTC', $ev['finish'] , $bd_format ))) . '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['finish'])) . ")\n"; if(strlen($ev['location'])) - $o .= t('Location:') . bb2diaspora($ev['location']) + $o .= t('Location:') . bb2diaspora($ev['location']) . "\n"; $o .= "\n"; diff --git a/include/bbcode.php b/include/bbcode.php index 6c5a400dd..13061958c 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -268,6 +268,13 @@ function stripcode_br_cb($s) { return '[code]' . str_replace('
', '', $s[1]) . '[/code]'; } +function bb_onelinecode_cb($match) { + if (strpos($match[1],"
")===false){ + return "".$match[1].""; + } + return "".$match[1].""; +} + function tryoembed($match){ //$url = ((count($match)==2)?$match[1]:$match[2]); $url = $match[1]; @@ -887,8 +894,12 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal $MAILSearchString = $URLSearchString; // Remove all hashtag addresses - if ((!$tryoembed OR $simplehtml) AND ($simplehtml != 7)) + if ((!$tryoembed OR $simplehtml) AND !in_array($simplehtml, array(3, 7))) $Text = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $Text); + elseif ($simplehtml == 3) + $Text = preg_replace("/([@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", + '$1$3', + $Text); elseif ($simplehtml == 7) $Text = preg_replace("/([@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', @@ -1175,7 +1186,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal // If we found an event earlier, strip out all the event code and replace with a reformatted version. // Replace the event-start section with the entire formatted event. The other bbcode is stripped. - // Summary (e.g. title) is required, earlier revisions only required description (in addition to + // Summary (e.g. title) is required, earlier revisions only required description (in addition to // start which is always required). Allow desc with a missing summary for compatibility. if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) { @@ -1189,6 +1200,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal $Text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/ism",'',$Text); } + + //replace oneliner with + $Text = preg_replace_callback("|(?!]*>)([^<]*)(?!]*>)|ism", 'bb_onelinecode_cb', $Text); + // Unhide all [noparse] contained bbtags unspacefying them // and triming the [noparse] tag. @@ -1203,7 +1218,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal // fix any escaped ampersands that may have been converted into links $Text = preg_replace("/\<([^>]*?)(src|href)=(.*?)\&\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text); - $Text = preg_replace("/\<([^>]*?)(src|href)=\"(?!http|ftp|mailto|cid)(.*?)\>/ism",'<$1$2="">',$Text); + $Text = preg_replace("/\<([^>]*?)(src|href)=\"(?!http|ftp|mailto|gopher|cid)(.*?)\>/ism",'<$1$2="">',$Text); if($saved_image) $Text = bb_replace_images($Text, $saved_image); diff --git a/include/cache.php b/include/cache.php index 3a18fe2a5..d0b0dfafd 100644 --- a/include/cache.php +++ b/include/cache.php @@ -5,33 +5,25 @@ class Cache { public static function get($key) { - /*if (function_exists("apc_fetch") AND function_exists("apc_exists")) - if (apc_exists($key)) - return(apc_fetch($key));*/ $r = q("SELECT `v` FROM `cache` WHERE `k`='%s' limit 1", dbesc($key) ); - if (count($r)) { - /*if (function_exists("apc_store")) - apc_store($key, $r[0]['v'], 600);*/ - + if (count($r)) return $r[0]['v']; - } + return null; } - public static function set($key,$value) { + public static function set($key,$value, $duration = CACHE_MONTH) { - q("REPLACE INTO `cache` (`k`,`v`,`updated`) VALUES ('%s','%s','%s')", + q("REPLACE INTO `cache` (`k`,`v`,`expire_mode`,`updated`) VALUES ('%s','%s',%d,'%s')", dbesc($key), dbesc($value), + intval($duration), dbesc(datetime_convert())); - /*if (function_exists("apc_store")) - apc_store($key, $value, 600);*/ - } @@ -63,8 +55,17 @@ public static function clear(){ - q("DELETE FROM `cache` WHERE `updated` < '%s'", - dbesc(datetime_convert('UTC','UTC',"now - 30 days"))); + q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d", + dbesc(datetime_convert('UTC','UTC',"now - 30 days")), intval(CACHE_MONTH)); + + q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d", + dbesc(datetime_convert('UTC','UTC',"now - 7 days")), intval(CACHE_WEEK)); + + q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d", + dbesc(datetime_convert('UTC','UTC',"now - 1 days")), intval(CACHE_DAY)); + + q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d", + dbesc(datetime_convert('UTC','UTC',"now - 1 hours")), intval(CACHE_HOUR)); } } diff --git a/include/contact_selectors.php b/include/contact_selectors.php index c04b07fb6..f0ac87a09 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -1,5 +1,5 @@ t('Friendica'), @@ -97,6 +97,10 @@ function network_to_name($s) { $search = array_keys($nets); $replace = array_values($nets); - return str_replace($search,$replace,$s); + $networkname = str_replace($search,$replace,$s); + if (($s == NETWORK_DIASPORA) AND ($profile != "") AND diaspora_is_redmatrix($profile)) + $networkname = t("Redmatrix"); + + return $networkname; } diff --git a/include/conversation.php b/include/conversation.php index 4aae61180..5a84ca42a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -892,9 +892,9 @@ function item_photo_menu($item){ foreach($menu as $k=>$v){ if(strpos($v,'javascript:') === 0) { $v = substr($v,11); - $o .= "
  • $k
  • \n"; + $o .= "
  • $k
  • \n"; } - elseif ($v!="") $o .= "
  • $k
  • \n"; + elseif ($v!="") $o .= "
  • $k
  • \n"; } return $o; }} diff --git a/include/dbstructure.php b/include/dbstructure.php index 0f81ee624..2b1ee84fd 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -364,6 +364,7 @@ function db_definition() { "fields" => array( "k" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"), "v" => array("type" => "text", "not null" => "1"), + "expire_mode" => array("type" => "int(11)", "not null" => "1", "default" => "0"), "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), ), "indexes" => array( @@ -451,6 +452,7 @@ function db_definition() { "hub-verify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "last-update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "success_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "failure_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "name-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), @@ -625,21 +627,28 @@ function db_definition() { "fields" => array( "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "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" => ""), + "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_failure" => 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" => ""), + "community" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"), + "server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), ), "indexes" => array( "PRIMARY" => array("id"), "nurl" => array("nurl"), + "updated" => array("updated"), ) ); $database["glink"] = array( @@ -683,6 +692,29 @@ function db_definition() { "uid_gid_contactid" => array("uid","gid","contact-id"), ) ); + $database["gserver"] = array( + "fields" => array( + "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), + "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "site_name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "info" => array("type" => "text", "not null" => "1"), + "register_policy" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), + "poco" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), + "platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "last_poco_query" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + ), + "indexes" => array( + "PRIMARY" => array("id"), + "nurl" => array("nurl"), + ) + ); $database["guid"] = array( "fields" => array( "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), diff --git a/include/diaspora.php b/include/diaspora.php old mode 100755 new mode 100644 index b70cffdc3..3145c52ea --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1,5 +1,10 @@ 0, "page-flags" => PAGE_FREELOVE); + $result = diaspora_dispatch($importer,$msg); + logger("Dispatcher reported ".$result, LOGGER_DEBUG); + + // Now distribute it to the followers $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN - ( SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s' ) - AND `account_expired` = 0 AND `account_removed` = 0 ", + ( SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s' ) + AND `account_expired` = 0 AND `account_removed` = 0 ", dbesc(NETWORK_DIASPORA), dbesc($msg['author']) ); @@ -30,7 +41,7 @@ function diaspora_dispatch_public($msg) { } } else - logger('diaspora_public: no subscribers'); + logger('diaspora_public: no subscribers for '.$msg["author"].' '.print_r($msg, true)); } @@ -540,7 +551,7 @@ function diaspora_decode($importer,$xml) { // This will also convert diaspora public key from pkcs#1 to pkcs#8 logger('mod-diaspora: Fetching key for ' . $author_link ); - $key = get_diaspora_key($author_link); + $key = get_diaspora_key($author_link); if(! $key) { logger('mod-diaspora: Could not retrieve author key.'); @@ -578,7 +589,7 @@ function diaspora_request($importer,$xml) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. - if($contact['rel'] == CONTACT_IS_FOLLOWER && $importer['page-flags'] != PAGE_COMMUNITY) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), @@ -635,7 +646,7 @@ function diaspora_request($importer,$xml) { $i = item_store($arr); if($i) - proc_run('php',"include/notifier.php","activity","$i"); + proc_run('php',"include/notifier.php","activity","$i"); } @@ -755,12 +766,12 @@ function diaspora_request($importer,$xml) { return; } -function diaspora_post_allow($importer,$contact) { +function diaspora_post_allow($importer,$contact, $is_comment = false) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. // Normally this should have handled by getting a request - but this could get lost - if($contact['rel'] == CONTACT_IS_FOLLOWER && $importer['page-flags'] != PAGE_COMMUNITY) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), @@ -775,8 +786,13 @@ function diaspora_post_allow($importer,$contact) { if($contact['rel'] == CONTACT_IS_SHARING || $contact['rel'] == CONTACT_IS_FRIEND) return true; if($contact['rel'] == CONTACT_IS_FOLLOWER) - if($importer['page-flags'] == PAGE_COMMUNITY) + if(($importer['page-flags'] == PAGE_COMMUNITY) OR $is_comment) return true; + + // Messages for the global users are always accepted + if ($importer['uid'] == 0) + return true; + return false; } @@ -818,23 +834,24 @@ function diaspora_post($importer,$xml,$msg) { } $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle); - if(! $contact) - return; + if(! $contact) { + logger('diaspora_post: A Contact for handle '.$diaspora_handle.' and user '.$importer['uid'].' was not found'); + return 203; + } - if(! diaspora_post_allow($importer,$contact)) { + if(! diaspora_post_allow($importer,$contact, false)) { logger('diaspora_post: Ignoring this author.'); return 202; } $message_id = $diaspora_handle . ':' . $guid; - $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", intval($importer['uid']), - dbesc($message_id), dbesc($guid) ); if(count($r)) { logger('diaspora_post: message exists: ' . $guid); - return; + return 208; } $created = unxmlify($xml->created_at); @@ -889,7 +906,7 @@ function diaspora_post($importer,$xml,$msg) { $datarray['body'] = $body; $datarray['tag'] = $str_tags; if ($xml->provider_display_name) - $datarray["app"] = unxmlify($xml->provider_display_name); + $datarray["app"] = unxmlify($xml->provider_display_name); else $datarray['app'] = 'Diaspora'; @@ -900,7 +917,9 @@ function diaspora_post($importer,$xml,$msg) { DiasporaFetchGuid($datarray); $message_id = item_store($datarray); - return; + logger("Stored item with message id ".$message_id, LOGGER_DEBUG); + + return 201; } @@ -921,8 +940,8 @@ function DiasporaFetchGuidSub($match, $item) { function diaspora_store_by_guid($guid, $server, $uid = 0) { require_once("include/Contact.php"); - $serverparts = parse_url($server); - $server = $serverparts["scheme"]."://".$serverparts["host"]; + $serverparts = parse_url($server); + $server = $serverparts["scheme"]."://".$serverparts["host"]; logger("Trying to fetch item ".$guid." from ".$server, LOGGER_DEBUG); @@ -944,9 +963,8 @@ function diaspora_store_by_guid($guid, $server, $uid = 0) { $objecttype = $item["object-type"]; $message_id = $author.':'.$guid; - $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", intval($uid), - dbesc($message_id), dbesc($guid) ); if(count($r)) @@ -954,9 +972,21 @@ function diaspora_store_by_guid($guid, $server, $uid = 0) { $person = find_diaspora_person_by_handle($author); - $datarray = array(); + $contact_id = get_contact($person['url'], $uid); + + $contacts = q("SELECT * FROM `contact` WHERE `id` = %d", intval($contact_id)); + $importers = q("SELECT * FROM `user` WHERE `uid` = %d", intval($uid)); + + if ($contacts AND $importers) + if(!diaspora_post_allow($importers[0],$contacts[0], false)) { + logger('Ignoring author '.$person['url'].' for uid '.$uid); + return false; + } else + logger('Author '.$person['url'].' is allowed for uid '.$uid); + + $datarray = array(); $datarray['uid'] = $uid; - $datarray['contact-id'] = get_contact($person['url'], $uid); + $datarray['contact-id'] = $contact_id; $datarray['wall'] = 0; $datarray['network'] = NETWORK_DIASPORA; $datarray['guid'] = $guid; @@ -1096,15 +1126,14 @@ function diaspora_reshare($importer,$xml,$msg) { if(! $contact) return; - if(! diaspora_post_allow($importer,$contact)) { + if(! diaspora_post_allow($importer,$contact, false)) { logger('diaspora_reshare: Ignoring this author: ' . $diaspora_handle . ' ' . print_r($xml,true)); return 202; } $message_id = $diaspora_handle . ':' . $guid; - $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", intval($importer['uid']), - dbesc($message_id), dbesc($guid) ); if(count($r)) { @@ -1282,15 +1311,14 @@ function diaspora_asphoto($importer,$xml,$msg) { if(! $contact) return; - if(! diaspora_post_allow($importer,$contact)) { + if(! diaspora_post_allow($importer,$contact, false)) { logger('diaspora_asphoto: Ignoring this author.'); return 202; } $message_id = $diaspora_handle . ':' . $guid; - $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `guid` = '%s' LIMIT 1", + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1", intval($importer['uid']), - dbesc($message_id), dbesc($guid) ); if(count($r)) { @@ -1378,7 +1406,7 @@ function diaspora_comment($importer,$xml,$msg) { return; } - if(! diaspora_post_allow($importer,$contact)) { + if(! diaspora_post_allow($importer,$contact, true)) { logger('diaspora_comment: Ignoring this author.'); return 202; } @@ -1600,7 +1628,7 @@ function diaspora_conversation($importer,$xml,$msg) { $created_at = datetime_convert('UTC','UTC',notags(unxmlify($xml->created_at))); $parent_uri = $diaspora_handle . ':' . $guid; - + $messages = $xml->message; if(! count($messages)) { @@ -1614,7 +1642,7 @@ function diaspora_conversation($importer,$xml,$msg) { return; } - if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { + if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { logger('diaspora_conversation: Ignoring this author.'); return 202; } @@ -1639,11 +1667,11 @@ function diaspora_conversation($importer,$xml,$msg) { ); if($r) $c = q("select * from conv where uid = %d and guid = '%s' limit 1", - intval($importer['uid']), - dbesc($guid) - ); + intval($importer['uid']), + dbesc($guid) + ); if(count($c)) - $conversation = $c[0]; + $conversation = $c[0]; } if(! $conversation) { logger('diaspora_conversation: unable to create conversation.'); @@ -1770,15 +1798,15 @@ function diaspora_message($importer,$xml,$msg) { $msg_diaspora_handle = notags(unxmlify($xml->diaspora_handle)); $msg_conversation_guid = notags(unxmlify($xml->conversation_guid)); - $parent_uri = $diaspora_handle . ':' . $msg_parent_guid; - + $parent_uri = $msg_diaspora_handle . ':' . $msg_parent_guid; + $contact = diaspora_get_contact_by_handle($importer['uid'],$msg_diaspora_handle); if(! $contact) { logger('diaspora_message: cannot find contact: ' . $msg_diaspora_handle); return; } - if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { + if(($contact['rel'] == CONTACT_IS_FOLLOWER) || ($contact['blocked']) || ($contact['readonly'])) { logger('diaspora_message: Ignoring this author.'); return 202; } @@ -1882,7 +1910,7 @@ function diaspora_photo($importer,$xml,$msg,$attempt=1) { return; } - if(! diaspora_post_allow($importer,$contact)) { + if(! diaspora_post_allow($importer,$contact, false)) { logger('diaspora_photo: Ignoring this author.'); return 202; } @@ -1929,7 +1957,7 @@ function diaspora_photo($importer,$xml,$msg,$attempt=1) { $link_text = '[img]' . $remote_photo_path . $remote_photo_name . '[/img]' . "\n"; $link_text = scale_external_images($link_text, true, - array($remote_photo_name, 'scaled_full_' . $remote_photo_name)); + array($remote_photo_name, 'scaled_full_' . $remote_photo_name)); if(strpos($parent_item['body'],$link_text) === false) { $r = q("UPDATE `item` SET `body` = '%s', `visible` = 1 WHERE `id` = %d AND `uid` = %d", @@ -1969,7 +1997,7 @@ function diaspora_like($importer,$xml,$msg) { return; } - if(! diaspora_post_allow($importer,$contact)) { + if(! diaspora_post_allow($importer,$contact, false)) { logger('diaspora_like: Ignoring this author.'); return 202; } @@ -2593,28 +2621,28 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) { function diaspora_is_reshare($body) { $body = trim($body); - // Skip if it isn't a pure repeated messages - // Does it start with a share? - if (strpos($body, "[share") > 0) - return(false); + // Skip if it isn't a pure repeated messages + // Does it start with a share? + if (strpos($body, "[share") > 0) + return(false); - // Does it end with a share? - if (strlen($body) > (strrpos($body, "[/share]") + 8)) - return(false); + // Does it end with a share? + if (strlen($body) > (strrpos($body, "[/share]") + 8)) + return(false); - $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body); - // Skip if there is no shared message in there - if ($body == $attributes) - return(false); + $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body); + // Skip if there is no shared message in there + if ($body == $attributes) + return(false); - $guid = ""; - preg_match("/guid='(.*?)'/ism", $attributes, $matches); - if ($matches[1] != "") - $guid = $matches[1]; + $guid = ""; + preg_match("/guid='(.*?)'/ism", $attributes, $matches); + if ($matches[1] != "") + $guid = $matches[1]; - preg_match('/guid="(.*?)"/ism', $attributes, $matches); - if ($matches[1] != "") - $guid = $matches[1]; + preg_match('/guid="(.*?)"/ism', $attributes, $matches); + if ($matches[1] != "") + $guid = $matches[1]; if ($guid != "") { $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1", @@ -2627,35 +2655,35 @@ function diaspora_is_reshare($body) { } } - $profile = ""; - preg_match("/profile='(.*?)'/ism", $attributes, $matches); - if ($matches[1] != "") - $profile = $matches[1]; + $profile = ""; + preg_match("/profile='(.*?)'/ism", $attributes, $matches); + if ($matches[1] != "") + $profile = $matches[1]; - preg_match('/profile="(.*?)"/ism', $attributes, $matches); - if ($matches[1] != "") - $profile = $matches[1]; + preg_match('/profile="(.*?)"/ism', $attributes, $matches); + if ($matches[1] != "") + $profile = $matches[1]; - $ret= array(); + $ret= array(); - $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile); - if (($ret["root_handle"] == $profile) OR ($ret["root_handle"] == "")) - return(false); + $ret["root_handle"] = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile); + if (($ret["root_handle"] == $profile) OR ($ret["root_handle"] == "")) + return(false); - $link = ""; - preg_match("/link='(.*?)'/ism", $attributes, $matches); - if ($matches[1] != "") - $link = $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]; + preg_match('/link="(.*?)"/ism', $attributes, $matches); + if ($matches[1] != "") + $link = $matches[1]; - $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link); - if (($ret["root_guid"] == $link) OR ($ret["root_guid"] == "")) - return(false); + $ret["root_guid"] = preg_replace("=https?://(.*)/posts/(.*)=ism", "$2", $link); + if (($ret["root_guid"] == $link) OR ($ret["root_guid"] == "")) + return(false); - return($ret); + return($ret); } function diaspora_send_images($item,$owner,$contact,$images,$public_batch = false) { @@ -2709,7 +2737,7 @@ function diaspora_send_followup($item,$owner,$contact,$public_batch = false) { // likes on comments if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) { $p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1", - dbesc($item['thr-parent']) + dbesc($item['thr-parent']) ); } else { @@ -2787,7 +2815,7 @@ function diaspora_send_relay($item,$owner,$contact,$public_batch = false) { // likes on comments if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) { $p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1", - dbesc($item['thr-parent']) + dbesc($item['thr-parent']) ); } else { @@ -2970,7 +2998,7 @@ function diaspora_send_mail($item,$owner,$contact) { $body = bb2diaspora($item['body']); $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C'); - $signed_text = $item['guid'] . ';' . $cnv['guid'] . ';' . $body . ';' + $signed_text = $item['guid'] . ';' . $cnv['guid'] . ';' . $body . ';' . $created . ';' . $myaddr . ';' . $cnv['guid']; $sig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256')); @@ -2978,7 +3006,7 @@ function diaspora_send_mail($item,$owner,$contact) { $msg = array( 'guid' => xmlify($item['guid']), 'parent_guid' => xmlify($cnv['guid']), - 'parent_author_signature' => (($item['reply']) ? null : xmlify($sig)), + 'parent_author_signature' => xmlify($sig), 'author_signature' => xmlify($sig), 'text' => xmlify($body), 'created_at' => xmlify($created), @@ -3059,3 +3087,47 @@ function diaspora_transmit($owner,$contact,$slap,$public_batch,$queue_run=false) return(($return_code) ? $return_code : (-1)); } + +function diaspora_fetch_relay() { + + $serverdata = get_config("system", "relay_server"); + if ($serverdata == "") + return array(); + + $relay = array(); + + $servers = explode(",", $serverdata); + + foreach($servers AS $server) { + $server = trim($server); + $batch = $server."/receive/public"; + + $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch)); + + if (!$relais) { + $addr = "relay@".str_replace("http://", "", normalise_link($server)); + + $r = q("INSERT INTO `contact` (`uid`, `created`, `name`, `nick`, `addr`, `url`, `nurl`, `batch`, `network`, `rel`, `blocked`, `pending`, `writable`, `name-date`, `uri-date`, `avatar-date`) + VALUES (0, '%s', '%s', 'relay', '%s', '%s', '%s', '%s', '%s', %d, 0, 0, 1, '%s', '%s', '%s')", + datetime_convert(), + dbesc($addr), + dbesc($addr), + dbesc($server), + dbesc(normalise_link($server)), + dbesc($batch), + dbesc(NETWORK_DIASPORA), + intval(CONTACT_IS_FOLLOWER), + dbesc(datetime_convert()), + dbesc(datetime_convert()), + dbesc(datetime_convert()) + ); + + $relais = q("SELECT `batch`, `id`, `name`,`network` FROM `contact` WHERE `uid` = 0 AND `batch` = '%s' LIMIT 1", dbesc($batch)); + if ($relais) + $relay[] = $relais[0]; + } else + $relay[] = $relais[0]; + } + + return $relay; +} diff --git a/include/directory.php b/include/directory.php index aed700fa8..85476bd5f 100644 --- a/include/directory.php +++ b/include/directory.php @@ -7,7 +7,7 @@ function directory_run(&$argv, &$argc){ if(is_null($a)) { $a = new App; } - + if(is_null($db)) { @include(".htconfig.php"); require_once("include/dba.php"); @@ -29,11 +29,13 @@ function directory_run(&$argv, &$argc){ $a->set_baseurl(get_config('system','url')); - $dir = get_config('system','directory_submit_url'); + $dir = get_config('system','directory'); if(! strlen($dir)) return; + $dir .= "/submit"; + $arr = array('url' => $argv[1]); call_hooks('globaldir_update', $arr); diff --git a/include/discover_poco.php b/include/discover_poco.php new file mode 100644 index 000000000..79958a884 --- /dev/null +++ b/include/discover_poco.php @@ -0,0 +1,192 @@ + $maxsysload) { + logger('system: load ' . $load[0] . ' too high. discover_poco deferred to next scheduled run.'); + return; + } + } + + if(($argc > 2) && ($argv[1] == "dirsearch")) { + $search = urldecode($argv[2]); + $mode = 1; + } elseif(($argc == 2) && ($argv[1] == "checkcontact")) { + $mode = 2; + } elseif ($argc == 1) { + $search = ""; + $mode = 0; + } else + die("Unknown or missing parameter ".$argv[1]."\n"); + + $lockpath = get_lockpath(); + if ($lockpath != '') { + $pidfile = new pidfile($lockpath, 'discover_poco'.$mode.urlencode($search)); + if($pidfile->is_already_running()) { + logger("discover_poco: Already running"); + if ($pidfile->running_time() > 19*60) { + $pidfile->kill(); + logger("discover_poco: killed stale process"); + // Calling a new instance + if ($mode == 0) + proc_run('php','include/discover_poco.php'); + } + exit; + } + } + + $a->set_baseurl(get_config('system','url')); + + load_hooks(); + + logger('start '.$search); + + if (($mode == 2) AND get_config('system','poco_completion')) + discover_users(); + elseif (($mode == 1) AND ($search != "") and get_config('system','poco_local_search')) + discover_directory($search); + elseif (($mode == 0) AND ($search == "") and (get_config('system','poco_discovery') > 0)) + poco_discover(); + + logger('end '.$search); + + return; +} + +function discover_users() { + logger("Discover users", LOGGER_DEBUG); + + $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url` FROM `gcontact` + WHERE `last_contact` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND + `last_failure` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND + `network` IN ('%s', '%s', '%s', '%s', '') ORDER BY rand()", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), dbesc(NETWORK_FEED)); + + if (!$users) + return; + + $checked = 0; + + foreach ($users AS $user) { + + $urlparts = parse_url($user["url"]); + if (!isset($urlparts["scheme"])) { + q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'", + dbesc(NETWORK_PHANTOM), dbesc(normalise_link($user["url"]))); + continue; + } + + if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com", + "identi.ca", "alpha.app.net"))) { + $networks = array("www.facebook.com" => NETWORK_FACEBOOK, + "facebook.com" => NETWORK_FACEBOOK, + "twitter.com" => NETWORK_TWITTER, + "identi.ca" => NETWORK_PUMPIO, + "alpha.app.net" => NETWORK_APPNET); + + q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'", + dbesc($networks[$urlparts["host"]]), dbesc(normalise_link($user["url"]))); + continue; + } + + if ($user["server_url"] != "") + $server_url = $user["server_url"]; + else + $server_url = poco_detect_server($user["url"]); + + if (poco_check_server($server_url, $gcontacts[0]["network"])) { + logger('Check user '.$user["url"]); + poco_last_updated($user["url"], true); + + if (++$checked > 100) + return; + } else + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($user["url"]))); + } +} + +function discover_directory($search) { + + $data = Cache::get("dirsearch:".$search); + if (!is_null($data)){ + // Only search for the same item every 24 hours + if (time() < $data + (60 * 60 * 24)) { + logger("Already searched for ".$search." in the last 24 hours", LOGGER_DEBUG); + return; + } + } + + $x = fetch_url(get_server()."/lsearch?p=1&n=500&search=".urlencode($search)); + $j = json_decode($x); + + if(count($j->results)) + foreach($j->results as $jj) { + // Check if the contact already exists + $exists = q("SELECT `id`, `last_contact`, `last_failure`, `updated` FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($jj->url)); + if ($exists) { + logger("Profile ".$jj->url." already exists (".$search.")", LOGGER_DEBUG); + + if (($exists[0]["last_contact"] < $exists[0]["last_failure"]) AND + ($exists[0]["updated"] < $exists[0]["last_failure"])) + continue; + + // Update the contact + poco_last_updated($jj->url); + continue; + } + + // Harcoded paths aren't so good. But in this case it is okay. + // First: We only will get Friendica contacts (which always are using this url schema) + // Second: There will be no further problems if we are doing a mistake + $server_url = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $jj->url); + if ($server_url != $jj->url) + if (!poco_check_server($server_url)) { + logger("Friendica server ".$server_url." doesn't answer.", LOGGER_DEBUG); + continue; + } + logger("Friendica server ".$server_url." seems to be okay.", LOGGER_DEBUG); + + logger("Check if profile ".$jj->url." is reachable (".$search.")", LOGGER_DEBUG); + $data = probe_url($jj->url); + if ($data["network"] == NETWORK_DFRN) { + logger("Add profile ".$jj->url." to local directory (".$search.")", LOGGER_DEBUG); + poco_check($data["url"], $data["name"], $data["network"], $data["photo"], "", "", "", $jj->tags, $data["addr"], "", 0); + } + } + Cache::set("dirsearch:".$search, time(), CACHE_DAY); +} + +if (array_search(__file__,get_included_files())===0){ + discover_poco_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); +} diff --git a/include/dsprphotoq.php b/include/dsprphotoq.php index 7e252cd84..0d8088d4b 100644 --- a/include/dsprphotoq.php +++ b/include/dsprphotoq.php @@ -28,9 +28,14 @@ function dsprphotoq_run($argv, $argc){ foreach($dphotos as $dphoto) { - $r = q("SELECT * FROM user WHERE uid = %d", - intval($dphoto['uid']) - ); + $r = array(); + + if ($dphoto['uid'] == 0) + $r[0] = array("uid" => 0, "page-flags" => PAGE_FREELOVE); + else + $r = q("SELECT * FROM user WHERE uid = %d", + intval($dphoto['uid'])); + if(!$r) { logger("diaspora photo queue: user " . $dphoto['uid'] . " not found"); return; diff --git a/include/follow.php b/include/follow.php index 287a38b6b..217b9d07b 100644 --- a/include/follow.php +++ b/include/follow.php @@ -1,5 +1,48 @@ $val) { + if (isset($r[0][$key]) AND ($r[0][$key] != "") AND ($val == "")) + $ret[$key] = $r[0][$key]; + + if (isset($r[0][$key]) AND ($ret[$key] != $r[0][$key])) + $update = true; + } + + if (!$update) + return; + + q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s' WHERE `id` = %d", + dbesc($ret['url']), + dbesc(normalise_link($ret['url'])), + dbesc($ret['addr']), + dbesc($ret['alias']), + dbesc($ret['batch']), + dbesc($ret['notify']), + dbesc($ret['poll']), + dbesc($ret['poco']), + intval($id) + ); +} // // Takes a $uid and a url/handle and adds a new contact @@ -120,12 +163,18 @@ 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' AND `network` = '%s' LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` IN ('%s', '%s') AND `network` = '%s' LIMIT 1", intval($uid), dbesc($ret['poll']), + dbesc(normalise_link($ret['poll'])), dbesc($ret['network']) ); + if(!count($r)) + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` = '%s' LIMIT 1", + intval($uid), dbesc(normalise_link($url)), dbesc($ret['network']) + ); + if(count($r)) { // update contact if($r[0]['rel'] == CONTACT_IS_FOLLOWER || ($network === NETWORK_DIASPORA && $r[0]['rel'] == CONTACT_IS_SHARING)) { @@ -136,8 +185,7 @@ function new_contact($uid,$url,$interactive = false) { intval($uid) ); } - } - else { + } else { // check service class limits @@ -241,7 +289,7 @@ function new_contact($uid,$url,$interactive = false) { // pull feed and consume it, which should subscribe to the hub. - proc_run('php',"include/poller.php","$contact_id"); + proc_run('php',"include/onepoll.php","$contact_id", "force"); // create a follow slap @@ -252,7 +300,7 @@ function new_contact($uid,$url,$interactive = false) { '$photo' => $a->contact['photo'], '$thumb' => $a->contact['thumb'], '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME), - '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':follow:' . random_string(), + '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':follow:' . get_guid(32), '$title' => '', '$type' => 'text', '$content' => t('following'), diff --git a/include/group.php b/include/group.php index bbfac7ac1..b7e1963bf 100644 --- a/include/group.php +++ b/include/group.php @@ -263,8 +263,8 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0 ); } } - - + + $tpl = get_markup_template("group_side.tpl"); $o = replace_macros($tpl, array( '$title' => t('Groups'), @@ -276,8 +276,8 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0 '$groups' => $groups, '$add' => t('add'), )); - - + + return $o; } diff --git a/include/html2bbcode.php b/include/html2bbcode.php index d2699460e..10a2fd13e 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -90,12 +90,18 @@ function html2bbcode($message) $message = str_replace("\r", "", $message); + $message = preg_replace_callback("|
    ([^<]*)
    |ism", function($m) { + return "".str_replace("\n","
    \n",$m[1]). "
    "; + }, $message); + $message = str_replace(array( "
  • ", - "

  • "), + "

    ", + ), array( "
  • ", - "
  • "), + "", + ), $message); // remove namespaces @@ -187,6 +193,7 @@ function html2bbcode($message) node2bbcode($doc, 'span', array(), "", ""); node2bbcode($doc, 'pre', array(), "", ""); + node2bbcode($doc, 'div', array(), "\r", "\r"); node2bbcode($doc, 'p', array(), "\n", "\n"); @@ -230,6 +237,7 @@ function html2bbcode($message) node2bbcode($doc, 'iframe', array('src'=>'/(.+)/'), '[iframe]$1', '[/iframe]'); node2bbcode($doc, 'code', array(), '[code]', '[/code]'); + node2bbcode($doc, 'key', array(), '[code]', '[/code]'); $message = $doc->saveHTML(); diff --git a/include/identity.php b/include/identity.php index bf5d96927..0fba0c592 100644 --- a/include/identity.php +++ b/include/identity.php @@ -175,7 +175,7 @@ if(! function_exists('profile_sidebar')) { if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) { require_once('include/contact_selectors.php'); if ($profile['url'] != "") - $profile['network_name'] = ''.network_to_name($profile['network']).""; + $profile['network_name'] = ''.network_to_name($profile['network'], $profile['url']).""; else $profile['network_name'] = network_to_name($profile['network']); } else @@ -285,6 +285,7 @@ if(! function_exists('profile_sidebar')) { $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname)))); $diaspora = array( + 'guid' => $profile['guid'], 'podloc' => $a->get_baseurl(), 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ), 'nickname' => $profile['nickname'], @@ -634,6 +635,7 @@ if(! function_exists('profile_tabs')){ 'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''), 'title' => t('Status Messages and Posts'), 'id' => 'status-tab', + 'accesskey' => 'm', ), array( 'label' => t('Profile'), @@ -641,6 +643,7 @@ if(! function_exists('profile_tabs')){ 'sel' => ((isset($tab) && $tab=='profile')?'active':''), 'title' => t('Profile Details'), 'id' => 'profile-tab', + 'accesskey' => 'r', ), array( 'label' => t('Photos'), @@ -648,6 +651,7 @@ if(! function_exists('profile_tabs')){ 'sel' => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''), 'title' => t('Photo Albums'), 'id' => 'photo-tab', + 'accesskey' => 'h', ), array( 'label' => t('Videos'), @@ -655,6 +659,7 @@ if(! function_exists('profile_tabs')){ 'sel' => ((!isset($tab)&&$a->argv[0]=='videos')?'active':''), 'title' => t('Videos'), 'id' => 'video-tab', + 'accesskey' => 'v', ), ); @@ -665,6 +670,7 @@ if(! function_exists('profile_tabs')){ 'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''), 'title' => t('Events and Calendar'), 'id' => 'events-tab', + 'accesskey' => 'e', ); $tabs[] = array( 'label' => t('Personal Notes'), @@ -672,6 +678,7 @@ if(! function_exists('profile_tabs')){ 'sel' =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''), 'title' => t('Only You Can See This'), 'id' => 'notes-tab', + 'accesskey' => 't', ); } diff --git a/include/items.php b/include/items.php index 45d25e379..637826757 100644 --- a/include/items.php +++ b/include/items.php @@ -969,7 +969,7 @@ function query_page_info($url, $no_photos = false, $photo = "", $keywords = fals $data = Cache::get("parse_url:".$url); if (is_null($data)){ $data = parseurl_getsiteinfo($url, true); - Cache::set("parse_url:".$url,serialize($data)); + Cache::set("parse_url:".$url,serialize($data), CACHE_DAY); } else $data = unserialize($data); @@ -1209,8 +1209,14 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa } } + if ($notify) + $guid_prefix = ""; + else + $guid_prefix = $arr['network']; + $arr['wall'] = ((x($arr,'wall')) ? intval($arr['wall']) : 0); - $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : random_string()); + $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(32, $guid_prefix)); + $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : $arr['guid']); $arr['extid'] = ((x($arr,'extid')) ? notags(trim($arr['extid'])) : ''); $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : ''); $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : ''); @@ -1248,7 +1254,6 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['app'] = ((x($arr,'app')) ? notags(trim($arr['app'])) : ''); $arr['origin'] = ((x($arr,'origin')) ? intval($arr['origin']) : 0 ); $arr['network'] = ((x($arr,'network')) ? trim($arr['network']) : ''); - $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(32, $arr['network'])); $arr['postopts'] = ((x($arr,'postopts')) ? trim($arr['postopts']) : ''); $arr['resource-id'] = ((x($arr,'resource-id')) ? trim($arr['resource-id']) : ''); $arr['event-id'] = ((x($arr,'event-id')) ? intval($arr['event-id']) : 0 ); @@ -1423,7 +1428,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa // Fill the cache field put_item_in_cache($arr); - call_hooks('post_remote',$arr); + if ($notify) + call_hooks('post_local',$arr); + else + call_hooks('post_remote',$arr); if(x($arr,'cancel')) { logger('item_store: post cancelled by plugin.'); @@ -1569,7 +1577,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $r = q('SELECT * FROM `item` WHERE id = %d', intval($current_post)); if (count($r) == 1) { - call_hooks('post_remote_end', $r[0]); + if ($notify) + call_hooks('post_local_end', $r[0]); + else + call_hooks('post_remote_end', $r[0]); } else logger('item_store: new item not found in DB, id ' . $current_post); } @@ -1986,13 +1997,14 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { if($contact['duplex'] && $contact['issued-id']) $idtosend = '1:' . $orig_id; - + $rino = get_config('system','rino_encrypt'); $rino = intval($rino); + // use RINO1 if mcrypt isn't installed and RINO2 was selected + if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1; - + logger("Local rino version: ". $rino, LOGGER_DEBUG); - $ssl_val = intval(get_config('system','ssl_policy')); $ssl_policy = ''; @@ -2043,6 +2055,8 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { $rino_remote_version = intval($res->rino); $page = (($owner['page-flags'] == PAGE_COMMUNITY) ? 1 : 0); + logger("Remote rino version: ".$rino_remote_version." for ".$contact["url"], LOGGER_DEBUG); + if($owner['page-flags'] == PAGE_PRVGROUP) $page = 2; @@ -2120,26 +2134,26 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { return -1; } catch (CannotPerformOperation $ex) { logger('Cannot safely create a key'); - return -1; + return -1; } try { $data = Crypto::encrypt($postvars['data'], $key); } catch (CryptoTestFailed $ex) { logger('Cannot safely perform encryption'); - return -1; + return -1; } catch (CannotPerformOperation $ex) { logger('Cannot safely perform encryption'); - return -1; + return -1; } break; default: logger("rino: invalid requested verision '$rino_remote_version'"); return -1; } - + $postvars['rino'] = $rino_remote_version; $postvars['data'] = bin2hex($data); - + #logger('rino: sent key = ' . $key, LOGGER_DEBUG); @@ -2167,7 +2181,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) { $postvars['key'] = bin2hex($postvars['key']); } - + logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA); @@ -2968,7 +2982,7 @@ function item_is_remote_self($contact, &$datarray) { if ($contact['network'] != NETWORK_FEED) { $datarray["guid"] = get_guid(32); unset($datarray["plink"]); - $datarray["uri"] = item_new_uri($a->get_hostname(),$contact['uid']); + $datarray["uri"] = item_new_uri($a->get_hostname(),$contact['uid'], $datarray["guid"]); $datarray["parent-uri"] = $datarray["uri"]; $datarray["extid"] = $contact['network']; $urlpart = parse_url($datarray2['author-link']); @@ -2977,9 +2991,6 @@ function item_is_remote_self($contact, &$datarray) { $datarray['private'] = 0; } - //if (!isset($datarray["app"]) OR ($datarray["app"] == "")) - // $datarray["app"] = network_to_name($contact['network']); - if ($contact['network'] != NETWORK_FEED) { // Store the original post $r = item_store($datarray2, false, false); @@ -4159,9 +4170,12 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) { $name = notags(trim($datarray['author-name'])); $photo = notags(trim($datarray['author-avatar'])); - $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor'); - if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']) - $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']; + if (is_object($item)) { + $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor'); + if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']) + $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']; + } else + $nick = $item; if(is_array($contact)) { if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING) @@ -4299,7 +4313,7 @@ function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') { logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token); - if(! strlen($contact['hub-verify'])) { + if(!strlen($contact['hub-verify']) OR ($contact['hub-verify'] != $verify_token)) { $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d", dbesc($verify_token), intval($contact['id']) diff --git a/include/message.php b/include/message.php index 07e90fa2d..0f4b53c62 100644 --- a/include/message.php +++ b/include/message.php @@ -1,16 +1,16 @@ get_baseurl() . ':' . local_user() . ':' . $hash ; + $guid = get_guid(32); + $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $guid; $convid = 0; $reply = false; @@ -43,20 +43,21 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){ ); if(count($r)) $convid = $r[0]['convid']; - } + } if(! $convid) { // create a new conversation - $conv_guid = get_guid(); - $recip_host = substr($contact[0]['url'],strpos($contact[0]['url'],'://')+3); $recip_host = substr($recip_host,0,strpos($recip_host,'/')); $recip_handle = (($contact[0]['addr']) ? $contact[0]['addr'] : $contact[0]['nick'] . '@' . $recip_host); $sender_handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3); + $conv_guid = get_guid(32); + $convuri = $recip_handle.':'.$conv_guid; + $handles = $recip_handle . ';' . $sender_handle; $r = q("insert into conv (uid,guid,creator,created,updated,subject,recips) values(%d, '%s', '%s', '%s', '%s', '%s', '%s') ", @@ -83,15 +84,15 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){ } if(! strlen($replyto)) { - $replyto = $uri; + $replyto = $convuri; } - $r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`, + $r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`, `contact-id`, `title`, `body`, `seen`, `reply`, `replied`, `uri`, `parent-uri`, `created`) VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s' )", intval(local_user()), - dbesc(get_guid()), + dbesc($guid), intval($convid), dbesc($me[0]['name']), dbesc($me[0]['thumb']), @@ -117,7 +118,7 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){ /** * - * When a photo was uploaded into the message using the (profile wall) ajax + * When a photo was uploaded into the message using the (profile wall) ajax * uploader, The permissions are initially set to disallow anybody but the * owner from seeing it. This is because the permissions may not yet have been * set for the post. If it's private, the photo permissions should be set @@ -143,11 +144,11 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){ dbesc($image_uri), dbesc( t('Wall Photos')), intval(local_user()) - ); + ); } } } - + if($post_id) { proc_run('php',"include/notifier.php","mail","$post_id"); return intval($post_id); @@ -161,18 +162,18 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){ -function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){ +function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){ $a = get_app(); if(! $recipient) return -1; - + if(! strlen($subject)) $subject = t('[no subject]'); - $hash = random_string(); - $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $hash ; + $guid = get_guid(32); + $uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $guid; $convid = 0; $reply = false; @@ -184,7 +185,7 @@ function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){ if(! $me['name']) return -2; - $conv_guid = get_guid(); + $conv_guid = get_guid(32); $recip_handle = $recipient['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3); @@ -217,11 +218,11 @@ function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){ return -4; } - $r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`, + $r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`, `contact-id`, `title`, `body`, `seen`, `reply`, `replied`, `uri`, `parent-uri`, `created`, `unknown`) VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s', %d )", intval($recipient['uid']), - dbesc(get_guid()), + dbesc($guid), intval($convid), dbesc($me['name']), dbesc($me['photo']), diff --git a/include/nav.php b/include/nav.php index 3d27be13b..935d08f52 100644 --- a/include/nav.php +++ b/include/nav.php @@ -26,7 +26,7 @@ function nav(&$a) { $tpl = get_markup_template('nav.tpl'); $a->page['nav'] .= replace_macros($tpl, array( - '$baseurl' => $a->get_baseurl(), + '$baseurl' => $a->get_baseurl(), '$langselector' => lang_selector(), '$sitelocation' => $nav_info['sitelocation'], '$nav' => $nav_info['nav'], @@ -118,10 +118,18 @@ function nav_info(&$a) { $nav['search'] = array('search', t('Search'), "", t('Search site content')); + $nav['searchoption'] = array( + t("Full Text"), + t("Tags"), + t("Contacts")); + + if (get_config('system','poco_local_search')) + $nav['searchoption'][] = t("Forums"); + $gdirpath = 'directory'; if(strlen(get_config('system','singleuser'))) { - $gdir = dirname(get_config('system','directory_submit_url')); + $gdir = get_config('system','directory'); if(strlen($gdir)) $gdirpath = $gdir; } diff --git a/include/notifier.php b/include/notifier.php index 24dc63d69..002b3c8d7 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -3,6 +3,7 @@ require_once("boot.php"); require_once('include/queue_fn.php'); require_once('include/html2plain.php'); require_once("include/Scrape.php"); +require_once('include/diaspora.php'); /* * This file was at one time responsible for doing all deliveries, but this caused @@ -294,7 +295,7 @@ function notifier_run(&$argv, &$argc){ $relay_to_owner = false; if($relay_to_owner) { - logger('notifier: followup', LOGGER_DEBUG); + logger('notifier: followup '.$target_item["guid"], LOGGER_DEBUG); // local followup to remote post $followup = true; $public_message = false; // not public @@ -330,6 +331,8 @@ function notifier_run(&$argv, &$argc){ } else { $followup = false; + logger('Distributing directly '.$target_item["guid"], LOGGER_DEBUG); + // don't send deletions onward for other people's stuff if($target_item['deleted'] && (! intval($target_item['wall']))) { @@ -377,7 +380,7 @@ function notifier_run(&$argv, &$argc){ } if (count($url_recipients)) - logger('notifier: url_recipients ' . print_r($url_recipients,true)); + logger('notifier: '.$target_item["guid"].' url_recipients ' . print_r($url_recipients,true)); $conversants = array_unique($conversants); @@ -393,6 +396,8 @@ function notifier_run(&$argv, &$argc){ // We have not only to look at the parent, since it could be a Friendica thread. if (($thr_parent AND ($thr_parent[0]['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) { + logger('Some parent is OStatus for '.$target_item["guid"], LOGGER_DEBUG); + // Send a salmon notification to every person we mentioned in the post $arr = explode(',',$target_item['tag']); foreach($arr as $x) { @@ -406,9 +411,13 @@ function notifier_run(&$argv, &$argc){ } } } - } - $r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0"); + // It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora + $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."')"; + } else + $sql_extra = ""; + + $r = q("SELECT * FROM `contact` WHERE `id` IN ($conversant_str) AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0".$sql_extra); if(count($r)) $contacts = $r; @@ -645,7 +654,7 @@ function notifier_run(&$argv, &$argc){ if($contact['self']) continue; - logger("Deliver to ".$contact['url'], LOGGER_DEBUG); + logger("Deliver ".$target_item["guid"]." to ".$contact['url'], LOGGER_DEBUG); // potentially more than one recipient. Start a new process and space them out a bit. // we will deliver single recipient types of message and email recipients here. @@ -870,8 +879,6 @@ function notifier_run(&$argv, &$argc){ } break; case NETWORK_DIASPORA: - require_once('include/diaspora.php'); - if(get_config('system','dfrn_only') || (! get_config('system','diaspora_enabled'))) break; @@ -954,6 +961,11 @@ function notifier_run(&$argv, &$argc){ if($public_message) { + if (!$followup) + $r0 = diaspora_fetch_relay(); + else + $r0 = array(); + $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `rel` != %d group by `batch` ORDER BY rand() ", dbesc(NETWORK_DIASPORA), @@ -970,7 +982,7 @@ function notifier_run(&$argv, &$argc){ intval(CONTACT_IS_SHARING) ); - $r = array_merge($r2,$r1); + $r = array_merge($r2,$r1,$r0); if(count($r)) { logger('pubdeliver: ' . print_r($r,true), LOGGER_DEBUG); diff --git a/include/oembed.php b/include/oembed.php index b32cb512b..d4d7ce05e 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -56,25 +56,21 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){ if ($txt==false || $txt==""){ $embedly = get_config("system", "embedly"); - if ($embedly == "") { - // try oohembed service - $ourl = "http://oohembed.com/oohembed/?url=".urlencode($embedurl).'&maxwidth=' . $a->videowidth; - $txt = fetch_url($ourl); - } else { + if ($embedly != "") { // try embedly service $ourl = "https://api.embed.ly/1/oembed?key=".$embedly."&url=".urlencode($embedurl); $txt = fetch_url($ourl); - } - logger("oembed_fetch_url: ".$txt, LOGGER_DEBUG); + logger("oembed_fetch_url: ".$txt, LOGGER_DEBUG); + } } $txt=trim($txt); - if ($txt[0]!="{") $txt='{"type":"error"}'; - - //save in cache - Cache::set($a->videowidth . $embedurl,$txt); + if ($txt[0]!="{") + $txt='{"type":"error"}'; + else //save in cache + Cache::set($a->videowidth . $embedurl,$txt, CACHE_DAY); } $j = json_decode($txt); diff --git a/include/onepoll.php b/include/onepoll.php index 7b93a9a2f..1fc861afa 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -1,6 +1,7 @@ 1) && (intval($argv[1]))) $contact_id = intval($argv[1]); + if(($argc > 2) && ($argv[2] == "force")) + $force = true; + if(! $contact_id) { logger('onepoll: no contact'); return; @@ -78,24 +82,58 @@ function onepoll_run(&$argv, &$argc){ $contacts = q("SELECT `contact`.* FROM `contact` WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != '' - AND NOT `network` IN ( '%s', '%s', '%s' ) + AND NOT `network` IN ( '%s', '%s' ) AND `contact`.`id` = %d 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), - dbesc(NETWORK_DIASPORA), dbesc(NETWORK_FACEBOOK), dbesc(NETWORK_PUMPIO), intval($contact_id) ); - if(! count($contacts)) { + if(! count($contacts)) return; - } $contact = $contacts[0]; + // load current friends if possible. + if (($contact['poco'] != "") AND ($contact['success_update'] > $contact['failure_update'])) { + $r = q("SELECT count(*) as total from glink + where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY", + intval($contact['id']) + ); + if (count($r)) + if (!$r[0]['total']) + poco_load($contact['id'],$importer_uid,0,$contact['poco']); + } + + // To-Do: + // - Check why we don't poll the Diaspora feed at the moment (some guid problem in the items?) + // - Check whether this is possible with Redmatrix + if ($contact["network"] == NETWORK_DIASPORA) { + if (poco_do_update($contact["created"], $contact["last-item"], $contact["failure_update"], $contact["success_update"])) { + $last_updated = poco_last_updated($contact["url"]); + $updated = datetime_convert(); + if ($last_updated) { + q("UPDATE `contact` SET `last-item` = '%s', `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d", + dbesc($last_updated), + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + } else { + q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + } + } + return; + } + $xml = false; $t = $contact['last-update']; @@ -129,6 +167,10 @@ function onepoll_run(&$argv, &$argc){ : datetime_convert('UTC','UTC',$contact['last-update'], ATOM_TIME) ); + // Update the contact entry + if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) + update_contact($contact["id"]); + if($contact['network'] === NETWORK_DFRN) { @@ -168,7 +210,8 @@ function onepoll_run(&$argv, &$argc){ mark_for_death($contact); // set the last-update so we don't keep polling - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); @@ -181,7 +224,8 @@ function onepoll_run(&$argv, &$argc){ mark_for_death($contact); - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); @@ -198,7 +242,8 @@ function onepoll_run(&$argv, &$argc){ // set the last-update so we don't keep polling - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); @@ -243,8 +288,8 @@ function onepoll_run(&$argv, &$argc){ $final_dfrn_id = substr($final_dfrn_id,2); if($final_dfrn_id != $orig_id) { - logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id); - // did not decode properly - cannot trust this site + logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id); + // did not decode properly - cannot trust this site return; } @@ -255,7 +300,7 @@ function onepoll_run(&$argv, &$argc){ $xml = post_url($contact['poll'],$postvars); } - elseif(($contact['network'] === NETWORK_OSTATUS) + elseif(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_FEED) ) { @@ -265,7 +310,8 @@ function onepoll_run(&$argv, &$argc){ $stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0); - if($contact['network'] === NETWORK_OSTATUS && get_pconfig($importer_uid,'system','ostatus_autofriend')) + // Contacts from OStatus are always writable + if($contact['network'] === NETWORK_OSTATUS) $stat_writeable = 1; if($stat_writeable != $contact['writable']) { @@ -544,7 +590,8 @@ function onepoll_run(&$argv, &$argc){ logger('poller: received xml : ' . $xml, LOGGER_DATA); if(! strstr($xml,'<')) { logger('poller: post_handshake: response from ' . $url . ' did not contain XML.'); - $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), dbesc(datetime_convert()), intval($contact['id']) ); @@ -552,8 +599,9 @@ function onepoll_run(&$argv, &$argc){ } - consume_feed($xml,$importer,$contact,$hub,1,1); + logger("Consume feed of contact ".$contact['id']); + consume_feed($xml,$importer,$contact,$hub,1,1); // do it twice. Ensures that children of parents which may be later in the stream aren't tossed @@ -566,6 +614,11 @@ function onepoll_run(&$argv, &$argc){ if(($contact['network'] === NETWORK_OSTATUS || $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify'])) $hub_update = true; + if ($force) + $hub_update = true; + + logger("Contact ".$contact['id']." returned hub: ".$hub." Network: ".$contact['network']." Relation: ".$contact['rel']." Update: ".$hub_update); + if((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) { logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']); $hubs = explode(',', $hub); @@ -578,29 +631,38 @@ function onepoll_run(&$argv, &$argc){ } } } - } - $updated = datetime_convert(); + $updated = datetime_convert(); - $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d", - dbesc($updated), - dbesc($updated), - intval($contact['id']) - ); - - - // load current friends if possible. - - if($contact['poco']) { - $r = q("SELECT count(*) as total from glink - where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY", + $r = q("UPDATE `contact` SET `last-update` = '%s', `success_update` = '%s' WHERE `id` = %d", + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + + q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc($updated), + dbesc($contact['nurl']) + ); + + } elseif (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_FEED))) { + $updated = datetime_convert(); + + $r = q("UPDATE `contact` SET `last-update` = '%s', `failure_update` = '%s' WHERE `id` = %d", + dbesc($updated), + dbesc($updated), + intval($contact['id']) + ); + + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc($updated), + dbesc($contact['nurl']) + ); + } else { + $r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d", + dbesc($updated), intval($contact['id']) ); - } - if(count($r)) { - if(! $r[0]['total']) { - poco_load($contact['id'],$importer_uid,0,$contact['poco']); - } } return; diff --git a/include/ostatus.php b/include/ostatus.php index 782541847..d39059eb6 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -7,12 +7,64 @@ require_once("mod/share.php"); require_once("include/enotify.php"); require_once("include/socgraph.php"); require_once("include/Photo.php"); +require_once("include/Scrape.php"); +require_once("include/follow.php"); define('OSTATUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes define('OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS', 14400); // given in minutes -function ostatus_fetchauthor($xpath, $context, $importer, &$contact) { +function ostatus_check_follow_friends() { + $r = q("SELECT `uid`,`v` FROM `pconfig` WHERE `cat`='system' AND `k`='ostatus_legacy_contact' AND `v` != ''"); + + if (!$r) + return; + + foreach ($r AS $contact) { + ostatus_follow_friends($contact["uid"], $contact["v"]); + set_pconfig($contact["uid"], "system", "ostatus_legacy_contact", ""); + } +} + +// This function doesn't work reliable by now. +function ostatus_follow_friends($uid, $url) { + $contact = probe_url($url); + + if (!$contact) + return; + + $api = $contact["baseurl"]."/api/"; + + // Fetching friends + $data = z_fetch_url($api."statuses/friends.json?screen_name=".$contact["nick"]); + + if (!$data["success"]) + return; + + $friends = json_decode($data["body"]); + + foreach ($friends AS $friend) { + $url = $friend->statusnet_profile_url; + $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND + (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND + `network` != '%s' LIMIT 1", + intval($uid), dbesc(normalise_link($url)), + dbesc(normalise_link($url)), dbesc($url), dbesc(NETWORK_STATUSNET)); + if (!$r) { + $data = probe_url($friend->statusnet_profile_url); + if ($data["network"] == NETWORK_OSTATUS) { + $result = new_contact($uid,$friend->statusnet_profile_url); + if ($result["success"]) + logger($friend->name." ".$url." - success", LOGGER_DEBUG); + else + logger($friend->name." ".$url." - failed", LOGGER_DEBUG); + } else + logger($friend->name." ".$url." - not OStatus", LOGGER_DEBUG); + } + } +} + +function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) { $author = array(); $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue; @@ -63,7 +115,7 @@ function ostatus_fetchauthor($xpath, $context, $importer, &$contact) { $author["owner-link"] = $author["author-link"]; $author["owner-avatar"] = $author["author-avatar"]; - if ($r) { + if ($r AND !$onlyfetch) { // Update contact data $update_contact = ($r[0]['name-date'] < datetime_convert('','','now -12 hours')); if ($update_contact) { @@ -109,6 +161,34 @@ function ostatus_fetchauthor($xpath, $context, $importer, &$contact) { return($author); } +function ostatus_salmon_author($xml, $importer) { + $a = get_app(); + + if ($xml == "") + return; + + $doc = new DOMDocument(); + @$doc->loadXML($xml); + + $xpath = new DomXPath($doc); + $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom"); + $xpath->registerNamespace('thr', "http://purl.org/syndication/thread/1.0"); + $xpath->registerNamespace('georss', "http://www.georss.org/georss"); + $xpath->registerNamespace('activity', "http://activitystrea.ms/spec/1.0/"); + $xpath->registerNamespace('media', "http://purl.org/syndication/atommedia"); + $xpath->registerNamespace('poco', "http://portablecontacts.net/spec/1.0"); + $xpath->registerNamespace('ostatus', "http://ostatus.org/schema/1.0"); + $xpath->registerNamespace('statusnet', "http://status.net/schema/api/1/"); + + $entries = $xpath->query('/atom:entry'); + + foreach ($entries AS $entry) { + // fetch the author + $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, true); + return $author; + } +} + function ostatus_import($xml,$importer,&$contact, &$hub) { $a = get_app(); @@ -173,9 +253,15 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { // fetch the author if ($first_child == "feed") - $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact); + $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact, false); else - $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact); + $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false); + + $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue; + if ($value != "") + $nickname = $value; + else + $nickname = $author["author-name"]; $item = array_merge($header, $author); @@ -205,24 +291,45 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { // Delete a message if ($item["verb"] == "qvitter-delete-notice") { // ignore "Delete" messages (by now) + logger("Ignore delete message ".print_r($item, true)); continue; } if ($item["verb"] == ACTIVITY_JOIN) { // ignore "Join" messages + logger("Ignore join message ".print_r($item, true)); continue; } if ($item["verb"] == ACTIVITY_FOLLOW) { - // ignore "Follow" messages + new_follower($importer, $contact, $item, $nickname); + continue; + } + + if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") { + lose_follower($importer, $contact, $item, $dummy); continue; } if ($item["verb"] == ACTIVITY_FAVORITE) { - // ignore "Favorite" messages + $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue; + logger("Favorite ".$orig_uri." ".print_r($item, true)); + + $item["verb"] = ACTIVITY_LIKE; + $item["parent-uri"] = $orig_uri; + $item["gravity"] = GRAVITY_LIKE; + } + + if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") { + // Ignore "Unfavorite" message + logger("Ignore unfavorite message ".print_r($item, true)); continue; } + // http://activitystrea.ms/schema/1.0/rsvp-yes + if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE))) + logger("Unhandled verb ".$item["verb"]." ".print_r($item, true)); + $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue; $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue; $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue; @@ -366,7 +473,7 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue; $orig_contact = $contact; - $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact); + $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false); //if (!intval(get_config('system','wall-to-wall_share'))) { // $prefix = share_header($orig_author['author-name'], $orig_author['author-link'], $orig_author['author-avatar'], "", $orig_created, $orig_link); diff --git a/include/plaintext.php b/include/plaintext.php index c8cdfa57d..4f435fc6a 100644 --- a/include/plaintext.php +++ b/include/plaintext.php @@ -52,7 +52,7 @@ function get_attached_data($body) { if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures, PREG_SET_ORDER)) { if (count($pictures) == 1) { // Checking, if the link goes to a picture - $data = parseurl_getsiteinfo($pictures[0][1], true); + $data = parseurl_getsiteinfo_cached($pictures[0][1], true); if ($data["type"] == "photo") { $post["type"] = "photo"; if (isset($data["images"][0])) @@ -95,7 +95,7 @@ function get_attached_data($body) { } } elseif (isset($post["url"]) AND ($post["type"] == "video")) { require_once("mod/parse_url.php"); - $data = parseurl_getsiteinfo($post["url"], true); + $data = parseurl_getsiteinfo_cached($post["url"], true); if (isset($data["images"][0])) $post["image"] = $data["images"][0]["src"]; diff --git a/include/plugin.php b/include/plugin.php index f4861536c..5a4755c31 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -162,6 +162,8 @@ function call_hooks($name, &$data = null) { $a = get_app(); + #logger($name, LOGGER_ALL); + if((is_array($a->hooks)) && (array_key_exists($name,$a->hooks))) { foreach($a->hooks[$name] as $hook) { // Don't run a theme's hook if the user isn't using the theme @@ -171,6 +173,7 @@ function call_hooks($name, &$data = null) { @include_once($hook[0]); if(function_exists($hook[1])) { $func = $hook[1]; + //logger($name." => ".$hook[0].":".$func."()", LOGGER_DEBUG); $func($a,$data); } else { @@ -386,11 +389,11 @@ function install_theme($theme) { // check service_class restrictions. If there are no service_classes defined, everything is allowed. -// if $usage is supplied, we check against a maximum count and return true if the current usage is +// if $usage is supplied, we check against a maximum count and return true if the current usage is // less than the subscriber plan allows. Otherwise we return boolean true or false if the property -// is allowed (or not) in this subscriber plan. An unset property for this service plan means -// the property is allowed, so it is only necessary to provide negative properties for each plan, -// or what the subscriber is not allowed to do. +// is allowed (or not) in this subscriber plan. An unset property for this service plan means +// the property is allowed, so it is only necessary to provide negative properties for each plan, +// or what the subscriber is not allowed to do. function service_class_allows($uid,$property,$usage = false) { diff --git a/include/poller.php b/include/poller.php index d971d4f00..28dc0c0cd 100644 --- a/include/poller.php +++ b/include/poller.php @@ -36,6 +36,7 @@ function poller_run(&$argv, &$argc){ require_once('include/email.php'); require_once('include/socgraph.php'); require_once('include/pidfile.php'); + require_once('mod/nodeinfo.php'); load_config('config'); load_config('system'); @@ -82,6 +83,14 @@ function poller_run(&$argv, &$argc){ proc_run('php',"include/dsprphotoq.php"); + // run the process to discover global contacts in the background + + proc_run('php',"include/discover_poco.php"); + + // run the process to update locally stored global contacts in the background + + proc_run('php',"include/discover_poco.php", "checkcontact"); + // expire any expired accounts q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 @@ -109,6 +118,12 @@ function poller_run(&$argv, &$argc){ // Check every conversation check_conversations(false); + // Follow your friends from your legacy OStatus account + ostatus_check_follow_friends(); + + // update nodeinfo data + nodeinfo_cron(); + // To-Do: Regenerate usage statistics // q("ANALYZE TABLE `item`"); diff --git a/include/profile_update.php b/include/profile_update.php index 9da96442c..0fcf3617f 100644 --- a/include/profile_update.php +++ b/include/profile_update.php @@ -12,7 +12,7 @@ function profile_change() { return; // $url = $a->get_baseurl() . '/profile/' . $a->user['nickname']; -// if($url && strlen(get_config('system','directory_submit_url'))) +// if($url && strlen(get_config('system','directory'))) // proc_run('php',"include/directory.php","$url"); $recips = q("SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s' diff --git a/include/socgraph.php b/include/socgraph.php index 23db35cab..d380af434 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1,6 +1,15 @@ = %d OR `generation` = 0) AND `nurl` = '%s'", dbesc($name), @@ -249,6 +306,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca dbesc($profile_photo), dbesc($connect_url), dbesc($profile_url), + dbesc($server_url), dbesc($updated), dbesc($location), dbesc($about), @@ -260,14 +318,17 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca ); } } else { - q("INSERT INTO `gcontact` (`name`,`network`, `url`,`nurl`,`photo`,`connect`, `updated`, `location`, `about`, `keywords`, `gender`, `generation`) - VALUES ('%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s', %d)", + q("INSERT INTO `gcontact` (`name`, `nick`, `network`, `url`, `nurl`, `photo`, `connect`, `server_url`, `created`, `updated`, `location`, `about`, `keywords`, `gender`, `generation`) + VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)", dbesc($name), + dbesc($nick), dbesc($network), dbesc($profile_url), dbesc(normalise_link($profile_url)), dbesc($profile_photo), dbesc($connect_url), + dbesc($server_url), + dbesc(datetime_convert()), dbesc($updated), dbesc($location), dbesc($about), @@ -319,6 +380,576 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca return $gcid; } +function poco_reachable($profile, $server = "", $network = "", $force = false) { + + if ($server == "") + $server = poco_detect_server($profile); + + if ($server == "") + return true; + + return poco_check_server($server, $network, $force); +} + +function poco_detect_server($profile) { + + // Try to detect the server path based upon some known standard paths + $server_url = ""; + + if ($server_url == "") { + $friendica = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $profile); + if ($friendica != $profile) { + $server_url = $friendica; + $network = NETWORK_DFRN; + } + } + + if ($server_url == "") { + $diaspora = preg_replace("=(https?://)(.*)/u/(.*)=ism", "$1$2", $profile); + if ($diaspora != $profile) { + $server_url = $diaspora; + $network = NETWORK_DIASPORA; + } + } + + if ($server_url == "") { + $red = preg_replace("=(https?://)(.*)/channel/(.*)=ism", "$1$2", $profile); + if ($red != $profile) { + $server_url = $red; + $network = NETWORK_DIASPORA; + } + } + + return $server_url; +} + +function poco_alternate_ostatus_url($url) { + return(preg_match("=https?://.+/user/\d+=ism", $url, $matches)); +} + +function poco_last_updated($profile, $force = false) { + + $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", + dbesc(normalise_link($profile))); + + if ($gcontacts[0]["created"] == "0000-00-00 00:00:00") + q("UPDATE `gcontact` SET `created` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); + + if ($gcontacts[0]["server_url"] != "") + $server_url = $gcontacts[0]["server_url"]; + else + $server_url = poco_detect_server($profile); + + if ($server_url != "") { + if (!poco_check_server($server_url, $gcontacts[0]["network"], $force)) { + + if ($force) + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); + + return false; + } + + q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'", + dbesc($server_url), dbesc(normalise_link($profile))); + } + + if (in_array($gcontacts[0]["network"], array("", NETWORK_FEED))) { + $server = q("SELECT `network` FROM `gserver` WHERE `nurl` = '%s' AND `network` != ''", + dbesc(normalise_link($server_url))); + + if ($server) + q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'", + dbesc($server[0]["network"]), dbesc(normalise_link($profile))); + else + return; + } + + // noscrape is really fast so we don't cache the call. + if (($gcontacts[0]["server_url"] != "") AND ($gcontacts[0]["nick"] != "")) { + + // Use noscrape if possible + $server = q("SELECT `noscrape` FROM `gserver` WHERE `nurl` = '%s' AND `noscrape` != ''", dbesc(normalise_link($gcontacts[0]["server_url"]))); + + if ($server) { + $noscraperet = z_fetch_url($server[0]["noscrape"]."/".$gcontacts[0]["nick"]); + + if ($noscraperet["success"] AND ($noscraperet["body"] != "")) { + + $noscrape = json_decode($noscraperet["body"], true); + + if (($noscrape["fn"] != "") AND ($noscrape["fn"] != $gcontacts[0]["name"])) + q("UPDATE `gcontact` SET `name` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["fn"]), dbesc(normalise_link($profile))); + + if (($noscrape["photo"] != "") AND ($noscrape["photo"] != $gcontacts[0]["photo"])) + q("UPDATE `gcontact` SET `photo` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["photo"]), dbesc(normalise_link($profile))); + + if (($noscrape["updated"] != "") AND ($noscrape["updated"] != $gcontacts[0]["updated"])) + q("UPDATE `gcontact` SET `updated` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["updated"]), dbesc(normalise_link($profile))); + + if (($noscrape["gender"] != "") AND ($noscrape["gender"] != $gcontacts[0]["gender"])) + q("UPDATE `gcontact` SET `gender` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["gender"]), dbesc(normalise_link($profile))); + + if (($noscrape["pdesc"] != "") AND ($noscrape["pdesc"] != $gcontacts[0]["about"])) + q("UPDATE `gcontact` SET `about` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["pdesc"]), dbesc(normalise_link($profile))); + + if (($noscrape["about"] != "") AND ($noscrape["about"] != $gcontacts[0]["about"])) + q("UPDATE `gcontact` SET `about` = '%s' WHERE `nurl` = '%s'", + dbesc($noscrape["about"]), dbesc(normalise_link($profile))); + + if (isset($noscrape["comm"]) AND ($noscrape["comm"] != $gcontacts[0]["community"])) + q("UPDATE `gcontact` SET `community` = %d WHERE `nurl` = '%s'", + intval($noscrape["comm"]), dbesc(normalise_link($profile))); + + if (isset($noscrape["tags"])) + $keywords = implode(" ", $noscrape["tags"]); + else + $keywords = ""; + + if (($keywords != "") AND ($keywords != $gcontacts[0]["keywords"])) + q("UPDATE `gcontact` SET `keywords` = '%s' WHERE `nurl` = '%s'", + dbesc($keywords), dbesc(normalise_link($profile))); + + $location = $noscrape["locality"]; + + if ($noscrape["region"] != "") { + if ($location != "") + $location .= ", "; + + $location .= $noscrape["region"]; + } + + if ($noscrape["country-name"] != "") { + if ($location != "") + $location .= ", "; + + $location .= $noscrape["country-name"]; + } + + if (($location != "") AND ($location != $gcontacts[0]["location"])) + q("UPDATE `gcontact` SET `location` = '%s' WHERE `nurl` = '%s'", + dbesc($location), dbesc(normalise_link($profile))); + + // If we got data from noscrape then mark the contact as reachable + if (is_array($noscrape) AND count($noscrape)) + q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); + + return $noscrape["updated"]; + } + } + } + + // If we only can poll the feed, then we only do this once a while + if (!$force AND !poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) + return $gcontacts[0]["updated"]; + + $data = probe_url($profile); + + // Is the profile link the alternate OStatus link notation? (http://domain.tld/user/4711) + // Then check the other link and delete this one + if (($data["network"] == NETWORK_OSTATUS) AND poco_alternate_ostatus_url($profile) AND + (normalise_link($profile) == normalise_link($data["alias"])) AND + (normalise_link($profile) != normalise_link($data["url"]))) { + + // Delete the old entry + q("DELETE FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($profile))); + q("DELETE FROM `glink` WHERE `gcid` = %d", intval($gcontacts[0]["id"])); + + poco_check($data["url"], $data["name"], $data["network"], $data["photo"], $gcontacts[0]["about"], $gcontacts[0]["location"], + $gcontacts[0]["gender"], $gcontacts[0]["keywords"], $data["addr"], $gcontacts[0]["updated"], $gcontacts[0]["generation"]); + + poco_last_updated($data["url"], $force); + + return false; + } + + if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) { + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); + return false; + } + + if (($data["name"] != "") AND ($data["name"] != $gcontacts[0]["name"])) + q("UPDATE `gcontact` SET `name` = '%s' WHERE `nurl` = '%s'", + dbesc($data["name"]), dbesc(normalise_link($profile))); + + if (($data["nick"] != "") AND ($data["nick"] != $gcontacts[0]["nick"])) + q("UPDATE `gcontact` SET `nick` = '%s' WHERE `nurl` = '%s'", + dbesc($data["nick"]), dbesc(normalise_link($profile))); + + if (($data["addr"] != "") AND ($data["addr"] != $gcontacts[0]["connect"])) + q("UPDATE `gcontact` SET `connect` = '%s' WHERE `nurl` = '%s'", + dbesc($data["addr"]), dbesc(normalise_link($profile))); + + if (($data["photo"] != "") AND ($data["photo"] != $gcontacts[0]["photo"])) + q("UPDATE `gcontact` SET `photo` = '%s' WHERE `nurl` = '%s'", + dbesc($data["photo"]), dbesc(normalise_link($profile))); + + if (($data["baseurl"] != "") AND ($data["baseurl"] != $gcontacts[0]["server_url"])) + q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'", + dbesc($data["baseurl"]), dbesc(normalise_link($profile))); + + $feedret = z_fetch_url($data["poll"]); + + if (!$feedret["success"]) { + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($profile))); + return false; + } + + $doc = new DOMDocument(); + @$doc->loadXML($feedret["body"]); + + $xpath = new DomXPath($doc); + $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom"); + + $entries = $xpath->query('/atom:feed/atom:entry'); + + $last_updated = ""; + + foreach ($entries AS $entry) { + $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue; + $updated = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue; + + if ($last_updated < $published) + $last_updated = $published; + + if ($last_updated < $updated) + $last_updated = $updated; + } + + // Maybe there aren't any entries. Then check if it is a valid feed + if ($last_updated == "") + if ($xpath->query('/atom:feed')->length > 0) + $last_updated = "0000-00-00 00:00:00"; + + q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'", + dbesc($last_updated), dbesc(datetime_convert()), dbesc(normalise_link($profile))); + + if (($gcontacts[0]["generation"] == 0)) + q("UPDATE `gcontact` SET `generation` = 9 WHERE `nurl` = '%s'", + dbesc(normalise_link($profile))); + + return($last_updated); +} + +function poco_do_update($created, $updated, $last_failure, $last_contact) { + $now = strtotime(datetime_convert()); + + if ($updated > $last_contact) + $contact_time = strtotime($updated); + else + $contact_time = strtotime($last_contact); + + $failure_time = strtotime($last_failure); + $created_time = strtotime($created); + + // If there is no "created" time then use the current time + if ($created_time <= 0) + $created_time = $now; + + // If the last contact was less than 24 hours then don't update + if (($now - $contact_time) < (60 * 60 * 24)) + return false; + + // If the last failure was less than 24 hours then don't update + if (($now - $failure_time) < (60 * 60 * 24)) + return false; + + // If the last contact was less than a week ago and the last failure is older than a week then don't update + //if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time)) + // return false; + + // If the last contact time was more than a week ago and the contact was created more than a week ago, then only try once a week + if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $created_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7))) + return false; + + // If the last contact time was more than a month ago and the contact was created more than a month ago, then only try once a month + if ((($now - $contact_time) > (60 * 60 * 24 * 30)) AND (($now - $created_time) > (60 * 60 * 24 * 30)) AND (($now - $failure_time) < (60 * 60 * 24 * 30))) + return false; + + return true; +} + +function poco_to_boolean($val) { + if (($val == "true") OR ($val == 1)) + return(true); + if (($val == "false") OR ($val == 0)) + return(false); + + return ($val); +} + +function poco_check_server($server_url, $network = "", $force = false) { + + if ($server_url == "") + return false; + + $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url))); + if ($servers) { + + if ($servers[0]["created"] == "0000-00-00 00:00:00") + q("UPDATE `gserver` SET `created` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($server_url))); + + $poco = $servers[0]["poco"]; + $noscrape = $servers[0]["noscrape"]; + + if ($network == "") + $network = $servers[0]["network"]; + + $last_contact = $servers[0]["last_contact"]; + $last_failure = $servers[0]["last_failure"]; + $version = $servers[0]["version"]; + $platform = $servers[0]["platform"]; + $site_name = $servers[0]["site_name"]; + $info = $servers[0]["info"]; + $register_policy = $servers[0]["register_policy"]; + + if (!$force AND !poco_do_update($servers[0]["created"], "", $last_failure, $last_contact)) { + logger("Use cached data for server ".$server_url, LOGGER_DEBUG); + return ($last_contact >= $last_failure); + } + } else { + $poco = ""; + $noscrape = ""; + $version = ""; + $platform = ""; + $site_name = ""; + $info = ""; + $register_policy = -1; + + $last_contact = "0000-00-00 00:00:00"; + $last_failure = "0000-00-00 00:00:00"; + } + logger("Server ".$server_url." is outdated or unknown. Start discovery. Force: ".$force." Created: ".$servers[0]["created"]." Failure: ".$last_failure." Contact: ".$last_contact, LOGGER_DEBUG); + + $failure = false; + $orig_last_failure = $last_failure; + + // Check if the page is accessible via SSL. + $server_url = str_replace("http://", "https://", $server_url); + $serverret = z_fetch_url($server_url."/.well-known/host-meta"); + + // Maybe the page is unencrypted only? + $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0"); + if (!$serverret["success"] OR ($serverret["body"] == "") OR (@sizeof($xmlobj) == 0) OR !is_object($xmlobj)) { + $server_url = str_replace("https://", "http://", $server_url); + $serverret = z_fetch_url($server_url."/.well-known/host-meta"); + + $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0"); + } + + if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) { + $last_failure = datetime_convert(); + $failure = true; + } elseif ($network == NETWORK_DIASPORA) + $last_contact = datetime_convert(); + + if (!$failure) { + // Test for Diaspora + $serverret = z_fetch_url($server_url); + + $lines = explode("\n",$serverret["header"]); + if(count($lines)) + foreach($lines as $line) { + $line = trim($line); + if(stristr($line,'X-Diaspora-Version:')) { + $platform = "Diaspora"; + $version = trim(str_replace("X-Diaspora-Version:", "", $line)); + $version = trim(str_replace("x-diaspora-version:", "", $version)); + $network = NETWORK_DIASPORA; + } + } + } + + if (!$failure) { + // Test for Statusnet + // Will also return data for Friendica and GNU Social - but it will be overwritten later + // The "not implemented" is a special treatment for really, really old Friendica versions + $serverret = z_fetch_url($server_url."/api/statusnet/version.json"); + if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND ($serverret["body"] != '') AND (strlen($serverret["body"]) < 250)) { + $platform = "StatusNet"; + $version = trim($serverret["body"], '"'); + $network = NETWORK_OSTATUS; + } + + // Test for GNU Social + $serverret = z_fetch_url($server_url."/api/gnusocial/version.json"); + if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND ($serverret["body"] != '') AND (strlen($serverret["body"]) < 250)) { + $platform = "GNU Social"; + $version = trim($serverret["body"], '"'); + $network = NETWORK_OSTATUS; + } + + $serverret = z_fetch_url($server_url."/api/statusnet/config.json"); + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + + if (isset($data->site->server)) { + $last_contact = datetime_convert(); + + if (isset($data->site->hubzilla)) { + $platform = $data->site->hubzilla->PLATFORM_NAME; + $version = $data->site->hubzilla->RED_VERSION; + $network = NETWORK_DIASPORA; + } + if (isset($data->site->redmatrix)) { + if (isset($data->site->redmatrix->PLATFORM_NAME)) + $platform = $data->site->redmatrix->PLATFORM_NAME; + elseif (isset($data->site->redmatrix->RED_PLATFORM)) + $platform = $data->site->redmatrix->RED_PLATFORM; + + $version = $data->site->redmatrix->RED_VERSION; + $network = NETWORK_DIASPORA; + } + if (isset($data->site->friendica)) { + $platform = $data->site->friendica->FRIENDICA_PLATFORM; + $version = $data->site->friendica->FRIENDICA_VERSION; + $network = NETWORK_DFRN; + } + + $site_name = $data->site->name; + + $data->site->closed = poco_to_boolean($data->site->closed); + $data->site->private = poco_to_boolean($data->site->private); + $data->site->inviteonly = poco_to_boolean($data->site->inviteonly); + + if (!$data->site->closed AND !$data->site->private and $data->site->inviteonly) + $register_policy = REGISTER_APPROVE; + elseif (!$data->site->closed AND !$data->site->private) + $register_policy = REGISTER_OPEN; + else + $register_policy = REGISTER_CLOSED; + } + } + } + + // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix + if (!$failure) { + $serverret = z_fetch_url($server_url."/statistics.json"); + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + if ($version == "") + $version = $data->version; + + $site_name = $data->name; + + if (isset($data->network) AND ($platform == "")) + $platform = $data->network; + + if ($platform == "Diaspora") + $network = NETWORK_DIASPORA; + + if ($data->registrations_open) + $register_policy = REGISTER_OPEN; + else + $register_policy = REGISTER_CLOSED; + + if (isset($data->version)) + $last_contact = datetime_convert(); + } + } + + // Check for noscrape + // Friendica servers could be detected as OStatus servers + if (!$failure AND in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS))) { + $serverret = z_fetch_url($server_url."/friendica/json"); + + if (!$serverret["success"]) + $serverret = z_fetch_url($server_url."/friendika/json"); + + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + + if (isset($data->version)) { + $last_contact = datetime_convert(); + $network = NETWORK_DFRN; + + $noscrape = $data->no_scrape_url; + $version = $data->version; + $site_name = $data->site_name; + $info = $data->info; + $register_policy_str = $data->register_policy; + $platform = $data->platform; + + switch ($register_policy_str) { + case "REGISTER_CLOSED": + $register_policy = REGISTER_CLOSED; + break; + case "REGISTER_APPROVE": + $register_policy = REGISTER_APPROVE; + break; + case "REGISTER_OPEN": + $register_policy = REGISTER_OPEN; + break; + } + } + } + } + + // Look for poco + if (!$failure) { + $serverret = z_fetch_url($server_url."/poco"); + if ($serverret["success"]) { + $data = json_decode($serverret["body"]); + if (isset($data->totalResults)) { + $poco = $server_url."/poco"; + $last_contact = datetime_convert(); + } + } + } + + // Check again if the server exists + $servers = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url))); + + if ($servers) + q("UPDATE `gserver` SET `url` = '%s', `version` = '%s', `site_name` = '%s', `info` = '%s', `register_policy` = %d, `poco` = '%s', `noscrape` = '%s', + `network` = '%s', `platform` = '%s', `last_contact` = '%s', `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc($server_url), + dbesc($version), + dbesc($site_name), + dbesc($info), + intval($register_policy), + dbesc($poco), + dbesc($noscrape), + dbesc($network), + dbesc($platform), + dbesc($last_contact), + dbesc($last_failure), + dbesc(normalise_link($server_url)) + ); + else + q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `created`, `last_contact`, `last_failure`) + VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s')", + dbesc($server_url), + dbesc(normalise_link($server_url)), + dbesc($version), + dbesc($site_name), + dbesc($info), + intval($register_policy), + dbesc($poco), + dbesc($noscrape), + dbesc($network), + dbesc($platform), + dbesc(datetime_convert()), + dbesc($last_contact), + dbesc($last_failure), + dbesc(datetime_convert()) + ); + + logger("End discovery for server ".$server_url, LOGGER_DEBUG); + + return !$failure; +} + function poco_contact_from_body($body, $created, $cid, $uid) { preg_replace_callback("/\[share(.*?)\].*?\[\/share\]/ism", function ($match) use ($created, $cid, $uid){ @@ -327,20 +958,20 @@ function poco_contact_from_body($body, $created, $cid, $uid) { } function sub_poco_from_share($share, $created, $cid, $uid) { - $profile = ""; - preg_match("/profile='(.*?)'/ism", $share[1], $matches); - if ($matches[1] != "") - $profile = $matches[1]; + $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]; + 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, 3, $cid, $uid); + poco_check($profile, "", "", "", "", "", "", "", "", $created, 3, $cid, $uid); } function poco_store($item) { @@ -541,6 +1172,7 @@ function suggestion_query($uid, $start = 0, $limit = 80) { 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`.`last_contact` >= `gcontact`.`last_failure` AND `gcontact`.`network` IN (%s) group by glink.gcid order by gcontact.updated desc,total desc limit %d, %d ", intval($uid), @@ -587,16 +1219,20 @@ function update_suggestions() { $done = array(); + // To-Do: Check if it is really neccessary to poll the own server poco_load(0,0,0,$a->get_baseurl() . '/poco'); $done[] = $a->get_baseurl() . '/poco'; - if(strlen(get_config('system','directory_submit_url'))) { - $x = fetch_url('http://dir.friendica.com/pubsites'); + if(strlen(get_config('system','directory'))) { + $x = fetch_url(get_server()."/pubsites"); if($x) { $j = json_decode($x); if($j->entries) { foreach($j->entries as $entry) { + + poco_check_server($entry->url); + $url = $entry->url . '/poco'; if(! in_array($url,$done)) poco_load(0,0,0,$entry->url . '/poco'); @@ -605,8 +1241,9 @@ function update_suggestions() { } } - $r = q("select distinct(poco) as poco from contact where network = '%s'", - dbesc(NETWORK_DFRN) + // Query your contacts from Friendica and Redmatrix/Hubzilla for their contacts + $r = q("SELECT DISTINCT(`poco`) AS `poco` FROM `contact` WHERE `network` IN ('%s', '%s')", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA) ); if(count($r)) { @@ -617,3 +1254,205 @@ function update_suggestions() { } } } + +function poco_discover_federation() { + $last = get_config('poco','last_federation_discovery'); + + if($last) { + $next = $last + (24 * 60 * 60); + if($next > time()) + return; + } + + $serverdata = fetch_url("http://the-federation.info/pods.json"); + + if (!$serverdata) + return; + + $servers = json_decode($serverdata); + + foreach($servers->pods AS $server) + poco_check_server("https://".$server->host); + + set_config('poco','last_federation_discovery', time()); + +} + +function poco_discover($complete = false) { + + // Update the server list + poco_discover_federation(); + + $no_of_queries = 5; + + $requery_days = intval(get_config("system", "poco_requery_days")); + + if ($requery_days == 0) + $requery_days = 7; + + $last_update = date("c", time() - (60 * 60 * 24 * $requery_days)); + + $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `last_contact` >= `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update)); + if ($r) + foreach ($r AS $server) { + + if (!poco_check_server($server["url"], $server["network"])) { + // The server is not reachable? Okay, then we will try it later + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + continue; + } + + // Fetch all users from the other server + $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + + logger("Fetch all users from the server ".$server["nurl"], LOGGER_DEBUG); + + $retdata = z_fetch_url($url); + if ($retdata["success"]) { + $data = json_decode($retdata["body"]); + + poco_discover_server($data, 2); + + if (get_config('system','poco_discovery') > 1) { + + $timeframe = get_config('system','poco_discovery_since'); + if ($timeframe == 0) + $timeframe = 30; + + $updatedSince = date("Y-m-d H:i:s", time() - $timeframe * 86400); + + // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3) + $url = $server["poco"]."/@global?updatedSince=".$updatedSince."&fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + + $success = false; + + $retdata = z_fetch_url($url); + if ($retdata["success"]) { + logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG); + $success = poco_discover_server(json_decode($retdata["body"])); + } + + if (!$success AND (get_config('system','poco_discovery') > 2)) { + logger("Fetch contacts from users of the server ".$server["nurl"], LOGGER_DEBUG); + poco_discover_server_users($data, $server); + } + } + + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + if (!$complete AND (--$no_of_queries == 0)) + break; + } else { + // If the server hadn't replied correctly, then force a sanity check + poco_check_server($server["url"], $server["network"], true); + + // If we couldn't reach the server, we will try it some time later + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + } + } +} + +function poco_discover_server_users($data, $server) { + + if (!isset($data->entry)) + return; + + foreach ($data->entry AS $entry) { + $username = ""; + if (isset($entry->urls)) { + foreach($entry->urls as $url) + if($url->type == 'profile') { + $profile_url = $url->value; + $urlparts = parse_url($profile_url); + $username = end(explode("/", $urlparts["path"])); + } + } + if ($username != "") { + logger("Fetch contacts for the user ".$username." from the server ".$server["nurl"], LOGGER_DEBUG); + + // Fetch all contacts from a given user from the other server + $url = $server["poco"]."/".$username."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; + + $retdata = z_fetch_url($url); + if ($retdata["success"]) + poco_discover_server(json_decode($retdata["body"]), 3); + } + } +} + +function poco_discover_server($data, $default_generation = 0) { + + if (!isset($data->entry) OR !count($data->entry)) + return false; + + $success = false; + + foreach ($data->entry AS $entry) { + $profile_url = ''; + $profile_photo = ''; + $connect_url = ''; + $name = ''; + $network = ''; + $updated = '0000-00-00 00:00:00'; + $location = ''; + $about = ''; + $keywords = ''; + $gender = ''; + $generation = $default_generation; + + $name = $entry->displayName; + + if(isset($entry->urls)) { + foreach($entry->urls as $url) { + if($url->type == 'profile') { + $profile_url = $url->value; + continue; + } + if($url->type == 'webfinger') { + $connect_url = str_replace('acct:' , '', $url->value); + continue; + } + } + } + + if(isset($entry->photos)) { + foreach($entry->photos as $photo) { + if($photo->type == 'profile') { + $profile_photo = $photo->value; + 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->generation) AND ($entry->generation > 0)) + $generation = ++$entry->generation; + + if(isset($entry->tags)) + foreach($entry->tags as $tag) + $keywords = implode(", ", $tag); + + if ($generation > 0) { + $success = true; + + logger("Store profile ".$profile_url, LOGGER_DEBUG); + poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, 0, 0, 0); + logger("Done for profile ".$profile_url, LOGGER_DEBUG); + } + } + return $success; +} +?> diff --git a/include/text.php b/include/text.php index 829e37c2c..0002f074e 100644 --- a/include/text.php +++ b/include/text.php @@ -470,11 +470,17 @@ if(! function_exists('item_new_uri')) { * @param int $uid * @return string */ -function item_new_uri($hostname,$uid) { +function item_new_uri($hostname,$uid, $guid = "") { do { $dups = false; - $hash = random_string(); + + if ($guid == "") + $hash = get_guid(32); + else { + $hash = $guid; + $guid = ""; + } $uri = "urn:X-dfrn:" . $hostname . ':' . $uid . ':' . $hash; @@ -868,8 +874,14 @@ function contact_block() { if((! is_array($a->profile)) || ($a->profile['hide-friends'])) return $o; - $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0", - intval($a->profile['uid']) + $r = q("SELECT COUNT(*) AS `total` FROM `contact` + WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 + AND `hidden` = 0 AND `archive` = 0 + AND `network` IN ('%s', '%s', '%s')", + intval($a->profile['uid']), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_DIASPORA) ); if(count($r)) { $total = intval($r[0]['total']); @@ -879,8 +891,14 @@ function contact_block() { $micropro = Null; } else { - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY RAND() LIMIT %d", + $r = q("SELECT * FROM `contact` + WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 + AND `hidden` = 0 AND `archive` = 0 + AND `network` IN ('%s', '%s', '%s') ORDER BY RAND() LIMIT %d", intval($a->profile['uid']), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_DIASPORA), intval($shown) ); if(count($r)) { @@ -968,16 +986,29 @@ if(! function_exists('search')) { * @param string $url search url * @param boolean $savedsearch show save search button */ -function search($s,$id='search-box',$url='/search',$save = false) { +function search($s,$id='search-box',$url='/search',$save = false, $aside = true) { $a = get_app(); - return replace_macros(get_markup_template('searchbox.tpl'), array( - '$s' => $s, - '$id' => $id, - '$action_url' => $a->get_baseurl((stristr($url,'network')) ? true : false) . $url, - '$search_label' => t('Search'), - '$save_label' => t('Save'), - '$savedsearch' => feature_enabled(local_user(),'savedsearch'), - )); + + $values = array( + '$s' => $s, + '$id' => $id, + '$action_url' => $a->get_baseurl((stristr($url,'network')) ? true : false) . $url, + '$search_label' => t('Search'), + '$save_label' => t('Save'), + '$savedsearch' => feature_enabled(local_user(),'savedsearch'), + ); + + if (!$aside) { + $values['$searchoption'] = array( + t("Full Text"), + t("Tags"), + t("Contacts")); + + if (get_config('system','poco_local_search')) + $values['$searchoption'][] = t("Forums"); + } + + return replace_macros(get_markup_template('searchbox.tpl'), $values); }} if(! function_exists('valid_email')) { @@ -1676,11 +1707,14 @@ function get_plink($item) { //'href' => $a->get_baseurl()."/display/".$a->user['nickname']."/".$item['id'], 'href' => $a->get_baseurl()."/display/".$item['guid'], 'orig' => $a->get_baseurl()."/display/".$item['guid'], - 'title' => t('link to source'), + 'title' => t('View on separate page'), + 'orig_title' => t('view on separate page'), ); - if (x($item,'plink')) + if (x($item,'plink')) { $ret["href"] = $item['plink']; + $ret["title"] = t('link to source'); + } } elseif (x($item,'plink') && ($item['private'] != 1)) $ret = array( @@ -1773,7 +1807,7 @@ function return_bytes ($size_str) { function generate_user_guid() { $found = true; do { - $guid = random_string(16); + $guid = get_guid(32); $x = q("SELECT `uid` FROM `user` WHERE `guid` = '%s' LIMIT 1", dbesc($guid) ); diff --git a/include/uimport.php b/include/uimport.php index 6808c706f..78471af15 100644 --- a/include/uimport.php +++ b/include/uimport.php @@ -156,7 +156,9 @@ function import_account(&$a, $file) { $newuid = last_insert_id(); //~ $newuid = 1; - + // Generate a new guid for the account. Otherwise there will be problems with diaspora + q("UPDATE `user` SET `guid` = '%s' WHERE `uid` = %d", + dbesc(generate_user_guid()), intval($newuid)); foreach ($account['profile'] as &$profile) { foreach ($profile as $k => &$v) { diff --git a/include/user.php b/include/user.php index f8b1578ce..d989664ac 100644 --- a/include/user.php +++ b/include/user.php @@ -27,11 +27,19 @@ function create_user($arr) { $openid_url = ((x($arr,'openid_url')) ? notags(trim($arr['openid_url'])) : ''); $photo = ((x($arr,'photo')) ? notags(trim($arr['photo'])) : ''); $password = ((x($arr,'password')) ? trim($arr['password']) : ''); + $password1 = ((x($arr,'password1')) ? trim($arr['password1']) : ''); + $confirm = ((x($arr,'confirm')) ? trim($arr['confirm']) : ''); $blocked = ((x($arr,'blocked')) ? intval($arr['blocked']) : 0); $verified = ((x($arr,'verified')) ? intval($arr['verified']) : 0); $publish = ((x($arr,'profile_publish_reg') && intval($arr['profile_publish_reg'])) ? 1 : 0); - $netpublish = ((strlen(get_config('system','directory_submit_url'))) ? $publish : 0); + $netpublish = ((strlen(get_config('system','directory'))) ? $publish : 0); + + if ($password1 != $confirm) { + $result['message'] .= t('Passwords do not match. Password unchanged.') . EOL; + return $result; + } elseif ($password1 != "") + $password = $password1; $tmp_str = $openid_url; @@ -128,8 +136,8 @@ function create_user($arr) { $nickname = $arr['nickname'] = strtolower($nickname); - if(! preg_match("/^[a-z][a-z0-9\-\_]*$/",$nickname)) - $result['message'] .= t('Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.') . EOL; + if(! preg_match("/^[a-z0-9][a-z0-9\_]*$/",$nickname)) + $result['message'] .= t('Your "nickname" can only contain "a-z", "0-9" and "_".') . EOL; $r = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1", dbesc($nickname) diff --git a/js/filebrowser.js b/js/filebrowser.js new file mode 100644 index 000000000..66db2833c --- /dev/null +++ b/js/filebrowser.js @@ -0,0 +1,142 @@ +/** + * Filebrowser - Friendica Communications Server + * + * Copyright (c) 2010-2013 the Friendica Project + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This code handle user interaction for image/file upload/browser dialog. + * Is loaded from filebrowser_plain.tpl + * + * To load filebrowser in colorbox, call + * + * $.colorbox({href: ulr, iframe:true,innerWidth:'500px',innerHeight:'400px'}) + * + * where url is: + * + * /fbrowser//?mode=minimal[#-] + * + * baseurl: baseurl from friendica + * type: one of "image", "file" + * eventname: event name to catch return value + * id: id returned to event handler + * + * When user select an item, an event in fired in parent page, on body element + * The event is named + * + * fbrowser..[] + * + * with params: + * + * filemane: filename of item choosed by user + * embed: bbcode to embed element into posts + * id: id from url + * + * example: + * + * // open dialog for select an image for a textarea with id "myeditor" + * var id="myeditor"; + * $.colorbox({href: baseurl + "/fbrowser/image/?mode=minimal#example-"+id, iframe:true,innerWidth:'500px',innerHeight:'400px'}) + * + * // setup event handler to get user selection + * $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) { + * // close colorbox + * $.colorbox.close(); + * // replace textxarea text with bbcode + * $(id).value = bbcode; + * }); + **/ + +var FileBrowser = { + nickname : "", + type : "", + event: "", + id : null, + + init: function(nickname, type) { + FileBrowser.nickname = nickname; + FileBrowser.type = type; + FileBrowser.event = "fbrowser."+type; + if (location['hash']!=="") { + var h = location['hash'].replace("#",""); + FileBrowser.event = FileBrowser.event + "." + h.split("-")[0]; + FileBrowser.id = h.split("-")[1]; + } + + console.log("FileBrowser:", nickname, type,FileBrowser.event, FileBrowser.id ); + + $(".error a.close").on("click", function(e) { + e.preventDefault(); + $(".error").addClass("hidden"); + }); + + $(".folders a, .path a").on("click", function(e){ + e.preventDefault(); + var url = baseurl + "/fbrowser/" + FileBrowser.type + "/" + this.dataset.folder + "?mode=minimal" + location['hash']; + location.href = url; + }); + + $(".photo-album-photo-link").on('click', function(e){ + e.preventDefault(); + + var embed = ""; + if (FileBrowser.type == "image") { + embed = "[url="+this.dataset.link+"][img]"+this.dataset.img+"[/img][/url]"; + } + if (FileBrowser.type=="file") { + // attachment links are "baseurl/attach/id"; we need id + embed = "[attachment]"+this.dataset.link.split("/").pop()+"[/attachment]"; + } + console.log(FileBrowser.event, this.dataset.filename, embed, FileBrowser.id); + parent.$("body").trigger(FileBrowser.event, [ + this.dataset.filename, + embed, + FileBrowser.id + ]); + + }); + + if ($("#upload-image").length) + var image_uploader = new window.AjaxUpload( + 'upload-image', + { action: 'wall_upload/'+FileBrowser.nickname+'?response=json', + name: 'userfile', + responseType: 'json', + onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); }, + onComplete: function(file,response) { + if (response['error']!= undefined) { + $(".error span").html(response['error']); + $(".error").removeClass('hidden'); + $('#profile-rotator').hide(); + return; + } + location = baseurl + "/fbrowser/image/?mode=minimal"+location['hash']; + location.reload(true); + } + } + ); + + if ($("#upload-file").length) + var file_uploader = new window.AjaxUpload( + 'upload-file', + { action: 'wall_attach/'+FileBrowser.nickname+'?response=json', + name: 'userfile', + onSubmit: function(file,ext) { $('#profile-rotator').show(); $(".error").addClass('hidden'); }, + onComplete: function(file,response) { + if (response['error']!= undefined) { + $(".error span").html(response['error']); + $(".error").removeClass('hidden'); + $('#profile-rotator').hide(); + return; + } + location = baseurl + "/fbrowser/file/?mode=minimal"+location['hash']; + location.reload(true); + } + } + ); + } +}; + diff --git a/js/main.js b/js/main.js index 239a875cb..e1e852cba 100644 --- a/js/main.js +++ b/js/main.js @@ -51,6 +51,38 @@ e.tipTip({defaultPosition: pos, edgeOffset: 8}); });*/ + /* setup comment textarea buttons */ + /* comment textarea buttons needs some "data-*" attributes to work: + * data-role="insert-formatting" : to mark the element as a formatting button + * data-comment="" : string for "Comment", used by insertFormatting() function + * data-bbcode="" : name of the bbcode element to insert. insertFormatting() will insert it as "[name][/name]" + * data-id="" : id of the comment, used to find other comment-related element, like the textarea + * */ + $('body').on('click','[data-role="insert-formatting"]', function(e) { + e.preventDefault(); + var o = $(this); + var comment = o.data('comment'); + var bbcode = o.data('bbcode'); + var id = o.data('id'); + if (bbcode=="img") { + $.colorbox({href: baseurl + "/fbrowser/image/?mode=minimal#comment-"+id, iframe:true,innerWidth:'500px',innerHeight:'400px'}) + return; + } + + insertFormatting(comment, bbcode, id); + }); + + /* event from comment textarea button popups */ + /* insert returned bbcode at cursor position or replace selected text */ + $("body").on("fbrowser.image.comment", function(e, filename, bbcode, id) { + console.log("on", id); + $.colorbox.close(); + var textarea = document.getElementById("comment-edit-text-" +id); + var start = textarea.selectionStart; + var end = textarea.selectionEnd; + textarea.value = textarea.value.substring(0, start) + bbcode + textarea.value.substring(end, textarea.value.length); + }); + /* setup onoff widgets */ diff --git a/mod/_well_known.php b/mod/_well_known.php index 6792d36fe..33070a1ec 100644 --- a/mod/_well_known.php +++ b/mod/_well_known.php @@ -1,14 +1,66 @@ argc > 1) { - switch($a->argv[1]) { - case "host-meta": - hostxrd_init($a); - break; - } - } - http_status_exit(404); - killme(); + if ($a->argc > 1) { + switch($a->argv[1]) { + case "host-meta": + hostxrd_init($a); + break; + case "x-social-relay": + wk_social_relay($a); + break; + case "nodeinfo": + nodeinfo_wellknown($a); + break; + } + } + http_status_exit(404); + killme(); +} + +function wk_social_relay(&$a) { + + define('SR_SCOPE_ALL', 'all'); + define('SR_SCOPE_TAGS', 'tags'); + + $subscribe = (bool)get_config('system', 'relay_subscribe'); + + if ($subscribe) + $scope = get_config('system', 'relay_scope'); + else + $scope = ""; + + $tags = array(); + + if ($scope == SR_SCOPE_TAGS) { + + $server_tags = get_config('system', 'relay_server_tags'); + $tagitems = explode(",", $server_tags); + + foreach($tagitems AS $tag) + $tags[trim($tag, "# ")] = trim($tag, "# "); + + if (get_config('system', 'relay_user_tags')) { + $terms = q("SELECT DISTINCT(`term`) FROM `search`"); + + foreach($terms AS $term) { + $tag = trim($term["term"], "#"); + $tags[$tag] = $tag; + } + } + } + + $taglist = array(); + foreach($tags AS $tag) + $taglist[] = $tag; + + $relay = array("subscribe" => $subscribe, + "scope" => $scope, + "tags" => $taglist); + + header('Content-type: application/json; charset=utf-8'); + echo json_encode($relay, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES); + exit; } diff --git a/mod/admin.php b/mod/admin.php index 28a7a91e4..878508a23 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -105,7 +105,8 @@ function admin_content(&$a) { 'users' => Array($a->get_baseurl(true)."/admin/users/", t("Users") , "users"), 'plugins'=> Array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"), 'themes' => Array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"), - 'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync"), + 'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync"), + 'queue' => Array($a->get_baseurl(true)."/admin/queue/", t('Inspect Queue'), "queue"), //'update' => Array($a->get_baseurl(true)."/admin/update/", t("Software Update") , "update") ); @@ -165,6 +166,9 @@ function admin_content(&$a) { case 'update': $o = admin_page_remoteupdate($a); break; + case 'queue': + $o = admin_page_queue($a); + break; default: notice( t("Item not found.") ); } @@ -181,7 +185,30 @@ function admin_content(&$a) { } } +/** + * Admin Inspect Queue Page + * @param App $a + * return string + */ +function admin_page_queue(&$a) { + // get content from the queue table + $r = q("SELECT c.name,c.nurl,q.id,q.network,q.created,q.last from queue as q, contact as c where c.id=q.cid order by q.cid, q.created;"); + $t = get_markup_template("admin_queue.tpl"); + return replace_macros($t, array( + '$title' => t('Administration'), + '$page' => t('Inspect Queue'), + '$count' => sizeof($r), + 'id_header' => t('ID'), + '$to_header' => t('Recipient Name'), + '$url_header' => t('Recipient Profile'), + '$network_header' => t('Network'), + '$created_header' => t('Created'), + '$last_header' => t('Last Tried'), + '$info' => t('This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently.'), + '$entries' => $r, + )); +} /** * Admin Summary Page * @param App $a @@ -226,6 +253,7 @@ function admin_page_summary(&$a) { '$accounts' => $accounts, '$pending' => Array( t('Pending registrations'), $pending), '$version' => Array( t('Version'), FRIENDICA_VERSION), + '$baseurl' => $a->get_baseurl(), '$platform' => FRIENDICA_PLATFORM, '$codename' => FRIENDICA_CODENAME, '$build' => get_config('system','build'), @@ -335,7 +363,7 @@ function admin_page_site_post(&$a){ $allowed_email = ((x($_POST,'allowed_email')) ? notags(trim($_POST['allowed_email'])) : ''); $block_public = ((x($_POST,'block_public')) ? True : False); $force_publish = ((x($_POST,'publish_all')) ? True : False); - $global_directory = ((x($_POST,'directory_submit_url')) ? notags(trim($_POST['directory_submit_url'])) : ''); + $global_directory = ((x($_POST,'directory')) ? notags(trim($_POST['directory'])) : ''); $thread_allow = ((x($_POST,'thread_allow')) ? True : False); $newuser_private = ((x($_POST,'newuser_private')) ? True : False); $enotify_no_content = ((x($_POST,'enotify_no_content')) ? True : False); @@ -358,6 +386,12 @@ function admin_page_site_post(&$a){ $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0); $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); + $poco_completion = ((x($_POST,'poco_completion')) ? intval(trim($_POST['poco_completion'])) : false); + $poco_requery_days = ((x($_POST,'poco_requery_days')) ? intval(trim($_POST['poco_requery_days'])) : 7); + $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : 0); + $poco_discovery_since = ((x($_POST,'poco_discovery_since')) ? intval(trim($_POST['poco_discovery_since'])) : 30); + $poco_local_search = ((x($_POST,'poco_local_search')) ? intval(trim($_POST['poco_local_search'])) : false); + $nodeinfo = ((x($_POST,'nodeinfo')) ? intval(trim($_POST['nodeinfo'])) : false); $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False); $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); $ostatus_poll_interval = ((x($_POST,'ostatus_poll_interval')) ? intval(trim($_POST['ostatus_poll_interval'])) : 0); @@ -380,8 +414,9 @@ function admin_page_site_post(&$a){ $old_pager = ((x($_POST,'old_pager')) ? True : False); $only_tag_search = ((x($_POST,'only_tag_search')) ? True : False); $rino = ((x($_POST,'rino')) ? intval($_POST['rino']) : 0); - - + $embedly = ((x($_POST,'embedly')) ? notags(trim($_POST['embedly'])) : ''); + + if($ssl_policy != intval(get_config('system','ssl_policy'))) { if($ssl_policy == SSL_POLICY_FULL) { q("update `contact` set @@ -427,6 +462,12 @@ function admin_page_site_post(&$a){ set_config('system','poll_interval',$poll_interval); set_config('system','maxloadavg',$maxloadavg); set_config('system','maxloadavg_frontend',$maxloadavg_frontend); + set_config('system','poco_completion',$poco_completion); + set_config('system','poco_requery_days',$poco_requery_days); + set_config('system','poco_discovery',$poco_discovery); + set_config('system','poco_discovery_since',$poco_discovery_since); + set_config('system','poco_local_search',$poco_local_search); + set_config('system','nodeinfo',$nodeinfo); set_config('config','sitename',$sitename); set_config('config','hostname',$hostname); set_config('config','sender_email', $sender_email); @@ -434,7 +475,7 @@ function admin_page_site_post(&$a){ set_config('system','suppress_tags',$suppress_tags); set_config('system','shortcut_icon',$shortcut_icon); set_config('system','touch_icon',$touch_icon); - + if ($banner==""){ // don't know why, but del_config doesn't work... q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1", @@ -473,15 +514,7 @@ function admin_page_site_post(&$a){ set_config('system','allowed_email', $allowed_email); set_config('system','block_public', $block_public); set_config('system','publish_all', $force_publish); - if ($global_directory==""){ - // don't know why, but del_config doesn't work... - q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1", - dbesc("system"), - dbesc("directory_submit_url") - ); - } else { - set_config('system','directory_submit_url', $global_directory); - } + set_config('system','directory', $global_directory); set_config('system','thread_allow', $thread_allow); set_config('system','newuser_private', $newuser_private); set_config('system','enotify_no_content', $enotify_no_content); @@ -518,9 +551,16 @@ function admin_page_site_post(&$a){ set_config('system','old_pager', $old_pager); set_config('system','only_tag_search', $only_tag_search); - set_config('system','rino_encrypt', $rino); - + if ($rino==2 and !function_exists('mcrypt_create_iv')){ + notice(t("RINO2 needs mcrypt php extension to work.")); + } else { + set_config('system','rino_encrypt', $rino); + } + + set_config('system','embedly', $embedly); + + info( t('Site settings updated.') . EOL); goaway($a->get_baseurl(true) . '/admin/site' ); return; // NOTREACHED @@ -535,7 +575,7 @@ function admin_page_site(&$a) { /* Installed langs */ $lang_choices = array(); - $langs = glob('view/*/strings.php'); + $langs = glob('view/*/strings.php'); /**/ if(is_array($langs) && count($langs)) { if(! in_array('view/en/strings.php',$langs)) @@ -547,6 +587,12 @@ function admin_page_site(&$a) { } } + if (strlen(get_config('system','directory_submit_url')) AND + !strlen(get_config('system','directory'))) { + set_config('system','directory', dirname(get_config('system','directory_submit_url'))); + del_config('system','directory_submit_url'); + } + /* Installed themes */ $theme_choices = array(); $theme_choices_mobile = array(); @@ -582,6 +628,20 @@ function admin_page_site(&$a) { "1440" => t("Daily") ); + $poco_discovery_choices = array( + "0" => t("Disabled"), + "1" => t("Users"), + "2" => t("Users, Global Contacts"), + "3" => t("Users, Global Contacts/fallback"), + ); + + $poco_discovery_since_choices = array( + "30" => t("One month"), + "91" => t("Three months"), + "182" => t("Half a year"), + "365" => t("One year"), + ); + /* get user names to make the install a personal install of X */ $user_names = array(); $user_names['---'] = t('Multi user instance'); @@ -630,17 +690,18 @@ function admin_page_site(&$a) { '$upload' => t('File upload'), '$corporate' => t('Policies'), '$advanced' => t('Advanced'), + '$portable_contacts' => t('Auto Discovered Contact Directory'), '$performance' => t('Performance'), '$relocate'=> t('Relocate - WARNING: advanced function. Could make this server unreachable.'), '$baseurl' => $a->get_baseurl(true), // name, label, value, help string, extra data... - '$sitename' => array('sitename', t("Site name"), $a->config['sitename'],'UTF-8'), + '$sitename' => array('sitename', t("Site name"), $a->config['sitename'],''), '$hostname' => array('hostname', t("Host name"), $a->config['hostname'], ""), - '$sender_email' => array('sender_email', t("Sender Email"), $a->config['sender_email'], "The email address your server shall use to send notification emails from.", "", "", "email"), + '$sender_email' => array('sender_email', t("Sender Email"), $a->config['sender_email'], t("The email address your server shall use to send notification emails from."), "", "", "email"), '$banner' => array('banner', t("Banner/Logo"), $banner, ""), - '$shortcut_icon' => array('shortcut_icon', t("Shortcut icon"), get_config('system','shortcut_icon'), "Link to an icon that will be used for browsers."), - '$touch_icon' => array('touch_icon', t("Touch icon"), get_config('system','touch_icon'), "Link to an icon that will be used for tablets and mobiles."), - '$info' => array('info',t('Additional Info'), $info, t('For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo.')), + '$shortcut_icon' => array('shortcut_icon', t("Shortcut icon"), get_config('system','shortcut_icon'), t("Link to an icon that will be used for browsers.")), + '$touch_icon' => array('touch_icon', t("Touch icon"), get_config('system','touch_icon'), t("Link to an icon that will be used for tablets and mobiles.")), + '$info' => array('info',t('Additional Info'), $info, sprintf(t('For public servers: you can add additional information here that will be listed at %s/siteinfo.'), get_server())), '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices), '$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - change theme settings"), $theme_choices), '$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile), @@ -661,7 +722,7 @@ function admin_page_site(&$a) { '$allowed_email' => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")), '$block_public' => array('block_public', t("Block public"), get_config('system','block_public'), t("Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.")), '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory.")), - '$global_directory' => array('directory_submit_url', t("Global directory update URL"), get_config('system','directory_submit_url'), t("URL to update the global directory. If this is not set, the global directory is completely unavailable to the application.")), + '$global_directory' => array('directory', t("Global directory URL"), get_config('system','directory'), t("URL to the global directory. If this is not set, the global directory is completely unavailable to the application.")), '$thread_allow' => array('thread_allow', t("Allow threaded items"), get_config('system','thread_allow'), t("Allow infinite level threading for items on this site.")), '$newuser_private' => array('newuser_private', t("Private posts by default for new users"), get_config('system','newuser_private'), t("Set default post permissions for all new members to the default privacy group rather than public.")), '$enotify_no_content' => array('enotify_no_content', t("Don't include post content in email notifications"), get_config('system','enotify_no_content'), t("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.")), @@ -687,23 +748,32 @@ function admin_page_site(&$a) { '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), '$maxloadavg_frontend' => array('maxloadavg_frontend', t("Maximum Load Average (Frontend)"), ((intval(get_config('system','maxloadavg_frontend')) > 0)?get_config('system','maxloadavg_frontend'):50), t("Maximum system load before the frontend quits service - default 50.")), + '$poco_completion' => array('poco_completion', t("Periodical check of global contacts"), get_config('system','poco_completion'), t("If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers.")), + '$poco_requery_days' => array('poco_requery_days', t("Days between requery"), get_config('system','poco_requery_days'), t("Number of days after which a server is requeried for his contacts.")), + '$poco_discovery' => array('poco_discovery', t("Discover contacts from other servers"), (string) intval(get_config('system','poco_discovery')), t("Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."), $poco_discovery_choices), + '$poco_discovery_since' => array('poco_discovery_since', t("Timeframe for fetching global contacts"), (string) intval(get_config('system','poco_discovery_since')), t("When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."), $poco_discovery_since_choices), + '$poco_local_search' => array('poco_local_search', t("Search the local directory"), get_config('system','poco_local_search'), t("Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated.")), + + '$nodeinfo' => array('nodeinfo', t("Publish server information"), get_config('system','nodeinfo'), t("If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details.")), + '$use_fulltext_engine' => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")), '$suppress_language' => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")), '$suppress_tags' => array('suppress_tags', t("Suppress Tags"), get_config('system','suppress_tags'), t("Suppress showing a list of hashtags at the end of the posting.")), - '$itemcache' => array('itemcache', t("Path to item cache"), get_config('system','itemcache'), "The item caches buffers generated bbcode and external images."), + '$itemcache' => array('itemcache', t("Path to item cache"), get_config('system','itemcache'), t("The item caches buffers generated bbcode and external images.")), '$itemcache_duration' => array('itemcache_duration', t("Cache duration in seconds"), get_config('system','itemcache_duration'), t("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.")), '$max_comments' => array('max_comments', t("Maximum numbers of comments per post"), get_config('system','max_comments'), t("How much comments should be shown for each post? Default value is 100.")), - '$lockpath' => array('lockpath', t("Path for lock file"), get_config('system','lockpath'), "The lock file is used to avoid multiple pollers at one time. Only define a folder here."), - '$temppath' => array('temppath', t("Temp path"), get_config('system','temppath'), "If you have a restricted system where the webserver can't access the system temp path, enter another path here."), - '$basepath' => array('basepath', t("Base path to installation"), get_config('system','basepath'), "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."), + '$lockpath' => array('lockpath', t("Path for lock file"), get_config('system','lockpath'), t("The lock file is used to avoid multiple pollers at one time. Only define a folder here.")), + '$temppath' => array('temppath', t("Temp path"), get_config('system','temppath'), t("If you have a restricted system where the webserver can't access the system temp path, enter another path here.")), + '$basepath' => array('basepath', t("Base path to installation"), get_config('system','basepath'), t("If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot.")), '$proxy_disabled' => array('proxy_disabled', t("Disable picture proxy"), get_config('system','proxy_disabled'), t("The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith.")), '$old_pager' => array('old_pager', t("Enable old style pager"), get_config('system','old_pager'), t("The old style pager has page numbers but slows down massively the page speed.")), '$only_tag_search' => array('only_tag_search', t("Only search in tags"), get_config('system','only_tag_search'), t("On large systems the text search can slow down the system extremely.")), - '$relocate_url' => array('relocate_url', t("New base url"), $a->get_baseurl(), "Change base url for this server. Sends relocate message to all DFRN contacts of all users."), - + '$relocate_url' => array('relocate_url', t("New base url"), $a->get_baseurl(), t("Change base url for this server. Sends relocate message to all DFRN contacts of all users.")), + '$rino' => array('rino', t("RINO Encryption"), intval(get_config('system','rino_encrypt')), t("Encryption layer between nodes."), array("Disabled", "RINO1 (deprecated)", "RINO2")), - + '$embedly' => array('embedly', t("Embedly API key"), get_config('system','embedly'), t("Embedly is used to fetch additional data for web pages. This is an optional parameter.")), + '$form_security_token' => get_form_security_token("admin_site") )); @@ -801,7 +871,7 @@ function admin_page_users_post(&$a){ $nu_nickname = ( x($_POST, 'new_user_nickname') ? $_POST['new_user_nickname'] : ''); $nu_email = ( x($_POST, 'new_user_email') ? $_POST['new_user_email'] : ''); - check_form_security_token_redirectOnErr($a->get_baseurl().'/admin/users', 'admin_users'); + check_form_security_token_redirectOnErr('/admin/users', 'admin_users'); if (!($nu_name==="") && !($nu_email==="") && !($nu_nickname==="")) { require_once('include/user.php'); @@ -1136,6 +1206,13 @@ function admin_page_plugins(&$a){ * List plugins */ + if (x($_GET,"a") && $_GET['a']=="r"){ + check_form_security_token_redirectOnErr($a->get_baseurl().'/admin/plugins', 'admin_themes', 't'); + reload_plugins(); + info("Plugins reloaded"); + goaway($a->get_baseurl().'/admin/plugins'); + } + $plugins = array(); $files = glob("addon/*/"); /* */ if($files) { diff --git a/mod/api.php b/mod/api.php index 63f8a934c..e3b5ea3a9 100644 --- a/mod/api.php +++ b/mod/api.php @@ -4,19 +4,19 @@ require_once('include/api.php'); function oauth_get_client($request){ - + $params = $request->get_parameters(); $token = $params['oauth_token']; - - $r = q("SELECT `clients`.* - FROM `clients`, `tokens` - WHERE `clients`.`client_id`=`tokens`.`client_id` + + $r = q("SELECT `clients`.* + FROM `clients`, `tokens` + WHERE `clients`.`client_id`=`tokens`.`client_id` AND `tokens`.`id`='%s' AND `tokens`.`scope`='request'", dbesc($token)); if (!count($r)) return null; - + return $r[0]; } @@ -36,31 +36,31 @@ function api_post(&$a) { function api_content(&$a) { if ($a->cmd=='api/oauth/authorize'){ - /* + /* * api/oauth/authorize interact with the user. return a standard page */ - + $a->page['template'] = "minimal"; - - + + // get consumer/client from request token try { $request = OAuthRequest::from_request(); } catch(Exception $e) { echo "
    "; var_dump($e); killme();
     		}
    -		
    -		
    +
    +
     		if (x($_POST,'oauth_yes')){
    -		
    +
     			$app = oauth_get_client($request);
     			if (is_null($app)) return "Invalid request. Unknown token.";
     			$consumer = new OAuthConsumer($app['client_id'], $app['pw'], $app['redirect_uri']);
     
     			$verifier = md5($app['secret'].local_user());
     			set_config("oauth", $verifier, local_user());
    -			
    -			
    +
    +
     			if ($consumer->callback_url!=null) {
     				$params = $request->get_parameters();
     				$glue="?";
    @@ -68,35 +68,35 @@ function api_content(&$a) {
     				goaway($consumer->callback_url.$glue."oauth_token=".OAuthUtil::urlencode_rfc3986($params['oauth_token'])."&oauth_verifier=".OAuthUtil::urlencode_rfc3986($verifier));
     				killme();
     			}
    -			
    -			
    -			
    +
    +
    +
     			$tpl = get_markup_template("oauth_authorize_done.tpl");
     			$o = replace_macros($tpl, array(
     				'$title' => t('Authorize application connection'),
     				'$info' => t('Return to your app and insert this Securty Code:'),
     				'$code' => $verifier,
     			));
    -		
    +
     			return $o;
    -		
    -		
    +
    +
     		}
    -		
    -		
    +
    +
     		if(! local_user()) {
     			//TODO: we need login form to redirect to this page
     			notice( t('Please login to continue.') . EOL );
     			return login(false,$request->get_parameters());
     		}
     		//FKOAuth1::loginUser(4);
    -		
    +
     		$app = oauth_get_client($request);
     		if (is_null($app)) return "Invalid request. Unknown token.";
    -		
    -		
     
    -		
    +
    +
    +
     		$tpl = get_markup_template('oauth_authorize.tpl');
     		$o = replace_macros($tpl, array(
     			'$title' => t('Authorize application connection'),
    @@ -105,15 +105,12 @@ function api_content(&$a) {
     			'$yes'	=> t('Yes'),
     			'$no'	=> t('No'),
     		));
    -		
    +
     		//echo "
    "; var_dump($app); killme();
    -		
    +
     		return $o;
     	}
     
     	echo api_call($a);
     	killme();
     }
    -
    -
    -
    diff --git a/mod/contacts.php b/mod/contacts.php
    index 6ee9a4a92..89154eded 100644
    --- a/mod/contacts.php
    +++ b/mod/contacts.php
    @@ -206,15 +206,36 @@ function contacts_post(&$a) {
     
     /*contact actions*/
     function _contact_update($contact_id) {
    -	// pull feed and consume it, which should subscribe to the hub.
    -	proc_run('php',"include/poller.php","$contact_id");
    +	$r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
    +	if (!$r)
    +		return;
    +
    +	$uid = $r[0]["uid"];
    +
    +	if ($uid != local_user())
    +		return;
    +
    +	if ($r[0]["network"] == NETWORK_OSTATUS) {
    +		$result = new_contact($uid, $r[0]["url"], false);
    +
    +		if ($result['success'])
    +			$r = q("UPDATE `contact` SET `subhub` = 1 WHERE `id` = %d",
    +				intval($contact_id));
    +	} else
    +		// pull feed and consume it, which should subscribe to the hub.
    +		proc_run('php',"include/onepoll.php","$contact_id", "force");
     }
     
     function _contact_update_profile($contact_id) {
    -	$r = q("SELECT `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
    +	$r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
     	if (!$r)
     		return;
     
    +	$uid = $r[0]["uid"];
    +
    +	if ($uid != local_user())
    +		return;
    +
     	$data = probe_url($r[0]["url"]);
     
     	// "Feed" is mostly a sign of communication problems
    @@ -225,6 +246,13 @@ function _contact_update_profile($contact_id) {
     				"poco", "network", "alias", "pubkey");
     	$update = array();
     
    +	if ($data["network"] == NETWORK_OSTATUS) {
    +		$result = new_contact($uid, $data["url"], false);
    +
    +		if ($result['success'])
    +			$update["subhub"] = true;
    +	}
    +
     	foreach($updatefields AS $field)
     		if (isset($data[$field]) AND ($data[$field] != ""))
     			$update[$field] = $data[$field];
    @@ -505,7 +533,7 @@ function contacts_content(&$a) {
     
     		$poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2));
     
    -		$nettype = sprintf( t('Network type: %s'),network_to_name($contact['network']));
    +		$nettype = sprintf( t('Network type: %s'),network_to_name($contact['network'], $contact["url"]));
     
     		$common = count_common_friends(local_user(),$contact['id']);
     		$common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : '');
    @@ -522,12 +550,14 @@ function contacts_content(&$a) {
     				'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block',
     				'sel'   => '',
     				'title' => t('Toggle Blocked status'),
    +				'accesskey' => 'b',
     			),
     			array(
     				'label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
     				'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore',
     				'sel'   => '',
     				'title' => t('Toggle Ignored status'),
    +				'accesskey' => 'i',
     			),
     
     			array(
    @@ -535,12 +565,14 @@ function contacts_content(&$a) {
     				'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive',
     				'sel'   => '',
     				'title' => t('Toggle Archive status'),
    +				'accesskey' => 'v',
     			),
     			array(
     				'label' => t('Repair'),
     				'url'   => $a->get_baseurl(true) . '/crepair/' . $contact_id,
     				'sel'   => '',
     				'title' => t('Advanced Contact Settings'),
    +				'accesskey' => 'r',
     			)
     		);
     		$tab_tpl = get_markup_template('common_tabs.tpl');
    @@ -605,6 +637,8 @@ function contacts_content(&$a) {
     			'$alt_text' => $alt_text,
     			'$sparkle' => $sparkle,
     			'$url' => $url,
    +			'$profileurllabel' => t('Profile URL'),
    +			'$profileurl' => $contact['url'],
     
     		));
     
    @@ -650,21 +684,24 @@ function contacts_content(&$a) {
     	$tabs = array(
     		array(
     			'label' => t('Suggestions'),
    -			'url'   => $a->get_baseurl(true) . '/suggest', 
    +			'url'   => $a->get_baseurl(true) . '/suggest',
     			'sel'   => '',
     			'title' => t('Suggest potential friends'),
    +			'accesskey' => 'g',
     		),
     		array(
     			'label' => t('All Contacts'),
    -			'url'   => $a->get_baseurl(true) . '/contacts/all', 
    +			'url'   => $a->get_baseurl(true) . '/contacts/all',
     			'sel'   => ($all) ? 'active' : '',
     			'title' => t('Show all contacts'),
    +			'accesskey' => 'l',
     		),
     		array(
     			'label' => t('Unblocked'),
     			'url'   => $a->get_baseurl(true) . '/contacts',
     			'sel'   => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
     			'title' => t('Only show unblocked contacts'),
    +			'accesskey' => 'o',
     		),
     
     		array(
    @@ -672,6 +709,7 @@ function contacts_content(&$a) {
     			'url'   => $a->get_baseurl(true) . '/contacts/blocked',
     			'sel'   => ($blocked) ? 'active' : '',
     			'title' => t('Only show blocked contacts'),
    +			'accesskey' => 'b',
     		),
     
     		array(
    @@ -679,6 +717,7 @@ function contacts_content(&$a) {
     			'url'   => $a->get_baseurl(true) . '/contacts/ignored',
     			'sel'   => ($ignored) ? 'active' : '',
     			'title' => t('Only show ignored contacts'),
    +			'accesskey' => 'i',
     		),
     
     		array(
    @@ -686,6 +725,7 @@ function contacts_content(&$a) {
     			'url'   => $a->get_baseurl(true) . '/contacts/archived',
     			'sel'   => ($archived) ? 'active' : '',
     			'title' => t('Only show archived contacts'),
    +			'accesskey' => 'y',
     		),
     
     		array(
    @@ -693,6 +733,7 @@ function contacts_content(&$a) {
     			'url'   => $a->get_baseurl(true) . '/contacts/hidden',
     			'sel'   => ($hidden) ? 'active' : '',
     			'title' => t('Only show hidden contacts'),
    +			'accesskey' => 'h',
     		),
     
     	);
    @@ -806,7 +847,7 @@ function _contact_detail_for_template($rr){
     		'sparkle' => $sparkle,
     		'itemurl' => $rr['url'],
     		'url' => $url,
    -		'network' => network_to_name($rr['network']),
    +		'network' => network_to_name($rr['network'], $rr['url']),
     	);
    -	
    -}
    \ No newline at end of file
    +
    +}
    diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php
    index 874f17c77..fcc572654 100644
    --- a/mod/dfrn_notify.php
    +++ b/mod/dfrn_notify.php
    @@ -93,6 +93,8 @@ function dfrn_notify_post(&$a) {
     
     	$importer = $r[0];
     
    +	logger("Remote rino version: ".$rino_remote." for ".$importer["url"], LOGGER_DEBUG);
    +
     	if((($writable != (-1)) && ($writable != $importer['writable'])) || ($importer['forum'] != $forum) || ($importer['prv'] != $prv)) {
     		q("UPDATE `contact` SET `writable` = %d, forum = %d, prv = %d WHERE `id` = %d",
     			intval(($writable == (-1)) ? $importer['writable'] : $writable),
    @@ -128,20 +130,27 @@ function dfrn_notify_post(&$a) {
     
     
     	// If we are setup as a soapbox we aren't accepting input from this person
    +	// This behaviour is deactivated since it really doesn't make sense to even disallow comments
    +	// The check if someone is a friend or simply a follower is done in a later place so it needn't to be done here
    +	//if($importer['page-flags'] == PAGE_SOAPBOX)
    +	//	xml_status(0);
     
    -	if($importer['page-flags'] == PAGE_SOAPBOX)
    -		xml_status(0);
    +	$rino = get_config('system','rino_encrypt');
    +	$rino = intval($rino);
    +	// use RINO1 if mcrypt isn't installed and RINO2 was selected
    +	if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
    +
    +	logger("Local rino version: ". $rino, LOGGER_DEBUG);
     
    -	
     	if(strlen($key)) {
    -		
    +
     		// if local rino is lower than remote rino, abort: should not happen!
     		// but only for $remote_rino > 1, because old code did't send rino version
     		if ($rino_remote_version > 1 && $rino < $rino_remote) {
     			logger("rino version '$rino_remote' is lower than supported '$rino'");
     			xml_status(0,"rino version '$rino_remote' is lower than supported '$rino'");
     		}
    -		
    +
     		$rawkey = hex2bin(trim($key));
     		logger('rino: md5 raw key: ' . md5($rawkey));
     		$final_key = '';
    @@ -164,7 +173,7 @@ function dfrn_notify_post(&$a) {
     		}
     
     		#logger('rino: received key : ' . $final_key);
    -		
    +
     		switch($rino_remote) {
     			case 0:
     			case 1:
    @@ -195,8 +204,8 @@ function dfrn_notify_post(&$a) {
     				logger("rino: invalid sent verision '$rino_remote'");
     				xml_status(0);
     		}
    -		
    -		
    +
    +
     		logger('rino: decrypted data: ' . $data, LOGGER_DATA);
     	}
     
    @@ -243,7 +252,7 @@ function dfrn_notify_content(&$a) {
     			dbesc($last_update)
     		);
     
    -		logger('dfrn_notify: challenge=' . $hash, LOGGER_DEBUG );
    +		logger('dfrn_notify: challenge=' . $hash, LOGGER_DEBUG);
     
     		$sql_extra = '';
     		switch($direction) {
    @@ -273,6 +282,8 @@ function dfrn_notify_content(&$a) {
     		if(! count($r))
     			$status = 1;
     
    +		logger("Remote rino version: ".$rino_remote." for ".$r[0]["url"], LOGGER_DEBUG);
    +
     		$challenge = '';
     		$encrypted_id = '';
     		$id_str = $my_id . '.' . mt_rand(1000,9999);
    @@ -295,14 +306,18 @@ function dfrn_notify_content(&$a) {
     		$challenge    = bin2hex($challenge);
     		$encrypted_id = bin2hex($encrypted_id);
     
    -		
    +
     		$rino = get_config('system','rino_encrypt');
     		$rino = intval($rino);
    +		// use RINO1 if mcrypt isn't installed and RINO2 was selected
    +		if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
     		
    +		logger("Local rino version: ". $rino, LOGGER_DEBUG);
    +
     		// if requested rino is lower than enabled local rino, lower local rino version
     		// if requested rino is higher than enabled local rino, reply with local rino
     		if ($rino_remote < $rino) $rino = $rino_remote;
    -		
    +
     		if((($r[0]['rel']) && ($r[0]['rel'] != CONTACT_IS_SHARING)) || ($r[0]['page-flags'] == PAGE_COMMUNITY)) {
     			$perm = 'rw';
     		}
    diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php
    index 62b6f4bd7..7e5b67b7c 100644
    --- a/mod/dfrn_request.php
    +++ b/mod/dfrn_request.php
    @@ -836,7 +836,10 @@ function dfrn_request_content(&$a) {
     		//$emailnet = (($mail_disabled) ? '' : t("Connect as an email follower \x28Coming soon\x29"));
     		$emailnet = "";
     
    -		$invite_desc = t('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.');
    +		$invite_desc = sprintf(
    +			t('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.'),
    +			get_server()
    +		);
     
     		$o .= replace_macros($tpl,array(
     			'$header' => t('Friend/Connection Request'),
    diff --git a/mod/directory.php b/mod/directory.php
    index cce281881..fa3a89e45 100644
    --- a/mod/directory.php
    +++ b/mod/directory.php
    @@ -47,7 +47,7 @@ function directory_content(&$a) {
     	$tpl = get_markup_template('directory_header.tpl');
     
     	$globaldir = '';
    -	$gdirpath = dirname(get_config('system','directory_submit_url'));
    +	$gdirpath = get_config('system','directory');
     	if(strlen($gdirpath)) {
     		$globaldir = '';
    diff --git a/mod/dirfind.php b/mod/dirfind.php
    index 0c6d79480..b0d578a3c 100644
    --- a/mod/dirfind.php
    +++ b/mod/dirfind.php
    @@ -1,9 +1,9 @@
     page,'aside'))
     		$a->page['aside'] = '';
     
    @@ -14,13 +14,22 @@ function dirfind_init(&$a) {
     
     
     
    -function dirfind_content(&$a) {
    +function dirfind_content(&$a, $prefix = "") {
     
    -	$search = notags(trim($_REQUEST['search']));
    +	$community = false;
    +
    +	$local = get_config('system','poco_local_search');
    +
    +	$search = $prefix.notags(trim($_REQUEST['search']));
     
     	if(strpos($search,'@') === 0)
     		$search = substr($search,1);
    -	
    +
    +	if(strpos($search,'!') === 0) {
    +		$search = substr($search,1);
    +		$community = true;
    +	}
    +
     	$o = '';
     
     	$o .= replace_macros(get_markup_template("section_title.tpl"),array(
    @@ -29,16 +38,73 @@ function dirfind_content(&$a) {
     
     	if($search) {
     
    -		$p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
    -			
    -		if(strlen(get_config('system','directory_submit_url')))
    -			$x = fetch_url('http://dir.friendica.com/lsearch?f=' . $p .  '&search=' . urlencode($search));
    +		if ($local) {
     
    -//TODO fallback local search if global dir not available.
    -//		else
    -//			$x = post_url($a->get_baseurl() . '/lsearch', $params);
    +			if ($community)
    +				$extra_sql = " AND `community`";
    +			else
    +				$extra_sql = "";
     
    -		$j = json_decode($x);
    +			$perpage = 80;
    +			$startrec = (($a->pager['page']) * $perpage) - $perpage;
    +
    +			$count = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND
    +					(`url` REGEXP '%s' OR `name` REGEXP '%s' OR `location` REGEXP '%s' OR
    +						`about` REGEXP '%s' OR `keywords` REGEXP '%s')".$extra_sql,
    +					dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA),
    +					dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)),
    +					dbesc(escape_tags($search)), dbesc(escape_tags($search)));
    +
    +			$results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`keywords`
    +					FROM `gcontact`
    +					LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
    +						AND `contact`.`uid` = %d AND NOT `contact`.`blocked`
    +						AND NOT `contact`.`pending` AND `contact`.`rel` IN ('%s', '%s')
    +					WHERE `gcontact`.`network` IN ('%s', '%s', '%s') AND
    +					((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)) AND
    +					(`gcontact`.`url` REGEXP '%s' OR `gcontact`.`name` REGEXP '%s' OR `gcontact`.`location` REGEXP '%s' OR
    +						`gcontact`.`about` REGEXP '%s' OR `gcontact`.`keywords` REGEXP '%s') $extra_sql
    +						GROUP BY `gcontact`.`nurl`
    +						ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d",
    +					intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
    +					dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA),
    +					dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)),
    +					dbesc(escape_tags($search)), dbesc(escape_tags($search)),
    +					intval($startrec), intval($perpage));
    +			$j = new stdClass();
    +			$j->total = $count[0]["total"];
    +			$j->items_page = $perpage;
    +			$j->page = $a->pager['page'];
    +			foreach ($results AS $result) {
    +				if (poco_alternate_ostatus_url($result["url"]))
    +					 continue;
    +
    +				if ($result["name"] == "") {
    +					$urlparts = parse_url($result["url"]);
    +					$result["name"] = end(explode("/", $urlparts["path"]));
    +				}
    +
    +				$objresult = new stdClass();
    +				$objresult->cid = $result["cid"];
    +				$objresult->name = $result["name"];
    +				$objresult->url = $result["url"];
    +				$objresult->photo = $result["photo"];
    +				$objresult->tags = $result["keywords"];
    +
    +				$j->results[] = $objresult;
    +			}
    +
    +			// Add found profiles from the global directory to the local directory
    +			proc_run('php','include/discover_poco.php', "dirsearch", urlencode($search));
    +		} else {
    +
    +			$p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
    +
    +			if(strlen(get_config('system','directory')))
    +				$x = fetch_url(get_server().'/lsearch?f=' . $p .  '&search=' . urlencode($search));
    +
    +			$j = json_decode($x);
    +		}
     
     		if($j->total) {
     			$a->set_pager_total($j->total);
    @@ -46,21 +112,34 @@ function dirfind_content(&$a) {
     		}
     
     		if(count($j->results)) {
    -			
    +
     			$tpl = get_markup_template('match.tpl');
     			foreach($j->results as $jj) {
    -				
    +
    +				// If We already know this contact then don't show the "connect" button
    +				if ($jj->cid > 0) {
    +					$connlnk = "";
    +					$conntxt = "";
    +				} else {
    +					$connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url);
    +					$conntxt = t('Connect');
    +				}
    +
    +				$jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
    +
     				$o .= replace_macros($tpl,array(
     					'$url' => zrl($jj->url),
     					'$name' => $jj->name,
    -					'$photo' => $jj->photo,
    -					'$tags' => $jj->tags
    +					'$photo' => proxy_url($jj->photo),
    +					'$tags' => $jj->tags,
    +					'$conntxt' => $conntxt,
    +					'$connlnk' => $connlnk,
     				));
     			}
     		}
     		else {
     			info( t('No matches') . EOL);
    -		}		
    +		}
     
     	}
     
    diff --git a/mod/display.php b/mod/display.php
    index 60dfdeff2..be5dd7cae 100644
    --- a/mod/display.php
    +++ b/mod/display.php
    @@ -18,7 +18,7 @@ function display_init(&$a) {
     		if (local_user()) {
     			$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());
    +					AND `guid` = '%s' AND `uid` = %d", dbesc($a->argv[1]), local_user());
     			if (count($r)) {
     				$nick = $a->user["nickname"];
     				$itemuid = local_user();
    @@ -34,7 +34,7 @@ function display_init(&$a) {
     					AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
     					AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
     					AND `item`.`private` = 0 AND NOT `user`.`hidewall`
    -					AND `item`.`guid` = '%s'", $a->argv[1]);
    +					AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
     				//	AND `item`.`private` = 0 AND `item`.`wall` = 1
     			if (count($r)) {
     				$nick = $r[0]["nickname"];
    @@ -50,7 +50,7 @@ function display_init(&$a) {
     					AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
     					AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
     					AND `item`.`private` = 0 AND `item`.`uid` = 0
    -					AND `item`.`guid` = '%s'", $a->argv[1]);
    +					AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
     				//	AND `item`.`private` = 0 AND `item`.`wall` = 1
     		}
     		if (count($r)) {
    @@ -255,7 +255,7 @@ function display_content(&$a, $update = 0) {
     			if (local_user()) {
     				$r = q("SELECT `id` 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());
    +						AND `guid` = '%s' AND `uid` = %d", dbesc($a->argv[1]), local_user());
     				if (count($r)) {
     					$item_id = $r[0]["id"];
     					$nick = $a->user["nickname"];
    @@ -268,7 +268,7 @@ function display_content(&$a, $update = 0) {
     						AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
     						AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
     						AND `item`.`private` = 0  AND NOT `user`.`hidewall`
    -						AND `item`.`guid` = '%s'", $a->argv[1]);
    +						AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
     					//	AND `item`.`private` = 0 AND `item`.`wall` = 1
     				if (count($r)) {
     					$item_id = $r[0]["id"];
    @@ -281,7 +281,7 @@ function display_content(&$a, $update = 0) {
     						AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
     						AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
     						AND `item`.`private` = 0  AND `item`.`uid` = 0
    -						AND `item`.`guid` = '%s'", $a->argv[1]);
    +						AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
     					//	AND `item`.`private` = 0 AND `item`.`wall` = 1
     				if (count($r)) {
     					$item_id = $r[0]["id"];
    @@ -351,7 +351,7 @@ function display_content(&$a, $update = 0) {
     			'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'),
    -			'acl' => populate_acl($a->user),
    +			'acl' => populate_acl($a->user, true),
     			'bang' => '',
     			'visitor' => 'block',
     			'profile_uid' => local_user(),
    @@ -412,7 +412,7 @@ function display_content(&$a, $update = 0) {
     
     			$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,  `item`.`network` AS `item_network`,
     				`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
    -				`contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
    +				`contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
     				`contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
     				FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
     				AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
    diff --git a/mod/fbrowser.php b/mod/fbrowser.php
    index 075846e50..e7f4b76d4 100644
    --- a/mod/fbrowser.php
    +++ b/mod/fbrowser.php
    @@ -11,47 +11,54 @@ require_once('include/Photo.php');
      * @param App $a
      */
     function fbrowser_content($a){
    -	
    +
     	if (!local_user())
     		killme();
     
     	if ($a->argc==1)
     		killme();
    -	
    -	//echo "
    "; var_dump($a->argv); killme();	
    -	
    +
    +	$template_file = "filebrowser.tpl";
    +	$mode = "";
    +	if (x($_GET,'mode')) {
    +		$template_file = "filebrowser_plain.tpl";
    +		$mode  = "?mode=".$_GET['mode'];
    +	}
    +
    +	//echo "
    "; var_dump($a->argv); killme();
    +
     	switch($a->argv[1]){
     		case "image":
    -			$path = array( array($a->get_baseurl()."/fbrowser/image/", t("Photos")));
    +			$path = array( array("", t("Photos")));
     			$albums = false;
     			$sql_extra = "";
     			$sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
    -			
    +
     			if ($a->argc==2){
     				$albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d ",
     					intval(local_user())
     				);
     				// anon functions only from 5.3.0... meglio tardi che mai..
    -				function folder1($el){return array(bin2hex($el['album']),$el['album']);}	
    -				$albums = array_map( "folder1" , $albums);
    -				
    +				$folder1 = function($el) use ($mode) {return array(bin2hex($el['album']),$el['album']);};
    +				$albums = array_map( $folder1 , $albums);
    +
     			}
    -			
    +
     			$album = "";
     			if ($a->argc==3){
     				$album = hex2bin($a->argv[2]);
     				$sql_extra = sprintf("AND `album` = '%s' ",dbesc($album));
     				$sql_extra2 = "";
    -				$path[]=array($a->get_baseurl()."/fbrowser/image/".$a->argv[2]."/", $album);
    +				$path[]=array($a->argv[2], $album);
     			}
    -				
    -			$r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`  
    -					FROM `photo` WHERE `uid` = %d AND (height <= 320 AND width <= 320) $sql_extra
    +
    +			$r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`
    +					FROM `photo` WHERE `uid` = %d  $sql_extra
     					GROUP BY `resource-id` $sql_extra2",
    -				intval(local_user())					
    +				intval(local_user())
     			);
    -			
    -			function files1($rr){ 
    +
    +			function files1($rr){
     				global $a;
     				$types = Photo::supportedTypes();
     				$ext = $types[$rr['type']];
    @@ -63,33 +70,35 @@ function fbrowser_content($a){
     					$filename_e = $rr['filename'];
     				}
     
    -				return array( 
    -					$a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['hiq'] . '.' .$ext, 
    -					$filename_e, 
    +				return array(
    +					$a->get_baseurl() . '/photo/' . $rr['resource-id'] . '.' .$ext,
    +					$filename_e,
     					$a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['loq'] . '.'. $ext
     				);
     			}
     			$files = array_map("files1", $r);
    -			
    -			$tpl = get_markup_template("filebrowser.tpl");
    -			echo replace_macros($tpl, array(
    +
    +			$tpl = get_markup_template($template_file);
    +
    +			$o =  replace_macros($tpl, array(
     				'$type' => 'image',
     				'$baseurl' => $a->get_baseurl(),
     				'$path' => $path,
     				'$folders' => $albums,
     				'$files' =>$files,
     				'$cancel' => t('Cancel'),
    +				'$nickname' => $a->user['nickname'],
     			));
    -				
    -				
    +
    +
     			break;
     		case "file":
     			if ($a->argc==2){
     				$files = q("SELECT id, filename, filetype FROM `attach` WHERE `uid` = %d ",
     					intval(local_user())
     				);
    -				
    -				function files2($rr){ global $a; 
    +
    +				function files2($rr){ global $a;
     					list($m1,$m2) = explode("/",$rr['filetype']);
     					$filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
     
    @@ -100,28 +109,34 @@ function fbrowser_content($a){
     						$filename_e = $rr['filename'];
     					}
     
    -					return array( $a->get_baseurl() . '/attach/' . $rr['id'], $filename_e, $a->get_baseurl() . '/images/icons/16/' . $filetype . '.png'); 
    +					return array( $a->get_baseurl() . '/attach/' . $rr['id'], $filename_e, $a->get_baseurl() . '/images/icons/16/' . $filetype . '.png');
     				}
     				$files = array_map("files2", $files);
     				//echo "
    "; var_dump($files); killme();
    -			
    -							
    -				$tpl = get_markup_template("filebrowser.tpl");
    -				echo replace_macros($tpl, array(
    +
    +
    +				$tpl = get_markup_template($template_file);
    +				$o = replace_macros($tpl, array(
     					'$type' => 'file',
     					'$baseurl' => $a->get_baseurl(),
    -					'$path' => array( array($a->get_baseurl()."/fbrowser/image/", t("Files")) ),
    +					'$path' => array( array( "", t("Files")) ),
     					'$folders' => false,
     					'$files' =>$files,
     					'$cancel' => t('Cancel'),
    +					'$nickname' => $a->user['nickname'],
     				));
    -				
    +
     			}
    -		
    +
     			break;
     	}
    -	
     
    -	killme();
    -	
    +	if (x($_GET,'mode')) {
    +		return $o;
    +	} else {
    +		echo $o;
    +		killme();
    +	}
    +
    +
     }
    diff --git a/mod/follow.php b/mod/follow.php
    index 95f95d024..bdcde7743 100755
    --- a/mod/follow.php
    +++ b/mod/follow.php
    @@ -2,6 +2,7 @@
     
     require_once('include/Scrape.php');
     require_once('include/follow.php');
    +require_once('include/contact_selectors.php');
     
     function follow_content(&$a) {
     
    @@ -14,10 +15,12 @@ function follow_content(&$a) {
     	$uid = local_user();
     	$url = notags(trim($_REQUEST['url']));
     
    -	$r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND
    +	// There is a current issue. It seems as if you can't start following a Friendica that is following you
    +	// With Diaspora this works - but Friendica is special, it seems ...
    +	$r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND ((`rel` != %d) OR (`network` = '%s')) AND
     		(`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND
     		`network` != '%s' LIMIT 1",
    -		intval(local_user()), dbesc(normalise_link($url)),
    +		intval(local_user()), dbesc(CONTACT_IS_FOLLOWER), dbesc(NETWORK_DFRN), dbesc(normalise_link($url)),
     		dbesc(normalise_link($url)), dbesc($url), dbesc(NETWORK_STATUSNET));
     
     	if ($r) {
    @@ -28,6 +31,9 @@ function follow_content(&$a) {
     
     	$ret = probe_url($url);
     
    +	if ($ret["network"] == NETWORK_MAIL)
    +		$ret["url"] = $ret["addr"];
    +
     	if($ret['network'] === NETWORK_DFRN) {
     		$request = $ret["request"];
     		$tpl = get_markup_template('dfrn_request.tpl');
    @@ -49,8 +55,15 @@ function follow_content(&$a) {
     	// Makes the connection request for friendica contacts easier
     	$_SESSION["fastlane"] = $ret["url"];
     
    +	$header = $ret["name"];
    +
    +	if ($ret["addr"] != "")
    +		$header .= " <".$ret["addr"].">";
    +
    +	$header .= " (".network_to_name($ret['network']).")";
    +
     	$o  = replace_macros($tpl,array(
    -			'$header' => $ret["name"]." (".$ret["addr"].")",
    +			'$header' => htmlentities($header),
     			'$photo' => $ret["photo"],
                             '$desc' => "",
                             '$pls_answer' => t('Please answer the following:'),
    diff --git a/mod/friendica.php b/mod/friendica.php
    index 7b99f9e6f..9fa203f58 100644
    --- a/mod/friendica.php
    +++ b/mod/friendica.php
    @@ -61,7 +61,7 @@ function friendica_content(&$a) {
     
     	$o .= t('Please visit Friendica.com to learn more about the Friendica project.') . '

    '; - $o .= t('Bug reports and issues: please visit') . ' ' . 'the bucktracker at github

    '; + $o .= t('Bug reports and issues: please visit') . ' ' . ''.t('the bugtracker at github').'

    '; $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '

    '; $o .= '

    '; diff --git a/mod/install.php b/mod/install.php index 99ebfc6ba..182495d25 100755 --- a/mod/install.php +++ b/mod/install.php @@ -392,6 +392,7 @@ function check_funcs(&$checks) { check_add($ck_funcs, t('OpenSSL PHP module'), true, true, ""); check_add($ck_funcs, t('mysqli PHP module'), true, true, ""); check_add($ck_funcs, t('mb_string PHP module'), true, true, ""); + check_add($ck_funcs, t('mcrypt PHP module'), true, true, ""); if(function_exists('apache_get_modules')){ @@ -422,7 +423,13 @@ function check_funcs(&$checks) { $ck_funcs[4]['status']= false; $ck_funcs[4]['help']= t('Error: mb_string PHP module required but not installed.'); } + if(! function_exists('mcrypt_create_iv')){ + $ck_funcs[5]['status']= false; + $ck_funcs[5]['help']= t('Error: mcrypt PHP module required but not installed.'); + } + + $checks = array_merge($checks, $ck_funcs); /*if((x($_SESSION,'sysmsg')) && is_array($_SESSION['sysmsg']) && count($_SESSION['sysmsg'])) diff --git a/mod/invite.php b/mod/invite.php index aea92a663..ccf876c7c 100644 --- a/mod/invite.php +++ b/mod/invite.php @@ -112,15 +112,15 @@ function invite_content(&$a) { notice( t('You have no more invitations available') . EOL); return ''; } - } + } - $dirloc = get_config('system','directory_submit_url'); + $dirloc = get_config('system','directory'); if(strlen($dirloc)) { if($a->config['register_policy'] == REGISTER_CLOSED) - $linktxt = sprintf( t('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.'), dirname($dirloc) . '/siteinfo'); + $linktxt = sprintf( t('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.'), $dirloc . '/siteinfo'); elseif($a->config['register_policy'] != REGISTER_CLOSED) $linktxt = sprintf( t('To accept this invitation, please visit and register at %s or any other public Friendica website.'), $a->get_baseurl()) - . "\r\n" . "\r\n" . sprintf( t('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.'),dirname($dirloc) . '/siteinfo'); + . "\r\n" . "\r\n" . sprintf( t('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.'),$dirloc . '/siteinfo'); } else { $o = t('Our apologies. This system is not currently configured to connect with other public sites or invite members.'); @@ -141,4 +141,4 @@ function invite_content(&$a) { )); return $o; -} \ No newline at end of file +} diff --git a/mod/item.php b/mod/item.php index a5f483b35..d203ce64d 100644 --- a/mod/item.php +++ b/mod/item.php @@ -674,7 +674,7 @@ function item_post(&$a) { $notify_type = (($parent) ? 'comment-new' : 'wall-new' ); - $uri = (($message_id) ? $message_id : item_new_uri($a->get_hostname(),$profile_uid)); + $uri = (($message_id) ? $message_id : item_new_uri($a->get_hostname(),$profile_uid, $guid)); // Fallback so that we alway have a thr-parent if(!$thr_parent) diff --git a/mod/match.php b/mod/match.php index 777363642..74f83a6cc 100644 --- a/mod/match.php +++ b/mod/match.php @@ -1,5 +1,7 @@ page['aside'] .= follow_widget(); + $a->page['aside'] .= findpeople_widget(); + $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; $o .= replace_macros(get_markup_template("section_title.tpl"),array( @@ -17,7 +22,7 @@ function match_content(&$a) { intval(local_user()) ); if(! count($r)) - return; + return; if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) { notice( t('No keywords to match. Please add keywords to your default profile.') . EOL); return; @@ -26,14 +31,14 @@ function match_content(&$a) { $params = array(); $tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']); - + if($tags) { $params['s'] = $tags; if($a->pager['page'] != 1) $params['p'] = $a->pager['page']; - - if(strlen(get_config('system','directory_submit_url'))) - $x = post_url('http://dir.friendica.com/msearch', $params); + + if(strlen(get_config('system','directory'))) + $x = post_url(get_server().'/msearch', $params); else $x = post_url($a->get_baseurl() . '/msearch', $params); @@ -47,31 +52,30 @@ function match_content(&$a) { if(count($j->results)) { - + $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { - $match_nurl = normalise_link($jj->url); - $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1", - intval(local_user()), - dbesc($match_nurl)); - if (!count($match)) { - - $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url; - $o .= replace_macros($tpl,array( - '$url' => zrl($jj->url), - '$name' => $jj->name, - '$photo' => proxy_url($jj->photo), - '$inttxt' => ' ' . t('is interested in:'), - '$conntxt' => t('Connect'), - '$connlnk' => $connlnk, - '$tags' => $jj->tags - )); - } + $match_nurl = normalise_link($jj->url); + $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1", + intval(local_user()), + dbesc($match_nurl)); + if (!count($match)) { + $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); + $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url; + $o .= replace_macros($tpl,array( + '$url' => zrl($jj->url), + '$name' => $jj->name, + '$photo' => proxy_url($jj->photo), + '$inttxt' => ' ' . t('is interested in:'), + '$conntxt' => t('Connect'), + '$connlnk' => $connlnk, + '$tags' => $jj->tags + )); + } } - } - else { + } else { info( t('No matches') . EOL); - } + } } diff --git a/mod/message.php b/mod/message.php index 178d99bba..1331ce7fb 100644 --- a/mod/message.php +++ b/mod/message.php @@ -9,8 +9,9 @@ function message_init(&$a) { 'label' => t('New Message'), 'url' => $a->get_baseurl(true) . '/message/new', 'sel'=> ($a->argv[1] == 'new'), + 'accesskey' => 'm', ); - + $tpl = get_markup_template('message_side.tpl'); $a->page['aside'] = replace_macros($tpl, array( '$tabs'=>$tabs, @@ -29,7 +30,7 @@ function message_init(&$a) { '$baseurl' => $a->get_baseurl(true), '$base' => $base )); - + } function message_post(&$a) { diff --git a/mod/network.php b/mod/network.php index 556221870..a92e0c691 100644 --- a/mod/network.php +++ b/mod/network.php @@ -45,7 +45,7 @@ function network_init(&$a) { else if($sel_groups !== false) { $net_baseurl .= '/' . $sel_groups; } - + if($remember_tab) { // redirect if current selected tab is '/network' and // last selected tab is _not_ '/network?f=&order=comment'. @@ -91,17 +91,17 @@ function network_init(&$a) { else if($sel_nets!==false) { $net_args['nets'] = $sel_nets; } - + if($remember_tab || $remember_net || $remember_group) { $net_args = array_merge($query_array, $net_args); $net_queries = build_querystring($net_args); - + $redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl); - + goaway($a->get_baseurl() . $redir_url); } } - + if(x($_GET['nets']) && $_GET['nets'] === 'all') unset($_GET['nets']); @@ -359,12 +359,14 @@ function network_content(&$a, $update = 0) { 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), 'sel'=>$all_active, 'title'=> t('Sort by Comment Date'), + 'accesskey' => "e", ), array( 'label' => t('Posted Order'), 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), 'sel'=>$postord_active, 'title' => t('Sort by Post Date'), + 'accesskey' => "t", ), ); @@ -374,6 +376,7 @@ function network_content(&$a, $update = 0) { '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'), + 'accesskey' => "r", ); } @@ -383,6 +386,7 @@ function network_content(&$a, $update = 0) { 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''), 'sel' => $new_active, 'title' => t('Activity Stream - by date'), + 'accesskey' => "w", ); } @@ -392,6 +396,7 @@ function network_content(&$a, $update = 0) { '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'), + 'accesskey' => "b", ); } @@ -401,6 +406,7 @@ function network_content(&$a, $update = 0) { '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'), + 'accesskey' => "m", ); } @@ -479,8 +485,8 @@ function network_content(&$a, $update = 0) { 'allow_location' => $a->user['allow_location'], 'default_location' => $a->user['default-location'], 'nickname' => $a->user['nickname'], - 'lockstate'=> ((($group) || ($cid) || ($nets) || (is_array($a->user) && - ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || + 'lockstate'=> ((($group) || ($cid) || ($nets) || (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((($group || $cid || $nets) ? $def_acl : $a->user), true), @@ -546,8 +552,8 @@ function network_content(&$a, $update = 0) { //$sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` WHERE (`contact-id` IN ($contact_str) OR `allow_gid` like '".protect_sprintf('%<'.intval($group).'>%')."') and deleted = 0 ORDER BY `created` DESC) AS `temp1` ON $sql_table.$sql_parent = `temp1`.`parent` "; $sql_extra3 .= " AND `contact-id` IN ($contact_str$contact_str_self) "; - $sql_extra3 .= " AND EXISTS (SELECT id FROM `item` WHERE (`contact-id` IN ($contact_str) - OR `allow_gid` like '".protect_sprintf('%<'.intval($group).'>%')."') and deleted = 0 + $sql_extra3 .= " AND EXISTS (SELECT id FROM `item` WHERE (`contact-id` IN ($contact_str) + OR `allow_gid` like '".protect_sprintf('%<'.intval($group).'>%')."') and deleted = 0 AND parent = $sql_table.$sql_parent) "; $o = replace_macros(get_markup_template("section_title.tpl"),array( diff --git a/mod/nodeinfo.php b/mod/nodeinfo.php new file mode 100644 index 000000000..f013c9084 --- /dev/null +++ b/mod/nodeinfo.php @@ -0,0 +1,265 @@ + array(array("rel" => "http://nodeinfo.diaspora.software/ns/schema/1.0", + "href" => $a->get_baseurl()."/nodeinfo/1.0"))); + + header('Content-type: application/json; charset=utf-8'); + echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES); + exit; +} + +function nodeinfo_init(&$a){ + if (!get_config("system", "nodeinfo")) { + http_status_exit(404); + killme(); + } + + if (($a->argc != 2) OR ($a->argv[1] != "1.0")) { + http_status_exit(404); + killme(); + } + + $smtp = (function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only")); + + $nodeinfo = array(); + $nodeinfo["version"] = "1.0"; + $nodeinfo["software"] = array("name" => "friendica", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION); + + $nodeinfo["protocols"] = array(); + $nodeinfo["protocols"]["inbound"] = array(); + $nodeinfo["protocols"]["outbound"] = array(); + + if (get_config("system","diaspora_enabled")) { + $nodeinfo["protocols"]["inbound"][] = "diaspora"; + $nodeinfo["protocols"]["outbound"][] = "diaspora"; + } + + $nodeinfo["protocols"]["inbound"][] = "friendica"; + $nodeinfo["protocols"]["outbound"][] = "friendica"; + + if (!get_config("system","ostatus_disabled")) { + $nodeinfo["protocols"]["inbound"][] = "gnusocial"; + $nodeinfo["protocols"]["outbound"][] = "gnusocial"; + } + + $nodeinfo["services"] = array(); + $nodeinfo["services"]["inbound"] = array(); + $nodeinfo["services"]["outbound"] = array(); + + $nodeinfo["openRegistrations"] = ($a->config['register_policy'] != 0); + + $nodeinfo["usage"] = array(); + $nodeinfo["usage"]["users"] = array("total" => (int)get_config("nodeinfo","total_users"), + "activeHalfyear" => (int)get_config("nodeinfo","active_users_halfyear"), + "activeMonth" => (int)get_config("nodeinfo","active_users_monthly")); + $nodeinfo["usage"]["localPosts"] = (int)get_config("nodeinfo","local_posts"); + $nodeinfo["usage"]["localComments"] = (int)get_config("nodeinfo","local_comments"); + + $nodeinfo["metadata"] = array("nodeName" => $a->config["sitename"]); + + if (nodeinfo_plugin_enabled("appnet")) + $nodeinfo["services"]["inbound"][] = "appnet"; + + if (nodeinfo_plugin_enabled("appnet") OR nodeinfo_plugin_enabled("buffer")) + $nodeinfo["services"]["outbound"][] = "appnet"; + + if (nodeinfo_plugin_enabled("blogger")) + $nodeinfo["services"]["outbound"][] = "blogger"; + + if (nodeinfo_plugin_enabled("dwpost")) + $nodeinfo["services"]["outbound"][] = "dreamwidth"; + + if (nodeinfo_plugin_enabled("fbpost") OR nodeinfo_plugin_enabled("buffer")) + $nodeinfo["services"]["outbound"][] = "facebook"; + + if (nodeinfo_plugin_enabled("statusnet")) { + $nodeinfo["services"]["inbound"][] = "gnusocial"; + $nodeinfo["services"]["outbound"][] = "gnusocial"; + } + + if (nodeinfo_plugin_enabled("gpluspost") OR nodeinfo_plugin_enabled("buffer")) + $nodeinfo["services"]["outbound"][] = "google"; + + if (nodeinfo_plugin_enabled("ijpost")) + $nodeinfo["services"]["outbound"][] = "insanejournal"; + + if (nodeinfo_plugin_enabled("libertree")) + $nodeinfo["services"]["outbound"][] = "libertree"; + + if (nodeinfo_plugin_enabled("buffer")) + $nodeinfo["services"]["outbound"][] = "linkedin"; + + if (nodeinfo_plugin_enabled("ljpost")) + $nodeinfo["services"]["outbound"][] = "livejournal"; + + if (nodeinfo_plugin_enabled("buffer")) + $nodeinfo["services"]["outbound"][] = "pinterest"; + + if (nodeinfo_plugin_enabled("posterous")) + $nodeinfo["services"]["outbound"][] = "posterous"; + + if (nodeinfo_plugin_enabled("pumpio")) { + $nodeinfo["services"]["inbound"][] = "pumpio"; + $nodeinfo["services"]["outbound"][] = "pumpio"; + } + + // redmatrix + + if ($smtp) + $nodeinfo["services"]["outbound"][] = "smtp"; + + if (nodeinfo_plugin_enabled("tumblr")) + $nodeinfo["services"]["outbound"][] = "tumblr"; + + if (nodeinfo_plugin_enabled("twitter") OR nodeinfo_plugin_enabled("buffer")) + $nodeinfo["services"]["outbound"][] = "twitter"; + + if (nodeinfo_plugin_enabled("wppost")) + $nodeinfo["services"]["outbound"][] = "wordpress"; + + $nodeinfo["metadata"]["protocols"] = $nodeinfo["protocols"]; + $nodeinfo["metadata"]["protocols"]["outbound"][] = "atom1.0"; + $nodeinfo["metadata"]["protocols"]["inbound"][] = "atom1.0"; + $nodeinfo["metadata"]["protocols"]["inbound"][] = "rss2.0"; + + $nodeinfo["metadata"]["services"] = $nodeinfo["services"]; + + if (nodeinfo_plugin_enabled("twitter")) + $nodeinfo["metadata"]["services"]["inbound"][] = "twitter"; + + header('Content-type: application/json; charset=utf-8'); + echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES); + exit; +} + +function nodeinfo_plugin_enabled($plugin) { + $r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = '%s'", $plugin); + return((bool)(count($r) > 0)); +} + +function nodeinfo_cron() { + + $a = get_app(); + + // If the plugin "statistics_json" is enabled then disable it and actrivate nodeinfo. + if (nodeinfo_plugin_enabled("statistics_json")) { + set_config("system", "nodeinfo", true); + + $plugin = "statistics_json"; + $plugins = get_config("system","addon"); + $plugins_arr = array(); + + if($plugins) { + $plugins_arr = explode(",",str_replace(" ", "",$plugins)); + + $idx = array_search($plugin, $plugins_arr); + if ($idx !== false){ + unset($plugins_arr[$idx]); + uninstall_plugin($plugin); + set_config("system","addon", implode(", ",$plugins_arr)); + } + } + } + + if (!get_config("system", "nodeinfo")) + return; + + $last = get_config('nodeinfo','last_calucation'); + + if($last) { + // Calculate every 24 hours + $next = $last + (24 * 60 * 60); + if($next > time()) { + logger("calculation intervall not reached"); + return; + } + } + logger("cron_start"); + + $users = q("SELECT profile.*, `user`.`login_date`, `lastitem`.`lastitem_date` + FROM (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid` + FROM `item` + WHERE `item`.`type` = 'wall' + GROUP BY `item`.`uid`) AS `lastitem` + RIGHT OUTER JOIN `user` ON `user`.`uid` = `lastitem`.`uid`, `contact`, `profile` + WHERE + `user`.`uid` = `contact`.`uid` AND `profile`.`uid` = `user`.`uid` + AND `profile`.`is-default` AND (`profile`.`publish` OR `profile`.`net-publish`) + AND `user`.`verified` AND `contact`.`self` + AND NOT `user`.`blocked` + AND NOT `user`.`account_removed` + AND NOT `user`.`account_expired`"); + + if (is_array($users)) { + $total_users = count($users); + $active_users_halfyear = 0; + $active_users_monthly = 0; + + $halfyear = time() - (180 * 24 * 60 * 60); + $month = time() - (30 * 24 * 60 * 60); + + foreach ($users AS $user) { + if ((strtotime($user['login_date']) > $halfyear) OR + (strtotime($user['lastitem_date']) > $halfyear)) + ++$active_users_halfyear; + + if ((strtotime($user['login_date']) > $month) OR + (strtotime($user['lastitem_date']) > $month)) + ++$active_users_monthly; + + } + set_config('nodeinfo','total_users', $total_users); + logger("total_users: ".$total_users, LOGGER_DEBUG); + + set_config('nodeinfo','active_users_halfyear', $active_users_halfyear); + set_config('nodeinfo','active_users_monthly', $active_users_monthly); + } + + //$posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` AND `uid` != 0 AND `id` = `parent` AND left(body, 6) != '[share'"); + $posts = q("SELECT COUNT(*) AS `local_posts` FROM `item` + INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + WHERE `contact`.`self` and `item`.`id` = `item`.`parent` AND left(body, 6) != '[share' AND `item`.`network` IN ('%s', '%s', '%s')", + dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN)); + + if (!is_array($posts)) + $local_posts = -1; + else + $local_posts = $posts[0]["local_posts"]; + + set_config('nodeinfo','local_posts', $local_posts); + + logger("local_posts: ".$local_posts, LOGGER_DEBUG); + + $posts = q("SELECT COUNT(*) AS `local_comments` FROM `item` + INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + WHERE `contact`.`self` and `item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')", + dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN)); + + if (!is_array($posts)) + $local_comments = -1; + else + $local_comments = $posts[0]["local_comments"]; + + set_config('nodeinfo','local_comments', $local_comments); + + // Now trying to register + $url = "http://the-federation.info/register/".$a->get_hostname(); + logger('registering url: '.$url, LOGGER_DEBUG); + $ret = fetch_url($url); + logger('registering answer: '.$ret, LOGGER_DEBUG); + + logger("cron_end"); + set_config('nodeinfo','last_calucation', time()); +} + +?> diff --git a/mod/nogroup.php b/mod/nogroup.php index 24d99a59b..adbcfcb51 100644 --- a/mod/nogroup.php +++ b/mod/nogroup.php @@ -43,13 +43,13 @@ function nogroup_content(&$a) { 'id' => $rr['id'], 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, - 'thumb' => $rr['thumb'], + 'thumb' => $rr['thumb'], 'name' => $rr['name'], 'username' => $rr['name'], 'sparkle' => $sparkle, 'itemurl' => $rr['url'], 'url' => $url, - 'network' => network_to_name($rr['network']), + 'network' => network_to_name($rr['network'], $url), ); } } @@ -59,8 +59,8 @@ function nogroup_content(&$a) { '$header' => t('Contacts who are not members of a group'), '$contacts' => $contacts, '$paginate' => paginate($a), - )); - + )); + return $o; } diff --git a/mod/notifications.php b/mod/notifications.php index 2ecc2621e..44f6dd567 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -1,4 +1,5 @@ t('System'), 'url'=>$a->get_baseurl(true) . '/notifications/system', 'sel'=> (($a->argv[1] == 'system') ? 'active' : ''), + 'accesskey' => 'y', ), array( 'label' => t('Network'), 'url'=>$a->get_baseurl(true) . '/notifications/network', 'sel'=> (($a->argv[1] == 'network') ? 'active' : ''), + 'accesskey' => 'w', ), array( 'label' => t('Personal'), 'url'=>$a->get_baseurl(true) . '/notifications/personal', 'sel'=> (($a->argv[1] == 'personal') ? 'active' : ''), + 'accesskey' => 'r', ), array( 'label' => t('Home'), 'url' => $a->get_baseurl(true) . '/notifications/home', 'sel'=> (($a->argv[1] == 'home') ? 'active' : ''), + 'accesskey' => 'h', ), array( 'label' => t('Introductions'), 'url' => $a->get_baseurl(true) . '/notifications/intros', 'sel'=> (($a->argv[1] == 'intros') ? 'active' : ''), + 'accesskey' => 'i', ), /*array( 'label' => t('Messages'), @@ -130,8 +136,13 @@ function notifications_content(&$a) { $a->set_pager_itemspage(20); } - $r = q("SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.*, `fcontact`.`name` AS `fname`,`fcontact`.`url` AS `furl`,`fcontact`.`photo` AS `fphoto`,`fcontact`.`request` AS `frequest` - FROM `intro` LEFT JOIN `contact` ON `contact`.`id` = `intro`.`contact-id` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id` + $r = q("SELECT `intro`.`id` AS `intro_id`, `intro`.*, `contact`.*, `fcontact`.`name` AS `fname`,`fcontact`.`url` AS `furl`,`fcontact`.`photo` AS `fphoto`,`fcontact`.`request` AS `frequest`, + `gcontact`.`location` AS `glocation`, `gcontact`.`about` AS `gabout`, + `gcontact`.`keywords` AS `gkeywords`, `gcontact`.`gender` AS `ggender` + FROM `intro` + LEFT JOIN `contact` ON `contact`.`id` = `intro`.`contact-id` + LEFT JOIN `gcontact` ON `gcontact`.`nurl` = `contact`.`nurl` + LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id` WHERE `intro`.`uid` = %d $sql_extra AND `intro`.`blocked` = 0 ", intval($_SESSION['uid'])); @@ -203,8 +214,17 @@ function notifications_content(&$a) { '$uid' => $_SESSION['uid'], '$intro_id' => $rr['intro_id'], '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/person-175.jpg"), + '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), '$fullname' => $rr['name'], + '$location_label' => t('Location:'), + '$location' => $rr['glocation'], + '$location_label' => t('Location:'), + '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), + '$about_label' => t('About:'), + '$keywords' => $rr['gkeywords'], + '$keywords_label' => t('Tags:'), + '$gender' => $rr['ggender'], + '$gender_label' => t('Gender:'), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), '$url' => zrl($rr['url']), diff --git a/mod/ostatus_subscribe.php b/mod/ostatus_subscribe.php new file mode 100644 index 000000000..c950e9700 --- /dev/null +++ b/mod/ostatus_subscribe.php @@ -0,0 +1,78 @@ +".t("Subsribing to OStatus contacts").""; + + $uid = local_user(); + + $a = get_app(); + + $counter = intval($_REQUEST['counter']); + + if (get_pconfig($uid, "ostatus", "legacy_friends") == "") { + + if ($_REQUEST["url"] == "") + return $o.t("No contact provided."); + + $contact = probe_url($_REQUEST["url"]); + + if (!$contact) + return $o.t("Couldn't fetch information for contact."); + + $api = $contact["baseurl"]."/api/"; + + // Fetching friends + $data = z_fetch_url($api."statuses/friends.json?screen_name=".$contact["nick"]); + + if (!$data["success"]) + return $o.t("Couldn't fetch friends for contact."); + + set_pconfig($uid, "ostatus", "legacy_friends", $data["body"]); + } + + $friends = json_decode(get_pconfig($uid, "ostatus", "legacy_friends")); + + $total = sizeof($friends); + + if ($counter >= $total) { + $a->page['htmlhead'] = ''; + del_pconfig($uid, "ostatus", "legacy_friends"); + del_pconfig($uid, "ostatus", "legacy_contact"); + $o .= t("Done"); + return $o; + } + + $friend = $friends[$counter++]; + + $url = $friend->statusnet_profile_url; + + $o .= "

    ".$counter."/".$total.": ".$url; + + $data = probe_url($url); + if ($data["network"] == NETWORK_OSTATUS) { + $result = new_contact($uid,$url,true); + if ($result["success"]) + $o .= " - ".t("success"); + else + $o .= " - ".t("failed"); + } else + $o .= " - ".t("ignored"); + + $o .= "

    "; + + $o .= "

    ".t("Keep this window open until done.")."

    "; + + $a->page['htmlhead'] = ''; + + return $o; +} diff --git a/mod/p.php b/mod/p.php index 6bae99256..5c4b61984 100644 --- a/mod/p.php +++ b/mod/p.php @@ -19,7 +19,7 @@ function p_init($a){ $guid = strtolower(substr($guid, 0, -4)); - $item = q("SELECT `body`, `guid`, `contact-id`, `private`, `created`, `app` FROM `item` WHERE `uid` = 0 AND `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1", + $item = q("SELECT `title`, `body`, `guid`, `contact-id`, `private`, `created`, `app` FROM `item` WHERE `uid` = 0 AND `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1", dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA); if (!$item) { header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found')); @@ -39,8 +39,14 @@ function p_init($a){ $post["public"] = (!$item[0]["private"] ? 'true':'false'); $post["created_at"] = datetime_convert('UTC','UTC',$item[0]["created"]); } else { + + $body = bb2diaspora($item[0]["body"]); + + if(strlen($item[0]["title"])) + $body = "## ".html_entity_decode($item[0]["title"])."\n\n".$body; + $nodename = "status_message"; - $post["raw_message"] = str_replace("&", "&", bb2diaspora($item[0]["body"])); + $post["raw_message"] = str_replace("&", "&", $body); $post["guid"] = $item[0]["guid"]; $post["diaspora_handle"] = diaspora_handle_from_contact($item[0]["contact-id"]); $post["public"] = (!$item[0]["private"] ? 'true':'false'); diff --git a/mod/parse_url.php b/mod/parse_url.php index 71d767675..97eebb89a 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -50,6 +50,21 @@ function completeurl($url, $scheme) { return($complete); } +function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = true) { + + $data = Cache::get("parse_url:".$no_guessing.":".$do_oembed.":".$url); + if (!is_null($data)) { + $data = unserialize($data); + return $data; + } + + $data = parseurl_getsiteinfo($url, $no_guessing, $do_oembed); + + Cache::set("parse_url:".$no_guessing.":".$do_oembed.":".$url,serialize($data), CACHE_DAY); + + return $data; +} + function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1) { require_once("include/network.php"); diff --git a/mod/poco.php b/mod/poco.php index 89f2f879a..f84fc964d 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -61,12 +61,16 @@ function poco_init(&$a) { $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')", + //$r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`)) AND `network` IN ('%s')", + $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `updated` >= `last_failure` AND `network` IN ('%s', '%s', '%s')", dbesc($update_limit), - dbesc(NETWORK_DFRN) + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS) ); } elseif($system_mode) { - $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') + $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s') + AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`) AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ", dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -75,7 +79,8 @@ function poco_init(&$a) { ); } 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", + AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`) + AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra", intval($user['uid']), dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -93,19 +98,25 @@ function poco_init(&$a) { $startIndex = 0; $itemsPerPage = ((x($_GET,'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults); - if ($global) { - $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') LIMIT %d, %d", + logger("Start global query", LOGGER_DEBUG); + //$r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') AND ((`last_contact` >= `last_failure`) OR (`updated` > `last_failure`)) LIMIT %d, %d", + $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s', '%s', '%s') AND `updated` > `last_failure` + ORDER BY `updated` DESC LIMIT %d, %d", dbesc($update_limit), dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), intval($startIndex), intval($itemsPerPage) ); } elseif($system_mode) { + logger("Start system mode query", LOGGER_DEBUG); $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`, `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry` FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid` - WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default` + WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s') AND `profile`.`is-default` + AND ((`contact`.`success_update` >= `contact`.`failure_update`) OR (`contact`.`last-item` >= `contact`.`failure_update`)) 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), @@ -115,8 +126,10 @@ function poco_init(&$a) { intval($itemsPerPage) ); } else { + logger("Start query for user ".$user['nickname'], LOGGER_DEBUG); $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", + AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`) + AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra LIMIT %d, %d", intval($user['uid']), dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), @@ -126,6 +139,7 @@ function poco_init(&$a) { intval($itemsPerPage) ); } + logger("Query done", LOGGER_DEBUG); $ret = array(); if(x($_GET,'sorted')) @@ -206,13 +220,19 @@ function poco_init(&$a) { if (($rr['keywords'] == "") AND isset($rr['pub_keywords'])) $rr['keywords'] = $rr['pub_keywords']; + $about = Cache::get("about:".$rr['updated'].":".$rr['nurl']); + if (is_null($about)) { + $about = bbcode($rr['about'], false, false); + Cache::set("about:".$rr['updated'].":".$rr['nurl'],$about); + } + $entry = array(); if($fields_ret['id']) $entry['id'] = (int)$rr['id']; if($fields_ret['displayName']) $entry['displayName'] = $rr['name']; if($fields_ret['aboutMe']) - $entry['aboutMe'] = bbcode($rr['about'], false, false); + $entry['aboutMe'] = $about; if($fields_ret['currentLocation']) $entry['currentLocation'] = $rr['location']; if($fields_ret['gender']) @@ -295,6 +315,8 @@ function poco_init(&$a) { else http_status_exit(500); + logger("End of poco", LOGGER_DEBUG); + if($format === 'xml') { header('Content-type: text/xml'); echo replace_macros(get_markup_template('poco_xml.tpl'),array_xmlify(array('$response' => $ret))); diff --git a/mod/profile.php b/mod/profile.php index 94e3c0a37..608971d08 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -181,7 +181,7 @@ function profile_content(&$a, $update = 0) { $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false); $commvisitor = (($commpage && $remote_contact == true) ? true : false); - $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true); + $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true); $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : '')); if(can_write_wall($a,$a->profile['profile_uid'])) { @@ -191,8 +191,8 @@ function profile_content(&$a, $update = 0) { 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false), 'default_location' => (($is_owner) ? $a->user['default-location'] : ''), 'nickname' => $a->profile['nickname'], - 'lockstate' => (((is_array($a->user) && ((strlen($a->user['allow_cid'])) || - (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || + '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'), 'acl' => (($is_owner) ? populate_acl($a->user, true) : ''), 'bang' => '', @@ -302,9 +302,9 @@ function profile_content(&$a, $update = 0) { foreach($r as $rr) $parents_arr[] = $rr['item_id']; $parents_str = implode(', ', $parents_arr); - + $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`, - `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`, + `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` FROM `item`, `contact` diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 6607eebd0..aa8809059 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -118,7 +118,7 @@ function profile_photo_post(&$a) { info( t('Shift-reload the page or clear browser cache if the new photo does not display immediately.') . EOL); // Update global directory in background $url = $a->get_baseurl() . '/profile/' . $a->user['nickname']; - if($url && strlen(get_config('system','directory_submit_url'))) + if($url && strlen(get_config('system','directory'))) proc_run('php',"include/directory.php","$url"); require_once('include/profile_update.php'); @@ -217,7 +217,7 @@ function profile_photo_content(&$a) { // Update global directory in background $url = $_SESSION['my_url']; - if($url && strlen(get_config('system','directory_submit_url'))) + if($url && strlen(get_config('system','directory'))) proc_run('php',"include/directory.php","$url"); goaway($a->get_baseurl() . '/profiles'); diff --git a/mod/profiles.php b/mod/profiles.php index 30b419545..6c1a82c7b 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -470,7 +470,8 @@ function profiles_post(&$a) { if($namechanged && $is_default) { - $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d", + $r = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d", + dbesc($name), dbesc(datetime_convert()), intval(local_user()) ); @@ -507,7 +508,7 @@ function profiles_post(&$a) { // Update global directory in background $url = $_SESSION['my_url']; - if($url && strlen(get_config('system','directory_submit_url'))) + if($url && strlen(get_config('system','directory'))) proc_run('php',"include/directory.php","$url"); require_once('include/profile_update.php'); diff --git a/mod/pubsub.php b/mod/pubsub.php index 82458f46a..beb73b4e2 100644 --- a/mod/pubsub.php +++ b/mod/pubsub.php @@ -63,14 +63,15 @@ function pubsub_init(&$a) { intval($owner['uid']) ); if(! count($r)) { - logger('pubsub: contact not found.'); + logger('pubsub: contact '.$contact_id.' not found.'); hub_return(false, ''); } - if(! link_compare($hub_topic,$r[0]['poll'])) { - logger('pubsub: hub topic ' . $hub_topic . ' != ' . $r[0]['poll']); - // should abort but let's humour them. - } + if ($hub_topic) + if(! link_compare($hub_topic,$r[0]['poll'])) { + logger('pubsub: hub topic ' . $hub_topic . ' != ' . $r[0]['poll']); + // should abort but let's humour them. + } $contact = $r[0]; @@ -85,10 +86,11 @@ function pubsub_init(&$a) { logger('pubsub: unsubscribe success'); } - $r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d", - intval($subscribe), - intval($contact['id']) - ); + if ($hub_mode) + $r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d", + intval($subscribe), + intval($contact['id']) + ); hub_return(true, $hub_challenge); } @@ -120,7 +122,7 @@ function pubsub_post(&$a) { $importer = $r[0]; - $r = q("SELECT * FROM `contact` WHERE `subhub` = 1 AND `id` = %d AND `uid` = %d + $r = q("SELECT * FROM `contact` WHERE `subhub` = 1 AND `id` = %d AND `uid` = %d AND ( `rel` = %d OR `rel` = %d OR network = '%s' ) AND `blocked` = 0 AND `readonly` = 0 LIMIT 1", intval($contact_id), intval($importer['uid']), diff --git a/mod/receive.php b/mod/receive.php index ee15ebe8a..95a510167 100644 --- a/mod/receive.php +++ b/mod/receive.php @@ -9,7 +9,7 @@ require_once('include/salmon.php'); require_once('include/crypto.php'); require_once('include/diaspora.php'); - + function receive_post(&$a) { diff --git a/mod/register.php b/mod/register.php index 4c0860e6e..1963bd7a6 100644 --- a/mod/register.php +++ b/mod/register.php @@ -79,25 +79,27 @@ function register_post(&$a) { set_pconfig($user['uid'],'system','invites_remaining',$num_invites); } - $res = send_register_open_eml( - $user['email'], - $a->config['sitename'], - $a->get_baseurl(), - $user['username'], - $result['password']); + // Only send a password mail when the password wasn't manually provided + if (!x($_POST,'password1') OR !x($_POST,'confirm')) { + $res = send_register_open_eml( + $user['email'], + $a->config['sitename'], + $a->get_baseurl(), + $user['username'], + $result['password']); - if($res) { - info( t('Registration successful. Please check your email for further instructions.') . EOL ) ; - goaway(z_root()); - } - else { - notice( - sprintf( - t('Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'), - $user['email'], - $result['password'] - ). EOL - ); + if($res) { + info( t('Registration successful. Please check your email for further instructions.') . EOL ) ; + goaway(z_root()); + } else { + notice( + sprintf( + t('Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login.'), + $user['email'], + $result['password'] + ). EOL + ); + } } } elseif($a->config['register_policy'] == REGISTER_APPROVE) { @@ -235,6 +237,9 @@ function register_content(&$a) { )); } + $r = q("SELECT count(*) AS `contacts` FROM `contact`"); + $passwords = !$r[0]["contacts"]; + $license = ''; $o = get_markup_template("register.tpl"); @@ -262,6 +267,9 @@ function register_content(&$a) { '$openid' => $openid_url, '$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '), '$addrlabel' => t('Your Email Address: '), + '$passwords' => $passwords, + '$password1' => array('password1', t('New Password:'), '', t('Leave empty for an auto generated password.')), + '$password2' => array('confirm', t('Confirm:'), '', ''), '$nickdesc' => str_replace('$sitename',$a->get_hostname(),t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.')), '$nicklabel' => t('Choose a nickname: '), '$photo' => $photo, diff --git a/mod/regmod.php b/mod/regmod.php index 53e6716f2..5a90db1f9 100644 --- a/mod/regmod.php +++ b/mod/regmod.php @@ -36,7 +36,7 @@ function user_allow($hash) { ); if(count($r) && $r[0]['net-publish']) { $url = $a->get_baseurl() . '/profile/' . $user[0]['nickname']; - if($url && strlen(get_config('system','directory_submit_url'))) + if($url && strlen(get_config('system','directory'))) proc_run('php',"include/directory.php","$url"); } @@ -121,13 +121,13 @@ function regmod_content(&$a) { if($cmd === 'deny') { user_deny($hash); - goaway("/admin/users/"); + goaway($a->get_baseurl()."/admin/users/"); killme(); } if($cmd === 'allow') { user_allow($hash); - goaway("/admin/users/"); + goaway($a->get_baseurl()."/admin/users/"); killme(); } } diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php new file mode 100755 index 000000000..06e34a63e --- /dev/null +++ b/mod/repair_ostatus.php @@ -0,0 +1,57 @@ +".t("Resubsribing to OStatus contacts").""; + + $uid = local_user(); + + $a = get_app(); + + $counter = intval($_REQUEST['counter']); + + $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE + `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d)", + intval($uid), + dbesc(NETWORK_OSTATUS), + intval(CONTACT_IS_FRIEND), + intval(CONTACT_IS_SHARING)); + + if (!$r) + return($o.t("Error")); + + $total = $r[0]["total"]; + + $r = q("SELECT `url` FROM `contact` WHERE + `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d) + ORDER BY `url` + LIMIT %d, 1", + intval($uid), + dbesc(NETWORK_OSTATUS), + intval(CONTACT_IS_FRIEND), + intval(CONTACT_IS_SHARING), $counter++); + + if (!$r) { + $o .= t("Done"); + return $o; + } + + $o .= "

    ".$counter."/".$total.": ".$r[0]["url"]."

    "; + + $o .= "

    ".t("Keep this window open until done.")."

    "; + + $result = new_contact($uid,$r[0]["url"],true); + + $a->page['htmlhead'] = ''; + + return $o; +} diff --git a/mod/salmon.php b/mod/salmon.php index 11e42d943..9c22e42d1 100644 --- a/mod/salmon.php +++ b/mod/salmon.php @@ -1,12 +1,10 @@ /','',$data); - - // Create a fake feed wrapper so simplepie doesn't choke - - $tpl = get_markup_template('fake_feed.tpl'); - - $base = substr($data,strpos($data,''; - - 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); - $feed->init(); - - logger('mod-salmon: Feed parsed.'); - - if($feed->get_item_quantity()) { - foreach($feed->get_items() as $item) { - $author = $item->get_author(); - $author_link = unxmlify($author->get_link()); - break; - } - } + $author = ostatus_salmon_author($data,$importer); + $author_link = $author["author-link"]; if(! $author_link) { logger('mod-salmon: Could not retrieve author URI.'); @@ -123,8 +94,7 @@ function salmon_post(&$a) { // Once we have the author URI, go to the web and try to find their public key - logger('mod-salmon: Fetching key for ' . $author_link ); - + logger('mod-salmon: Fetching key for ' . $author_link); $key = get_salmon_key($author_link,$keyhash); @@ -144,17 +114,17 @@ function salmon_post(&$a) { // We should have everything we need now. Let's see if it verifies. - $verify = rsa_verify($compliant_format,$signature,$pubkey); + $verify = rsa_verify($compliant_format,$signature,$pubkey); if(! $verify) { logger('mod-salmon: message did not verify using protocol. Trying padding hack.'); $verify = rsa_verify($signed_data,$signature,$pubkey); - } + } if(! $verify) { logger('mod-salmon: message did not verify using padding. Trying old statusnet hack.'); $verify = rsa_verify($stnet_signed_data,$signature,$pubkey); - } + } if(! $verify) { logger('mod-salmon: Message did not verify. Discarding.'); @@ -170,20 +140,22 @@ function salmon_post(&$a) { * */ - $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s' ) - AND `uid` = %d LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `network` IN ('%s', '%s') + AND (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') + AND `uid` = %d LIMIT 1", dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_DFRN), + dbesc(normalise_link($author_link)), dbesc($author_link), - dbesc($author_link), + dbesc(normalise_link($author_link)), intval($importer['uid']) ); if(! count($r)) { logger('mod-salmon: Author unknown to us.'); if(get_pconfig($importer['uid'],'system','ostatus_autofriend')) { - require_once('include/follow.php'); $result = new_contact($importer['uid'],$author_link); if($result['success']) { - $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s' ) + $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s') AND `uid` = %d LIMIT 1", dbesc(NETWORK_OSTATUS), dbesc($author_link), @@ -194,32 +166,22 @@ function salmon_post(&$a) { } } - // is this a follower? Or have we ignored the person? + // Have we ignored the person? // If so we can not accept this post. - if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) { + //if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) { + if(count($r) && $r[0]['blocked']) { logger('mod-salmon: Ignoring this author.'); http_status_exit(202); // NOTREACHED } - require_once('include/items.php'); - - // Placeholder for hub discovery. We shouldn't find any hubs - // since we supplied the fake feed header - and it doesn't have any. - + // Placeholder for hub discovery. $hub = ''; - /** - * - * anti-spam measure: consume_feed will accept a follow activity from - * this person (and nothing else) if there is no existing contact record. - * - */ - $contact_rec = ((count($r)) ? $r[0] : null); - consume_feed($feedxml,$importer,$contact_rec,$hub); + ostatus_import($data,$importer,$contact_rec, $hub); http_status_exit(200); } diff --git a/mod/search.php b/mod/search.php index 339efc92d..251dd4778 100644 --- a/mod/search.php +++ b/mod/search.php @@ -1,4 +1,8 @@ ' . t('Search') . ''; @@ -110,16 +118,33 @@ function search_content(&$a) { } - $o .= search($search,'search-box','/search',((local_user()) ? true : false)); + $o .= search($search,'search-box','/search',((local_user()) ? true : false), false); if(strpos($search,'#') === 0) { $tag = true; $search = substr($search,1); } if(strpos($search,'@') === 0) { - require_once('mod/dirfind.php'); return dirfind_content($a); } + if(strpos($search,'!') === 0) { + return dirfind_content($a); + } + + if(x($_GET,'search-option')) + switch($_GET['search-option']) { + case 'fulltext': + break; + case 'tags': + $tag = true; + break; + case 'contacts': + return dirfind_content($a, "@"); + break; + case 'forums': + return dirfind_content($a, "!"); + break; + } if(! $search) return $o; diff --git a/mod/settings.php b/mod/settings.php index a83986267..556fb63e8 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -41,47 +41,56 @@ function settings_init(&$a) { 'label' => t('Account'), 'url' => $a->get_baseurl(true).'/settings', 'selected' => (($a->argc == 1) && ($a->argv[0] === 'settings')?'active':''), + 'accesskey' => 'o', ), array( 'label' => t('Additional features'), 'url' => $a->get_baseurl(true).'/settings/features', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'features') ? 'active' : ''), + 'accesskey' => 't', ), array( 'label' => t('Display'), 'url' => $a->get_baseurl(true).'/settings/display', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''), + 'accesskey' => 'i', ), array( 'label' => t('Social Networks'), 'url' => $a->get_baseurl(true).'/settings/connectors', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''), + 'accesskey' => 'w', ), array( 'label' => t('Plugins'), 'url' => $a->get_baseurl(true).'/settings/addon', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''), + 'accesskey' => 'l', ), array( 'label' => t('Delegations'), 'url' => $a->get_baseurl(true).'/delegate', 'selected' => (($a->argc == 1) && ($a->argv[0] === 'delegate')?'active':''), + 'accesskey' => 'd', ), array( 'label' => t('Connected apps'), 'url' => $a->get_baseurl(true) . '/settings/oauth', 'selected' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''), + 'accesskey' => 'b', ), array( 'label' => t('Export personal data'), 'url' => $a->get_baseurl(true) . '/uexport', 'selected' => (($a->argc == 1) && ($a->argv[0] === 'uexport')?'active':''), + 'accesskey' => 'e', ), array( 'label' => t('Remove account'), 'url' => $a->get_baseurl(true) . '/removeme', 'selected' => (($a->argc == 1) && ($a->argv[0] === 'removeme')?'active':''), + 'accesskey' => 'r', ) ); @@ -178,7 +187,9 @@ function settings_post(&$a) { check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors'); if(x($_POST, 'general-submit')) { - set_pconfig(local_user(), 'system', 'no_intelligent_shortening', $_POST['no_intelligent_shortening']); + set_pconfig(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening'])); + set_pconfig(local_user(), 'system', 'ostatus_autofriend', intval($_POST['snautofollow'])); + set_pconfig(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']); } elseif(x($_POST, 'imap-submit')) { $mail_server = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : ''); @@ -571,7 +582,7 @@ function settings_post(&$a) { if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) { // Update global directory in background $url = $_SESSION['my_url']; - if($url && strlen(get_config('system','directory_submit_url'))) + if($url && strlen(get_config('system','directory'))) proc_run('php',"include/directory.php","$url"); } @@ -751,6 +762,27 @@ function settings_content(&$a) { $settings_connectors .= ''.t('Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post.').''; $settings_connectors .= ''; + $checked = ((get_pconfig(local_user(), 'system', 'ostatus_autofriend')) ? ' checked="checked" ' : ''); + + $settings_connectors .= '
    '; + $settings_connectors .= ''; + $settings_connectors .= ''; + $settings_connectors .= ''.t('If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user.').''; + $settings_connectors .= '
    '; + + $legacy_contact = get_pconfig(local_user(), 'ostatus', 'legacy_contact'); + + if ($legacy_contact != "") + $a->page['htmlhead'] = ''; + + $settings_connectors .= '
    '; + $settings_connectors .= ''; + $settings_connectors .= ''; + $settings_connectors .= ''.t('If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.').''; + $settings_connectors .= '
    '; + + $settings_connectors .= '

    '.t("Repair OStatus subscriptions").'

    '; + $settings_connectors .= '
    '; $settings_connectors .= '
    '; @@ -759,7 +791,7 @@ function settings_content(&$a) { if (is_site_admin()) { $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled'))); - $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled'))); + $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('GNU Social (OStatus)'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled'))); } else { $diasp_enabled = ""; $ostat_enabled = ""; @@ -916,6 +948,7 @@ function settings_content(&$a) { '$infinite_scroll' => array('infinite_scroll', t("Infinite scroll"), $infinite_scroll, ''), '$no_auto_update' => array('no_auto_update', t("Automatic updates only at the top of the network page"), $no_auto_update, 'When disabled, the network page is updated all the time, which could be confusing while reading.'), + 'stitle' => t('Theme settings'), '$theme_config' => $theme_config, )); @@ -1036,7 +1069,7 @@ function settings_content(&$a) { )); } - if(strlen(get_config('system','directory_submit_url'))) { + if(strlen(get_config('system','directory'))) { $profile_in_net_dir = replace_macros($opt_tpl,array( '$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))), )); @@ -1084,14 +1117,12 @@ function settings_content(&$a) { info( t('Profile is not published.') . EOL ); - $subdir = ((strlen($a->get_path())) ? '
    ' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : ''); + //$subdir = ((strlen($a->get_path())) ? '
    ' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : ''); $tpl_addr = get_markup_template("settings_nick_set.tpl"); $prof_addr = replace_macros($tpl_addr,array( - '$desc' => t('Your Identity Address is'), - '$nickname' => $nickname, - '$subdir' => $subdir, + '$desc' => sprintf(t("Your Identity Address is '%s' or '%s'."), $nickname.'@'.$a->get_hostname().$a->get_path(), $a->get_baseurl().'/profile/'.$nickname), '$basepath' => $a->get_hostname() )); diff --git a/mod/statistics_json.php b/mod/statistics_json.php new file mode 100644 index 000000000..9f97d6ac7 --- /dev/null +++ b/mod/statistics_json.php @@ -0,0 +1,55 @@ + $a->config["sitename"], + "network" => FRIENDICA_PLATFORM, + "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION, + "registrations_open" => ($a->config['register_policy'] != 0), + "total_users" => get_config('nodeinfo','total_users'), + "active_users_halfyear" => get_config('nodeinfo','active_users_halfyear'), + "active_users_monthly" => get_config('nodeinfo','active_users_monthly'), + "local_posts" => get_config('nodeinfo','local_posts') + ); + + $statistics["services"] = array(); + $statistics["services"]["appnet"] = nodeinfo_plugin_enabled("appnet"); + $statistics["services"]["blogger"] = nodeinfo_plugin_enabled("blogger"); + $statistics["services"]["buffer"] = nodeinfo_plugin_enabled("buffer"); + $statistics["services"]["dreamwidth"] = nodeinfo_plugin_enabled("dwpost"); + $statistics["services"]["facebook"] = nodeinfo_plugin_enabled("fbpost"); + $statistics["services"]["gnusocial"] = nodeinfo_plugin_enabled("statusnet"); + $statistics["services"]["googleplus"] = nodeinfo_plugin_enabled("gpluspost"); + $statistics["services"]["libertree"] = nodeinfo_plugin_enabled("libertree"); + $statistics["services"]["livejournal"] = nodeinfo_plugin_enabled("ljpost"); + $statistics["services"]["pumpio"] = nodeinfo_plugin_enabled("pumpio"); + $statistics["services"]["twitter"] = nodeinfo_plugin_enabled("twitter"); + $statistics["services"]["tumblr"] = nodeinfo_plugin_enabled("tumblr"); + $statistics["services"]["wordpress"] = nodeinfo_plugin_enabled("wppost"); + + $statistics["appnet"] = $statistics["services"]["appnet"]; + $statistics["blogger"] = $statistics["services"]["blogger"]; + $statistics["buffer"] = $statistics["services"]["buffer"]; + $statistics["dreamwidth"] = $statistics["services"]["dreamwidth"]; + $statistics["facebook"] = $statistics["services"]["facebook"]; + $statistics["gnusocial"] = $statistics["services"]["gnusocial"]; + $statistics["googleplus"] = $statistics["services"]["googleplus"]; + $statistics["libertree"] = $statistics["services"]["libertree"]; + $statistics["livejournal"] = $statistics["services"]["livejournal"]; + $statistics["pumpio"] = $statistics["services"]["pumpio"]; + $statistics["twitter"] = $statistics["services"]["twitter"]; + $statistics["tumblr"] = $statistics["services"]["tumblr"]; + $statistics["wordpress"] = $statistics["services"]["wordpress"]; + + header("Content-Type: application/json"); + echo json_encode($statistics, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES); + logger("statistics_init: printed ".print_r($statistics, true), LOGGER_DATA); + killme(); +} diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 3a6c48a3b..b84856701 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -68,7 +68,7 @@ function viewcontacts_content(&$a) { 'url' => $url, 'sparkle' => '', 'itemurl' => $rr['url'], - 'network' => network_to_name($rr['network']), + 'network' => network_to_name($rr['network'], $rr['url']), ); } diff --git a/mod/wall_attach.php b/mod/wall_attach.php index 80b679012..e11d749a3 100644 --- a/mod/wall_attach.php +++ b/mod/wall_attach.php @@ -5,17 +5,22 @@ require_once('include/datetime.php'); function wall_attach_post(&$a) { + $r_json = (x($_GET,'response') && $_GET['response']=='json'); + if($a->argc > 1) { $nick = $a->argv[1]; $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", dbesc($nick) ); - if(! count($r)) + if(! count($r)){ + if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); } return; + } - } - else + } else { + if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); } return; + } $can_post = false; $visitor = 0; @@ -52,12 +57,15 @@ function wall_attach_post(&$a) { } } if(! $can_post) { + if ($r_json) { echo json_encode(['error'=>t('Permission denied.')]); killme(); } notice( t('Permission denied.') . EOL ); killme(); } - if(! x($_FILES,'userfile')) + if(! x($_FILES,'userfile')) { + if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); } killme(); + } $src = $_FILES['userfile']['tmp_name']; $filename = basename($_FILES['userfile']['name']); @@ -72,13 +80,23 @@ function wall_attach_post(&$a) { */ if($filesize <=0) { - notice(t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(t('Or - did you try to upload an empty file?')) . EOL); + $msg = t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(t('Or - did you try to upload an empty file?')); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + notice( $msg. EOL ); + } @unlink($src); killme(); } if(($maxfilesize) && ($filesize > $maxfilesize)) { - echo sprintf(t('File exceeds size limit of %s'), formatBytes($maxfilesize)) . EOL; + $msg = sprintf(t('File exceeds size limit of %s'), formatBytes($maxfilesize)); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL ; + } @unlink($src); killme(); } @@ -90,7 +108,12 @@ function wall_attach_post(&$a) { $limit = service_class_fetch($page_owner_uid,'attach_upload_limit'); if(($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) { - echo upgrade_message(true) . EOL ; + $msg = upgrade_message(true); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL ; + } @unlink($src); killme(); } @@ -98,7 +121,7 @@ function wall_attach_post(&$a) { $filedata = @file_get_contents($src); $mimetype = z_mime_content_type($filename); - $hash = random_string(); + $hash = get_guid(64); $created = datetime_convert(); $r = q("INSERT INTO `attach` ( `uid`, `hash`, `filename`, `filetype`, `filesize`, `data`, `created`, `edited`, `allow_cid`, `allow_gid`,`deny_cid`, `deny_gid` ) VALUES ( %d, '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", @@ -114,12 +137,17 @@ function wall_attach_post(&$a) { dbesc(''), dbesc(''), dbesc('') - ); + ); @unlink($src); if(! $r) { - echo ( t('File upload failed.') . EOL); + $msg = t('File upload failed.'); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL ; + } killme(); } @@ -130,14 +158,21 @@ function wall_attach_post(&$a) { ); if(! count($r)) { - echo ( t('File upload failed.') . EOL); + $msg = t('File upload failed.'); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL ; + } killme(); } + if ($r_json) { echo json_encode(['ok'=>true]); killme(); } + $lf = "\n"; echo $lf . $lf . '[attachment]' . $r[0]['id'] . '[/attachment]' . $lf; - + killme(); // NOTREACHED } diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 44cfa0156..fce28c47d 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -6,26 +6,29 @@ function wall_upload_post(&$a, $desktopmode = true) { logger("wall upload: starting new upload", LOGGER_DEBUG); + $r_json = (x($_GET,'response') && $_GET['response']=='json'); + if($a->argc > 1) { - if(! x($_FILES,'media')) { - $nick = $a->argv[1]; - $r = q("SELECT `user`.*, `contact`.`id` FROM `user` INNER JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", - dbesc($nick) - ); + if(! x($_FILES,'media')) { + $nick = $a->argv[1]; + $r = q("SELECT `user`.*, `contact`.`id` FROM `user` INNER JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", + dbesc($nick) + ); - if(! count($r)) - return; - } - else { + if(! count($r)){ + if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); } + return; + } + } else { $user_info = api_get_user($a); - $r = q("SELECT `user`.*, `contact`.`id` FROM `user` INNER JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", - dbesc($user_info['screen_name']) - ); - } - } - else + $r = q("SELECT `user`.*, `contact`.`id` FROM `user` INNER JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", + dbesc($user_info['screen_name']) + ); + } + } else { + if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); } return; - + } $can_post = false; $visitor = 0; @@ -62,14 +65,19 @@ function wall_upload_post(&$a, $desktopmode = true) { } } + if(! $can_post) { + if ($r_json) { echo json_encode(['error'=>t('Permission denied.')]); killme(); } notice( t('Permission denied.') . EOL ); killme(); } - if(! x($_FILES,'userfile') && ! x($_FILES,'media')) + if(! x($_FILES,'userfile') && ! x($_FILES,'media')){ + if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); } killme(); + } + $src = ""; if(x($_FILES,'userfile')) { $src = $_FILES['userfile']['tmp_name']; $filename = basename($_FILES['userfile']['name']); @@ -98,6 +106,12 @@ function wall_upload_post(&$a, $desktopmode = true) { $filetype = $_FILES['media']['type']; } + if ($src=="") { + if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); } + notice(t('Invalid request.').EOL); + killme(); + } + // This is a special treatment for picture upload from Twidere if (($filename == "octet-stream") AND ($filetype != "")) { $filename = $filetype; @@ -109,6 +123,7 @@ function wall_upload_post(&$a, $desktopmode = true) { // If there is a temp name, then do a manual check // This is more reliable than the provided value + $imagedata = getimagesize($src); if ($imagedata) $filetype = $imagedata['mime']; @@ -119,7 +134,12 @@ function wall_upload_post(&$a, $desktopmode = true) { $maximagesize = get_config('system','maximagesize'); if(($maximagesize) && ($filesize > $maximagesize)) { - echo sprintf( t('Image exceeds size limit of %s'), formatBytes($maximagesize)) . EOL; + $msg = sprintf( t('Image exceeds size limit of %s'), formatBytes($maximagesize)); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL; + } @unlink($src); killme(); } @@ -131,7 +151,12 @@ function wall_upload_post(&$a, $desktopmode = true) { $limit = service_class_fetch($page_owner_uid,'photo_upload_limit'); if(($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) { - echo upgrade_message(true) . EOL ; + $msg = upgrade_message(true); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL; + } @unlink($src); killme(); } @@ -141,7 +166,12 @@ function wall_upload_post(&$a, $desktopmode = true) { $ph = new Photo($imagedata, $filetype); if(! $ph->is_valid()) { - echo ( t('Unable to process image.') . EOL); + $msg = t('Unable to process image.'); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL; + } @unlink($src); killme(); } @@ -169,7 +199,12 @@ function wall_upload_post(&$a, $desktopmode = true) { $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 0, 0, $defperm); if(! $r) { - echo ( t('Image upload failed.') . EOL); + $msg = t('Image upload failed.'); + if ($r_json) { + echo json_encode(['error'=>$msg]); + } else { + echo $msg. EOL; + } killme(); } @@ -192,9 +227,10 @@ function wall_upload_post(&$a, $desktopmode = true) { if (!$desktopmode) { $r = q("SELECT `id`, `datasize`, `width`, `height`, `type` FROM `photo` WHERE `resource-id` = '%s' ORDER BY `width` DESC LIMIT 1", $hash); - if (!$r) + if (!$r){ + if ($r_json) { echo json_encode(['error'=>'']); killme(); } return false; - + } $picture = array(); $picture["id"] = $r[0]["id"]; @@ -206,9 +242,12 @@ function wall_upload_post(&$a, $desktopmode = true) { $picture["picture"] = $a->get_baseurl()."/photo/{$hash}-0.".$ph->getExt(); $picture["preview"] = $a->get_baseurl()."/photo/{$hash}-{$smallest}.".$ph->getExt(); + if ($r_json) { echo json_encode(['picture'=>$picture]); killme(); } return $picture; } + if ($r_json) { echo json_encode(['ok'=>true]); killme(); } + /* mod Waitman Gobble NO WARRANTY */ //if we get the signal then return the image url info in BBCODE, otherwise this outputs the info and bails (for the ajax image uploader on wall post) diff --git a/object/Item.php b/object/Item.php index 3211048ce..8d364e602 100644 --- a/object/Item.php +++ b/object/Item.php @@ -4,6 +4,7 @@ if(class_exists('Item')) require_once('object/BaseObject.php'); require_once('include/text.php'); +require_once('include/diaspora.php'); require_once('boot.php'); /** @@ -82,7 +83,6 @@ class Item extends BaseObject { */ public function get_template_data($alike, $dlike, $thread_level=1) { require_once("mod/proxy.php"); - require_once("include/diaspora.php"); $result = array(); @@ -308,7 +308,6 @@ class Item extends BaseObject { if (($item["item_network"] == NETWORK_FACEBOOK) AND ($indent == 'comment') AND isset($buttons["like"])) unset($buttons["like"]); - $tmp_item = array( 'template' => $this->get_template(), @@ -325,7 +324,7 @@ class Item extends BaseObject { 'body' => $body_e, 'text' => $text_e, 'id' => $this->get_id(), - 'guid' => $item['guid'], + 'guid' => urlencode($item['guid']), 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), 'to' => t('to'), @@ -369,7 +368,7 @@ class Item extends BaseObject { 'postopts' => $langstr, 'edited' => $edited, 'network' => $item["item_network"], - 'network_name' => network_to_name($item['item_network']), + 'network_name' => network_to_name($item['item_network'], $profile_link), ); $arr = array('item' => $item, 'output' => $tmp_item); diff --git a/update.php b/update.php index c182eb590..761da7273 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ path = ''; + +// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles". +// It can be changed later and only applies to timestamps for anonymous viewers. + +$default_timezone = 'Europe/Berlin'; + +// What is your site name? + +$a->config['sitename'] = "My Friend Network"; + +// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. +// Be certain to create your own personal account before setting +// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on +// the registration page. REGISTER_APPROVE requires you set 'admin_email' +// to the email address of an already registered person who can authorise +// and/or approve/deny the request. + +$a->config['register_policy'] = REGISTER_OPEN; +$a->config['register_text'] = ''; +$a->config['admin_email'] = 'vagrant@friendica.dev'; + +// Maximum size of an imported message, 0 is unlimited + +$a->config['max_import_size'] = 200000; + +// maximum size of uploaded photos + +$a->config['system']['maximagesize'] = 800000; + +// Location of PHP command line processor + +$a->config['php_path'] = '/usr/bin/php'; + +// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts + +$a->config['system']['huburl'] = '[internal]'; + +// Server-to-server private message encryption (RINO) is allowed by default. +// Encryption will only be provided if this setting is true and the +// PHP mcrypt extension is installed on both systems + +$a->config['system']['rino_encrypt'] = true; + +// default system theme + +$a->config['system']['theme'] = 'duepuntozero'; + +// By default allow pseudonyms + +$a->config['system']['no_regfullname'] = true; + +//Deny public access to the local directory +//$a->config['system']['block_local_dir'] = false; + +// Location of the global directory +$a->config['system']['directory'] = 'http://dir.friendi.ca'; diff --git a/util/messages.po b/util/messages.po index ab7473b19..a6792943b 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.4.0\n" +"Project-Id-Version: 3.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-30 08:43+0200\n" +"POT-Creation-Date: 2015-09-22 09:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,7 +26,7 @@ msgstr "" msgid "Private Message" msgstr "" -#: object/Item.php:121 mod/settings.php:683 mod/content.php:730 +#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 msgid "Edit" msgstr "" @@ -35,8 +35,8 @@ msgstr "" msgid "Select" msgstr "" -#: object/Item.php:131 mod/admin.php:1017 mod/photos.php:1673 -#: mod/contacts.php:760 mod/settings.php:684 mod/group.php:171 +#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 +#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 #: mod/content.php:440 mod/content.php:743 include/conversation.php:613 msgid "Delete" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "toggle ignore status" msgstr "" -#: object/Item.php:214 +#: object/Item.php:214 mod/ostatus_subscribe.php:69 msgid "ignored" msgstr "" @@ -105,83 +105,83 @@ msgstr "" msgid "share" msgstr "" -#: object/Item.php:319 include/conversation.php:665 +#: object/Item.php:318 include/conversation.php:665 msgid "Categories:" msgstr "" -#: object/Item.php:320 include/conversation.php:666 +#: object/Item.php:319 include/conversation.php:666 msgid "Filed under:" msgstr "" -#: object/Item.php:329 object/Item.php:330 mod/content.php:473 +#: object/Item.php:328 object/Item.php:329 mod/content.php:473 #: mod/content.php:854 mod/content.php:855 include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: object/Item.php:331 mod/content.php:856 +#: object/Item.php:330 mod/content.php:856 msgid "to" msgstr "" -#: object/Item.php:332 +#: object/Item.php:331 msgid "via" msgstr "" -#: object/Item.php:333 mod/content.php:857 +#: object/Item.php:332 mod/content.php:857 msgid "Wall-to-Wall" msgstr "" -#: object/Item.php:334 mod/content.php:858 +#: object/Item.php:333 mod/content.php:858 msgid "via Wall-To-Wall:" msgstr "" -#: object/Item.php:343 mod/content.php:483 mod/content.php:866 +#: object/Item.php:342 mod/content.php:483 mod/content.php:866 #: include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "" -#: object/Item.php:364 object/Item.php:680 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:754 +#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 +#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 msgid "Comment" msgstr "" -#: object/Item.php:367 mod/message.php:334 mod/message.php:565 +#: object/Item.php:366 mod/message.php:335 mod/message.php:566 #: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 #: mod/content.php:501 mod/content.php:885 include/conversation.php:691 #: include/conversation.php:1074 msgid "Please wait" msgstr "" -#: object/Item.php:390 mod/content.php:605 +#: object/Item.php:389 mod/content.php:605 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: object/Item.php:392 object/Item.php:405 mod/content.php:607 -#: include/text.php:2004 +#: object/Item.php:391 object/Item.php:404 mod/content.php:607 +#: include/text.php:2038 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: object/Item.php:393 mod/content.php:608 boot.php:755 include/items.php:5133 +#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 #: include/contact_widgets.php:205 msgid "show more" msgstr "" -#: object/Item.php:678 mod/photos.php:1581 mod/photos.php:1625 +#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 #: mod/photos.php:1713 mod/content.php:709 msgid "This is you" msgstr "" -#: object/Item.php:681 mod/fsuggest.php:107 mod/message.php:335 -#: mod/message.php:564 mod/events.php:511 mod/photos.php:1104 +#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 +#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 #: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:564 -#: mod/invite.php:140 mod/profiles.php:682 mod/manage.php:110 mod/poke.php:199 +#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 +#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 #: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 #: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 #: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 @@ -191,39 +191,39 @@ msgstr "" msgid "Submit" msgstr "" -#: object/Item.php:682 mod/content.php:713 +#: object/Item.php:681 mod/content.php:713 msgid "Bold" msgstr "" -#: object/Item.php:683 mod/content.php:714 +#: object/Item.php:682 mod/content.php:714 msgid "Italic" msgstr "" -#: object/Item.php:684 mod/content.php:715 +#: object/Item.php:683 mod/content.php:715 msgid "Underline" msgstr "" -#: object/Item.php:685 mod/content.php:716 +#: object/Item.php:684 mod/content.php:716 msgid "Quote" msgstr "" -#: object/Item.php:686 mod/content.php:717 +#: object/Item.php:685 mod/content.php:717 msgid "Code" msgstr "" -#: object/Item.php:687 mod/content.php:718 +#: object/Item.php:686 mod/content.php:718 msgid "Image" msgstr "" -#: object/Item.php:688 mod/content.php:719 +#: object/Item.php:687 mod/content.php:719 msgid "Link" msgstr "" -#: object/Item.php:689 mod/content.php:720 +#: object/Item.php:688 mod/content.php:720 msgid "Video" msgstr "" -#: object/Item.php:690 mod/editpost.php:145 mod/events.php:509 +#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 #: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 #: mod/content.php:721 include/conversation.php:1089 msgid "Preview" @@ -246,22 +246,24 @@ msgid "Permission denied" msgstr "" #: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:38 mod/message.php:174 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 #: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 #: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:66 -#: mod/api.php:26 mod/api.php:31 mod/photos.php:156 mod/photos.php:1072 -#: mod/register.php:42 mod/attach.php:33 mod/contacts.php:322 mod/follow.php:9 -#: mod/follow.php:42 mod/follow.php:81 mod/uimport.php:23 mod/allfriends.php:9 -#: mod/invite.php:15 mod/invite.php:101 mod/settings.php:20 -#: mod/settings.php:107 mod/settings.php:608 mod/display.php:508 -#: mod/profiles.php:165 mod/profiles.php:614 mod/wall_attach.php:55 -#: mod/suggest.php:58 mod/manage.php:96 mod/delegate.php:12 -#: mod/viewcontacts.php:24 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/group.php:19 -#: mod/regmod.php:110 mod/item.php:170 mod/item.php:186 mod/mood.php:114 -#: mod/network.php:4 mod/crepair.php:120 include/items.php:5022 +#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 +#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 +#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 +#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 +#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 +#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 +#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 +#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 +#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 +#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 +#: mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 +#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 +#: mod/crepair.php:120 include/items.php:5036 msgid "Permission denied." msgstr "" @@ -370,7 +372,7 @@ msgstr "" msgid "Invalid profile URL." msgstr "" -#: mod/dfrn_request.php:507 include/follow.php:27 +#: mod/dfrn_request.php:507 include/follow.php:70 msgid "Disallowed profile URL." msgstr "" @@ -410,13 +412,13 @@ msgstr "" msgid "Please confirm your introduction/connection request to %s." msgstr "" -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4236 +#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 msgid "[Name Withheld]" msgstr "" #: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:89 mod/display.php:223 mod/community.php:18 -#: mod/viewcontacts.php:19 mod/directory.php:35 +#: mod/search.php:93 mod/search.php:98 mod/display.php:223 +#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 msgid "Public access denied." msgstr "" @@ -426,95 +428,95 @@ msgid "" "communications networks:" msgstr "" -#: mod/dfrn_request.php:839 +#: mod/dfrn_request.php:840 +#, php-format msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site " -"and join us today." +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." msgstr "" -#: mod/dfrn_request.php:842 +#: mod/dfrn_request.php:845 msgid "Friend/Connection Request" msgstr "" -#: mod/dfrn_request.php:843 +#: mod/dfrn_request.php:846 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "" -#: mod/dfrn_request.php:844 mod/follow.php:56 +#: mod/dfrn_request.php:847 mod/follow.php:58 msgid "Please answer the following:" msgstr "" -#: mod/dfrn_request.php:845 mod/follow.php:57 +#: mod/dfrn_request.php:848 mod/follow.php:59 #, php-format msgid "Does %s know you?" msgstr "" -#: mod/dfrn_request.php:845 mod/api.php:106 mod/register.php:234 -#: mod/follow.php:57 mod/settings.php:1035 mod/settings.php:1041 -#: mod/settings.php:1049 mod/settings.php:1053 mod/settings.php:1058 -#: mod/settings.php:1064 mod/settings.php:1070 mod/settings.php:1076 -#: mod/settings.php:1104 mod/settings.php:1105 mod/settings.php:1106 -#: mod/settings.php:1107 mod/settings.php:1108 mod/profiles.php:657 -#: mod/profiles.php:661 +#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 +#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 +#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 +#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 +#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 +#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 +#: mod/profiles.php:662 msgid "No" msgstr "" -#: mod/dfrn_request.php:845 mod/message.php:209 mod/api.php:105 -#: mod/register.php:233 mod/contacts.php:413 mod/follow.php:57 -#: mod/settings.php:1035 mod/settings.php:1041 mod/settings.php:1049 -#: mod/settings.php:1053 mod/settings.php:1058 mod/settings.php:1064 -#: mod/settings.php:1070 mod/settings.php:1076 mod/settings.php:1104 -#: mod/settings.php:1105 mod/settings.php:1106 mod/settings.php:1107 -#: mod/settings.php:1108 mod/profiles.php:657 mod/profiles.php:660 -#: mod/suggest.php:29 include/items.php:4854 +#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 +#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 +#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 +#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 +#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 +#: mod/suggest.php:29 include/items.php:4868 msgid "Yes" msgstr "" -#: mod/dfrn_request.php:849 mod/follow.php:58 +#: mod/dfrn_request.php:852 mod/follow.php:60 msgid "Add a personal note:" msgstr "" -#: mod/dfrn_request.php:851 include/contact_selectors.php:76 +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 msgid "Friendica" msgstr "" -#: mod/dfrn_request.php:852 +#: mod/dfrn_request.php:855 msgid "StatusNet/Federated Social Web" msgstr "" -#: mod/dfrn_request.php:853 mod/settings.php:761 +#: mod/dfrn_request.php:856 mod/settings.php:793 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "" -#: mod/dfrn_request.php:854 +#: mod/dfrn_request.php:857 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search " "bar." msgstr "" -#: mod/dfrn_request.php:855 mod/follow.php:64 +#: mod/dfrn_request.php:858 mod/follow.php:66 msgid "Your Identity Address:" msgstr "" -#: mod/dfrn_request.php:858 mod/follow.php:67 +#: mod/dfrn_request.php:861 mod/follow.php:69 msgid "Submit Request" msgstr "" -#: mod/dfrn_request.php:859 mod/message.php:212 mod/editpost.php:148 -#: mod/fbrowser.php:81 mod/fbrowser.php:116 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:416 mod/videos.php:121 -#: mod/follow.php:68 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:622 -#: mod/settings.php:648 mod/suggest.php:32 include/items.php:4857 +#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 +#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 +#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 +#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 +#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 #: include/conversation.php:1093 msgid "Cancel" msgstr "" -#: mod/files.php:156 mod/videos.php:373 include/text.php:1429 +#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 msgid "View Video" msgstr "" @@ -534,14 +536,14 @@ msgstr "" msgid "Invalid request identifier." msgstr "" -#: mod/notifications.php:35 mod/notifications.php:165 -#: mod/notifications.php:215 +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 msgid "Discard" msgstr "" -#: mod/notifications.php:51 mod/notifications.php:164 -#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591 -#: mod/contacts.php:758 +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 +#: mod/contacts.php:799 msgid "Ignore" msgstr "" @@ -549,191 +551,211 @@ msgstr "" msgid "System" msgstr "" -#: mod/notifications.php:83 include/nav.php:145 +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 msgid "Network" msgstr "" -#: mod/notifications.php:88 mod/network.php:373 +#: mod/notifications.php:90 mod/network.php:375 msgid "Personal" msgstr "" -#: mod/notifications.php:93 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:148 +#: mod/notifications.php:96 view/theme/diabook/theme.php:123 +#: include/nav.php:105 include/nav.php:156 msgid "Home" msgstr "" -#: mod/notifications.php:98 include/nav.php:153 +#: mod/notifications.php:102 include/nav.php:161 msgid "Introductions" msgstr "" -#: mod/notifications.php:122 +#: mod/notifications.php:127 msgid "Show Ignored Requests" msgstr "" -#: mod/notifications.php:122 +#: mod/notifications.php:127 msgid "Hide Ignored Requests" msgstr "" -#: mod/notifications.php:149 mod/notifications.php:199 +#: mod/notifications.php:159 mod/notifications.php:209 msgid "Notification type: " msgstr "" -#: mod/notifications.php:150 +#: mod/notifications.php:160 msgid "Friend Suggestion" msgstr "" -#: mod/notifications.php:152 +#: mod/notifications.php:162 #, php-format msgid "suggested by %s" msgstr "" -#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597 +#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 msgid "Hide this contact from others" msgstr "" -#: mod/notifications.php:158 mod/notifications.php:209 +#: mod/notifications.php:168 mod/notifications.php:228 msgid "Post a new friend activity" msgstr "" -#: mod/notifications.php:158 mod/notifications.php:209 +#: mod/notifications.php:168 mod/notifications.php:228 msgid "if applicable" msgstr "" -#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015 +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 msgid "Approve" msgstr "" -#: mod/notifications.php:181 +#: mod/notifications.php:191 msgid "Claims to be known to you: " msgstr "" -#: mod/notifications.php:181 +#: mod/notifications.php:191 msgid "yes" msgstr "" -#: mod/notifications.php:181 +#: mod/notifications.php:191 msgid "no" msgstr "" -#: mod/notifications.php:182 +#: mod/notifications.php:192 msgid "" "Shall your connection be bidirectional or not? \"Friend\" implies that you " "allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " "you allow to read but you do not want to read theirs. Approve as: " msgstr "" -#: mod/notifications.php:185 +#: mod/notifications.php:195 msgid "" "Shall your connection be bidirectional or not? \"Friend\" implies that you " "allow to read and you subscribe to their posts. \"Sharer\" means that you " "allow to read but you do not want to read theirs. Approve as: " msgstr "" -#: mod/notifications.php:193 +#: mod/notifications.php:203 msgid "Friend" msgstr "" -#: mod/notifications.php:194 +#: mod/notifications.php:204 msgid "Sharer" msgstr "" -#: mod/notifications.php:194 +#: mod/notifications.php:204 msgid "Fan/Admirer" msgstr "" -#: mod/notifications.php:200 +#: mod/notifications.php:210 msgid "Friend/Connect Request" msgstr "" -#: mod/notifications.php:200 +#: mod/notifications.php:210 msgid "New Follower" msgstr "" -#: mod/notifications.php:221 +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/event.php:42 include/identity.php:268 +#: include/bb2diaspora.php:170 +msgid "Location:" +msgstr "" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:582 +msgid "About:" +msgstr "" + +#: mod/notifications.php:224 include/identity.php:576 +msgid "Tags:" +msgstr "" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "" + +#: mod/notifications.php:240 msgid "No introductions." msgstr "" -#: mod/notifications.php:224 include/nav.php:156 +#: mod/notifications.php:243 include/nav.php:164 msgid "Notifications" msgstr "" -#: mod/notifications.php:262 mod/notifications.php:391 -#: mod/notifications.php:482 +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 #, php-format msgid "%s liked %s's post" msgstr "" -#: mod/notifications.php:272 mod/notifications.php:401 -#: mod/notifications.php:492 +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 #, php-format msgid "%s disliked %s's post" msgstr "" -#: mod/notifications.php:287 mod/notifications.php:416 -#: mod/notifications.php:507 +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 #, php-format msgid "%s is now friends with %s" msgstr "" -#: mod/notifications.php:294 mod/notifications.php:423 +#: mod/notifications.php:313 mod/notifications.php:442 #, php-format msgid "%s created a new post" msgstr "" -#: mod/notifications.php:295 mod/notifications.php:424 -#: mod/notifications.php:517 +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 #, php-format msgid "%s commented on %s's post" msgstr "" -#: mod/notifications.php:310 +#: mod/notifications.php:329 msgid "No more network notifications." msgstr "" -#: mod/notifications.php:314 +#: mod/notifications.php:333 msgid "Network Notifications" msgstr "" -#: mod/notifications.php:340 mod/notify.php:72 +#: mod/notifications.php:359 mod/notify.php:72 msgid "No more system notifications." msgstr "" -#: mod/notifications.php:344 mod/notify.php:76 +#: mod/notifications.php:363 mod/notify.php:76 msgid "System Notifications" msgstr "" -#: mod/notifications.php:439 +#: mod/notifications.php:458 msgid "No more personal notifications." msgstr "" -#: mod/notifications.php:443 +#: mod/notifications.php:462 msgid "Personal Notifications" msgstr "" -#: mod/notifications.php:524 +#: mod/notifications.php:543 msgid "No more home notifications." msgstr "" -#: mod/notifications.php:528 +#: mod/notifications.php:547 msgid "Home Notifications" msgstr "" #: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2000 -#: include/diaspora.php:2106 include/conversation.php:126 +#: view/theme/diabook/theme.php:471 include/text.php:2034 +#: include/diaspora.php:2134 include/conversation.php:126 #: include/conversation.php:253 msgid "photo" msgstr "" #: 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:2106 include/conversation.php:121 +#: include/diaspora.php:2134 include/conversation.php:121 #: include/conversation.php:130 include/conversation.php:248 #: include/conversation.php:257 msgid "status" msgstr "" -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2122 +#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 #: include/conversation.php:137 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -809,19 +831,19 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: mod/admin.php:104 mod/admin.php:627 +#: mod/admin.php:104 mod/admin.php:687 msgid "Site" msgstr "" -#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023 +#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 msgid "Users" msgstr "" -#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62 +#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 msgid "Plugins" msgstr "" -#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367 +#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 msgid "Themes" msgstr "" @@ -829,790 +851,976 @@ msgstr "" msgid "DB updates" msgstr "" -#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454 +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 msgid "Logs" msgstr "" -#: mod/admin.php:124 +#: mod/admin.php:125 msgid "probe address" msgstr "" -#: mod/admin.php:125 +#: mod/admin.php:126 msgid "check webfinger" msgstr "" -#: mod/admin.php:130 include/nav.php:185 +#: mod/admin.php:131 include/nav.php:193 msgid "Admin" msgstr "" -#: mod/admin.php:131 +#: mod/admin.php:132 msgid "Plugin Features" msgstr "" -#: mod/admin.php:133 +#: mod/admin.php:134 msgid "diagnostics" msgstr "" -#: mod/admin.php:134 +#: mod/admin.php:135 msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:169 mod/admin.php:1062 mod/admin.php:1275 mod/notice.php:15 +#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 #: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4813 +#: mod/viewsrc.php:15 include/items.php:4827 msgid "Item not found." msgstr "" -#: mod/admin.php:193 mod/admin.php:961 -msgid "Normal Account" -msgstr "" - -#: mod/admin.php:194 mod/admin.php:962 -msgid "Soapbox Account" -msgstr "" - -#: mod/admin.php:195 mod/admin.php:963 -msgid "Community/Celebrity Account" -msgstr "" - -#: mod/admin.php:196 mod/admin.php:964 -msgid "Automatic Friend Account" -msgstr "" - -#: mod/admin.php:197 -msgid "Blog Account" -msgstr "" - -#: mod/admin.php:198 -msgid "Private Forum" -msgstr "" - -#: mod/admin.php:217 -msgid "Message queues" -msgstr "" - -#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111 -#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453 +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 +#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 +#: mod/admin.php:1530 msgid "Administration" msgstr "" -#: mod/admin.php:223 -msgid "Summary" +#: mod/admin.php:202 +msgid "ID" +msgstr "" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:206 +msgid "Created" +msgstr "" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:220 mod/admin.php:1031 +msgid "Normal Account" +msgstr "" + +#: mod/admin.php:221 mod/admin.php:1032 +msgid "Soapbox Account" +msgstr "" + +#: mod/admin.php:222 mod/admin.php:1033 +msgid "Community/Celebrity Account" +msgstr "" + +#: mod/admin.php:223 mod/admin.php:1034 +msgid "Automatic Friend Account" +msgstr "" + +#: mod/admin.php:224 +msgid "Blog Account" msgstr "" #: mod/admin.php:225 +msgid "Private Forum" +msgstr "" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "" + +#: mod/admin.php:252 msgid "Registered users" msgstr "" -#: mod/admin.php:227 +#: mod/admin.php:254 msgid "Pending registrations" msgstr "" -#: mod/admin.php:228 +#: mod/admin.php:255 msgid "Version" msgstr "" -#: mod/admin.php:232 +#: mod/admin.php:260 msgid "Active plugins" msgstr "" -#: mod/admin.php:255 +#: mod/admin.php:283 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: mod/admin.php:524 +#: mod/admin.php:556 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:564 msgid "Site settings updated." msgstr "" -#: mod/admin.php:553 mod/settings.php:853 +#: mod/admin.php:599 mod/settings.php:885 msgid "No special theme for mobile devices" msgstr "" -#: mod/admin.php:570 +#: mod/admin.php:616 msgid "No community page" msgstr "" -#: mod/admin.php:571 +#: mod/admin.php:617 msgid "Public postings from users of this site" msgstr "" -#: mod/admin.php:572 +#: mod/admin.php:618 msgid "Global community page" msgstr "" -#: mod/admin.php:577 mod/contacts.php:498 +#: mod/admin.php:623 mod/contacts.php:526 msgid "Never" msgstr "" -#: mod/admin.php:578 +#: mod/admin.php:624 msgid "At post arrival" msgstr "" -#: mod/admin.php:579 include/contact_selectors.php:56 +#: mod/admin.php:625 include/contact_selectors.php:56 msgid "Frequently" msgstr "" -#: mod/admin.php:580 include/contact_selectors.php:57 +#: mod/admin.php:626 include/contact_selectors.php:57 msgid "Hourly" msgstr "" -#: mod/admin.php:581 include/contact_selectors.php:58 +#: mod/admin.php:627 include/contact_selectors.php:58 msgid "Twice daily" msgstr "" -#: mod/admin.php:582 include/contact_selectors.php:59 +#: mod/admin.php:628 include/contact_selectors.php:59 msgid "Daily" msgstr "" -#: mod/admin.php:587 -msgid "Multi user instance" -msgstr "" - -#: mod/admin.php:610 -msgid "Closed" -msgstr "" - -#: mod/admin.php:611 -msgid "Requires approval" -msgstr "" - -#: mod/admin.php:612 -msgid "Open" -msgstr "" - -#: mod/admin.php:616 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: mod/admin.php:617 -msgid "Force all links to use SSL" -msgstr "" - -#: mod/admin.php:618 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 -#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 -#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1136 -msgid "Save Settings" -msgstr "" - -#: mod/admin.php:629 mod/register.php:255 -msgid "Registration" -msgstr "" - -#: mod/admin.php:630 -msgid "File upload" -msgstr "" - -#: mod/admin.php:631 -msgid "Policies" -msgstr "" - -#: mod/admin.php:632 -msgid "Advanced" -msgstr "" - -#: mod/admin.php:633 -msgid "Performance" +#: mod/admin.php:632 mod/contacts.php:585 +msgid "Disabled" msgstr "" #: mod/admin.php:634 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:635 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:639 +msgid "One month" +msgstr "" + +#: mod/admin.php:640 +msgid "Three months" +msgstr "" + +#: mod/admin.php:641 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:642 +msgid "One year" +msgstr "" + +#: mod/admin.php:647 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:670 +msgid "Closed" +msgstr "" + +#: mod/admin.php:671 +msgid "Requires approval" +msgstr "" + +#: mod/admin.php:672 +msgid "Open" +msgstr "" + +#: mod/admin.php:676 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:677 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:678 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 +#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +msgid "Save Settings" +msgstr "" + +#: mod/admin.php:689 mod/register.php:260 +msgid "Registration" +msgstr "" + +#: mod/admin.php:690 +msgid "File upload" +msgstr "" + +#: mod/admin.php:691 +msgid "Policies" +msgstr "" + +#: mod/admin.php:692 +msgid "Advanced" +msgstr "" + +#: mod/admin.php:693 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:694 +msgid "Performance" +msgstr "" + +#: mod/admin.php:695 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: mod/admin.php:637 +#: mod/admin.php:698 msgid "Site name" msgstr "" -#: mod/admin.php:638 +#: mod/admin.php:699 msgid "Host name" msgstr "" -#: mod/admin.php:639 +#: mod/admin.php:700 msgid "Sender Email" msgstr "" -#: mod/admin.php:640 +#: mod/admin.php:700 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:701 msgid "Banner/Logo" msgstr "" -#: mod/admin.php:641 +#: mod/admin.php:702 msgid "Shortcut icon" msgstr "" -#: mod/admin.php:642 +#: mod/admin.php:702 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:703 msgid "Touch icon" msgstr "" -#: mod/admin.php:643 +#: mod/admin.php:703 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:704 msgid "Additional Info" msgstr "" -#: mod/admin.php:643 +#: mod/admin.php:704 +#, php-format msgid "" "For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." +"listed at %s/siteinfo." msgstr "" -#: mod/admin.php:644 +#: mod/admin.php:705 msgid "System language" msgstr "" -#: mod/admin.php:645 +#: mod/admin.php:706 msgid "System theme" msgstr "" -#: mod/admin.php:645 +#: mod/admin.php:706 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: mod/admin.php:646 +#: mod/admin.php:707 msgid "Mobile system theme" msgstr "" -#: mod/admin.php:646 +#: mod/admin.php:707 msgid "Theme for mobile devices" msgstr "" -#: mod/admin.php:647 +#: mod/admin.php:708 msgid "SSL link policy" msgstr "" -#: mod/admin.php:647 +#: mod/admin.php:708 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: mod/admin.php:648 +#: mod/admin.php:709 msgid "Force SSL" msgstr "" -#: mod/admin.php:648 +#: mod/admin.php:709 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: mod/admin.php:649 +#: mod/admin.php:710 msgid "Old style 'Share'" msgstr "" -#: mod/admin.php:649 +#: mod/admin.php:710 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: mod/admin.php:650 +#: mod/admin.php:711 msgid "Hide help entry from navigation menu" msgstr "" -#: mod/admin.php:650 +#: mod/admin.php:711 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "" -#: mod/admin.php:651 +#: mod/admin.php:712 msgid "Single user instance" msgstr "" -#: mod/admin.php:651 +#: mod/admin.php:712 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: mod/admin.php:652 +#: mod/admin.php:713 msgid "Maximum image size" msgstr "" -#: mod/admin.php:652 +#: mod/admin.php:713 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: mod/admin.php:653 +#: mod/admin.php:714 msgid "Maximum image length" msgstr "" -#: mod/admin.php:653 +#: mod/admin.php:714 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: mod/admin.php:654 +#: mod/admin.php:715 msgid "JPEG image quality" msgstr "" -#: mod/admin.php:654 +#: mod/admin.php:715 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: mod/admin.php:656 +#: mod/admin.php:717 msgid "Register policy" msgstr "" -#: mod/admin.php:657 +#: mod/admin.php:718 msgid "Maximum Daily Registrations" msgstr "" -#: mod/admin.php:657 +#: mod/admin.php:718 msgid "" "If registration is permitted above, this sets the maximum number of new user " "registrations to accept per day. If register is set to closed, this setting " "has no effect." msgstr "" -#: mod/admin.php:658 +#: mod/admin.php:719 msgid "Register text" msgstr "" -#: mod/admin.php:658 +#: mod/admin.php:719 msgid "Will be displayed prominently on the registration page." msgstr "" -#: mod/admin.php:659 +#: mod/admin.php:720 msgid "Accounts abandoned after x days" msgstr "" -#: mod/admin.php:659 +#: mod/admin.php:720 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: mod/admin.php:660 +#: mod/admin.php:721 msgid "Allowed friend domains" msgstr "" -#: mod/admin.php:660 +#: mod/admin.php:721 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: mod/admin.php:661 +#: mod/admin.php:722 msgid "Allowed email domains" msgstr "" -#: mod/admin.php:661 +#: mod/admin.php:722 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: mod/admin.php:662 +#: mod/admin.php:723 msgid "Block public" msgstr "" -#: mod/admin.php:662 +#: mod/admin.php:723 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: mod/admin.php:663 +#: mod/admin.php:724 msgid "Force publish" msgstr "" -#: mod/admin.php:663 +#: mod/admin.php:724 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/admin.php:664 -msgid "Global directory update URL" +#: mod/admin.php:725 +msgid "Global directory URL" msgstr "" -#: mod/admin.php:664 +#: mod/admin.php:725 msgid "" -"URL to update the global directory. If this is not set, the global directory " -"is completely unavailable to the application." +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." msgstr "" -#: mod/admin.php:665 +#: mod/admin.php:726 msgid "Allow threaded items" msgstr "" -#: mod/admin.php:665 +#: mod/admin.php:726 msgid "Allow infinite level threading for items on this site." msgstr "" -#: mod/admin.php:666 +#: mod/admin.php:727 msgid "Private posts by default for new users" msgstr "" -#: mod/admin.php:666 +#: mod/admin.php:727 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: mod/admin.php:667 +#: mod/admin.php:728 msgid "Don't include post content in email notifications" msgstr "" -#: mod/admin.php:667 +#: mod/admin.php:728 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: mod/admin.php:668 +#: mod/admin.php:729 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: mod/admin.php:668 +#: mod/admin.php:729 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: mod/admin.php:669 +#: mod/admin.php:730 msgid "Don't embed private images in posts" msgstr "" -#: mod/admin.php:669 +#: mod/admin.php:730 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a while." msgstr "" -#: mod/admin.php:670 +#: mod/admin.php:731 msgid "Allow Users to set remote_self" msgstr "" -#: mod/admin.php:670 +#: mod/admin.php:731 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: mod/admin.php:671 +#: mod/admin.php:732 msgid "Block multiple registrations" msgstr "" -#: mod/admin.php:671 +#: mod/admin.php:732 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: mod/admin.php:672 +#: mod/admin.php:733 msgid "OpenID support" msgstr "" -#: mod/admin.php:672 +#: mod/admin.php:733 msgid "OpenID support for registration and logins." msgstr "" -#: mod/admin.php:673 +#: mod/admin.php:734 msgid "Fullname check" msgstr "" -#: mod/admin.php:673 +#: mod/admin.php:734 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: mod/admin.php:674 +#: mod/admin.php:735 msgid "UTF-8 Regular expressions" msgstr "" -#: mod/admin.php:674 +#: mod/admin.php:735 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: mod/admin.php:675 +#: mod/admin.php:736 msgid "Community Page Style" msgstr "" -#: mod/admin.php:675 +#: mod/admin.php:736 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "" -#: mod/admin.php:676 +#: mod/admin.php:737 msgid "Posts per user on community page" msgstr "" -#: mod/admin.php:676 +#: mod/admin.php:737 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: mod/admin.php:677 +#: mod/admin.php:738 msgid "Enable OStatus support" msgstr "" -#: mod/admin.php:677 +#: mod/admin.php:738 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: mod/admin.php:678 +#: mod/admin.php:739 msgid "OStatus conversation completion interval" msgstr "" -#: mod/admin.php:678 +#: mod/admin.php:739 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: mod/admin.php:679 +#: mod/admin.php:740 msgid "Enable Diaspora support" msgstr "" -#: mod/admin.php:679 +#: mod/admin.php:740 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: mod/admin.php:680 +#: mod/admin.php:741 msgid "Only allow Friendica contacts" msgstr "" -#: mod/admin.php:680 +#: mod/admin.php:741 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: mod/admin.php:681 +#: mod/admin.php:742 msgid "Verify SSL" msgstr "" -#: mod/admin.php:681 +#: mod/admin.php:742 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you " "cannot connect (at all) to self-signed SSL sites." msgstr "" -#: mod/admin.php:682 +#: mod/admin.php:743 msgid "Proxy user" msgstr "" -#: mod/admin.php:683 +#: mod/admin.php:744 msgid "Proxy URL" msgstr "" -#: mod/admin.php:684 +#: mod/admin.php:745 msgid "Network timeout" msgstr "" -#: mod/admin.php:684 +#: mod/admin.php:745 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: mod/admin.php:685 +#: mod/admin.php:746 msgid "Delivery interval" msgstr "" -#: mod/admin.php:685 +#: mod/admin.php:746 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "" -#: mod/admin.php:686 +#: mod/admin.php:747 msgid "Poll interval" msgstr "" -#: mod/admin.php:686 +#: mod/admin.php:747 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: mod/admin.php:687 +#: mod/admin.php:748 msgid "Maximum Load Average" msgstr "" -#: mod/admin.php:687 +#: mod/admin.php:748 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: mod/admin.php:688 +#: mod/admin.php:749 msgid "Maximum Load Average (Frontend)" msgstr "" -#: mod/admin.php:688 +#: mod/admin.php:749 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:690 +#: mod/admin.php:751 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:751 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:752 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:752 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:753 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:753 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:754 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:754 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:755 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:755 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:757 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:757 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:759 msgid "Use MySQL full text engine" msgstr "" -#: mod/admin.php:690 +#: mod/admin.php:759 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: mod/admin.php:691 +#: mod/admin.php:760 msgid "Suppress Language" msgstr "" -#: mod/admin.php:691 +#: mod/admin.php:760 msgid "Suppress language information in meta information about a posting." msgstr "" -#: mod/admin.php:692 +#: mod/admin.php:761 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:692 +#: mod/admin.php:761 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:693 +#: mod/admin.php:762 msgid "Path to item cache" msgstr "" -#: mod/admin.php:694 +#: mod/admin.php:762 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:763 msgid "Cache duration in seconds" msgstr "" -#: mod/admin.php:694 +#: mod/admin.php:763 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One " "day). To disable the item cache, set the value to -1." msgstr "" -#: mod/admin.php:695 +#: mod/admin.php:764 msgid "Maximum numbers of comments per post" msgstr "" -#: mod/admin.php:695 +#: mod/admin.php:764 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: mod/admin.php:696 +#: mod/admin.php:765 msgid "Path for lock file" msgstr "" -#: mod/admin.php:697 +#: mod/admin.php:765 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:766 msgid "Temp path" msgstr "" -#: mod/admin.php:698 +#: mod/admin.php:766 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:767 msgid "Base path to installation" msgstr "" -#: mod/admin.php:699 +#: mod/admin.php:767 +msgid "" +"If the system cannot detect the correct path to your installation, enter the " +"correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:768 msgid "Disable picture proxy" msgstr "" -#: mod/admin.php:699 +#: mod/admin.php:768 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on " "systems with very low bandwith." msgstr "" -#: mod/admin.php:700 +#: mod/admin.php:769 msgid "Enable old style pager" msgstr "" -#: mod/admin.php:700 +#: mod/admin.php:769 msgid "" "The old style pager has page numbers but slows down massively the page speed." msgstr "" -#: mod/admin.php:701 +#: mod/admin.php:770 msgid "Only search in tags" msgstr "" -#: mod/admin.php:701 +#: mod/admin.php:770 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:703 +#: mod/admin.php:772 msgid "New base url" msgstr "" -#: mod/admin.php:705 +#: mod/admin.php:772 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts " +"of all users." +msgstr "" + +#: mod/admin.php:774 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:705 +#: mod/admin.php:774 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:723 +#: mod/admin.php:775 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:775 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:793 msgid "Update has been marked successful" msgstr "" -#: mod/admin.php:731 +#: mod/admin.php:801 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:734 +#: mod/admin.php:804 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:816 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:819 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:823 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:825 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/admin.php:774 +#: mod/admin.php:844 msgid "No failed updates." msgstr "" -#: mod/admin.php:775 +#: mod/admin.php:845 msgid "Check database structure" msgstr "" -#: mod/admin.php:780 +#: mod/admin.php:850 msgid "Failed Updates" msgstr "" -#: mod/admin.php:781 +#: mod/admin.php:851 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: mod/admin.php:782 +#: mod/admin.php:852 msgid "Mark success (if update was manually applied)" msgstr "" -#: mod/admin.php:783 +#: mod/admin.php:853 msgid "Attempt to execute this update step automatically" msgstr "" -#: mod/admin.php:815 +#: mod/admin.php:885 #, php-format msgid "" "\n" @@ -1620,7 +1828,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: mod/admin.php:818 +#: mod/admin.php:888 #, php-format msgid "" "\n" @@ -1656,372 +1864,372 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:850 include/user.php:413 +#: mod/admin.php:920 include/user.php:421 #, php-format msgid "Registration details for %s" msgstr "" -#: mod/admin.php:862 +#: mod/admin.php:932 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:869 +#: mod/admin.php:939 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:908 +#: mod/admin.php:978 #, php-format msgid "User '%s' deleted" msgstr "" -#: mod/admin.php:916 +#: mod/admin.php:986 #, php-format msgid "User '%s' unblocked" msgstr "" -#: mod/admin.php:916 +#: mod/admin.php:986 #, php-format msgid "User '%s' blocked" msgstr "" -#: mod/admin.php:1009 +#: mod/admin.php:1079 msgid "Add User" msgstr "" -#: mod/admin.php:1010 +#: mod/admin.php:1080 msgid "select all" msgstr "" -#: mod/admin.php:1011 +#: mod/admin.php:1081 msgid "User registrations waiting for confirm" msgstr "" -#: mod/admin.php:1012 +#: mod/admin.php:1082 msgid "User waiting for permanent deletion" msgstr "" -#: mod/admin.php:1013 +#: mod/admin.php:1083 msgid "Request date" msgstr "" -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 -#: mod/settings.php:623 mod/settings.php:649 mod/crepair.php:170 +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 +#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 msgid "Name" msgstr "" -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041 +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "" -#: mod/admin.php:1014 +#: mod/admin.php:1084 msgid "No registrations." msgstr "" -#: mod/admin.php:1016 +#: mod/admin.php:1086 msgid "Deny" msgstr "" -#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 +#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 msgid "Block" msgstr "" -#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 +#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 msgid "Unblock" msgstr "" -#: mod/admin.php:1020 +#: mod/admin.php:1090 msgid "Site admin" msgstr "" -#: mod/admin.php:1021 +#: mod/admin.php:1091 msgid "Account expired" msgstr "" -#: mod/admin.php:1024 +#: mod/admin.php:1094 msgid "New User" msgstr "" -#: mod/admin.php:1025 mod/admin.php:1026 +#: mod/admin.php:1095 mod/admin.php:1096 msgid "Register date" msgstr "" -#: mod/admin.php:1025 mod/admin.php:1026 +#: mod/admin.php:1095 mod/admin.php:1096 msgid "Last login" msgstr "" -#: mod/admin.php:1025 mod/admin.php:1026 +#: mod/admin.php:1095 mod/admin.php:1096 msgid "Last item" msgstr "" -#: mod/admin.php:1025 +#: mod/admin.php:1095 msgid "Deleted since" msgstr "" -#: mod/admin.php:1026 mod/settings.php:41 +#: mod/admin.php:1096 mod/settings.php:41 msgid "Account" msgstr "" -#: mod/admin.php:1028 +#: mod/admin.php:1098 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/admin.php:1029 +#: mod/admin.php:1099 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/admin.php:1039 +#: mod/admin.php:1109 msgid "Name of the new user." msgstr "" -#: mod/admin.php:1040 +#: mod/admin.php:1110 msgid "Nickname" msgstr "" -#: mod/admin.php:1040 +#: mod/admin.php:1110 msgid "Nickname of the new user." msgstr "" -#: mod/admin.php:1041 +#: mod/admin.php:1111 msgid "Email address of the new user." msgstr "" -#: mod/admin.php:1074 +#: mod/admin.php:1144 #, php-format msgid "Plugin %s disabled." msgstr "" -#: mod/admin.php:1078 +#: mod/admin.php:1148 #, php-format msgid "Plugin %s enabled." msgstr "" -#: mod/admin.php:1088 mod/admin.php:1304 +#: mod/admin.php:1158 mod/admin.php:1381 msgid "Disable" msgstr "" -#: mod/admin.php:1090 mod/admin.php:1306 +#: mod/admin.php:1160 mod/admin.php:1383 msgid "Enable" msgstr "" -#: mod/admin.php:1113 mod/admin.php:1334 +#: mod/admin.php:1183 mod/admin.php:1411 msgid "Toggle" msgstr "" -#: mod/admin.php:1114 mod/admin.php:1335 mod/newmember.php:22 -#: mod/settings.php:90 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:173 +#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 +#: mod/settings.php:99 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 include/nav.php:181 msgid "Settings" msgstr "" -#: mod/admin.php:1121 mod/admin.php:1344 +#: mod/admin.php:1191 mod/admin.php:1421 msgid "Author: " msgstr "" -#: mod/admin.php:1122 mod/admin.php:1345 +#: mod/admin.php:1192 mod/admin.php:1422 msgid "Maintainer: " msgstr "" -#: mod/admin.php:1264 +#: mod/admin.php:1341 msgid "No themes found." msgstr "" -#: mod/admin.php:1326 +#: mod/admin.php:1403 msgid "Screenshot" msgstr "" -#: mod/admin.php:1372 +#: mod/admin.php:1449 msgid "[Experimental]" msgstr "" -#: mod/admin.php:1373 +#: mod/admin.php:1450 msgid "[Unsupported]" msgstr "" -#: mod/admin.php:1400 +#: mod/admin.php:1477 msgid "Log settings updated." msgstr "" -#: mod/admin.php:1456 +#: mod/admin.php:1533 msgid "Clear" msgstr "" -#: mod/admin.php:1462 +#: mod/admin.php:1539 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:1463 +#: mod/admin.php:1540 msgid "Log file" msgstr "" -#: mod/admin.php:1463 +#: mod/admin.php:1540 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: mod/admin.php:1464 +#: mod/admin.php:1541 msgid "Log level" msgstr "" -#: mod/admin.php:1513 mod/contacts.php:587 +#: mod/admin.php:1590 mod/contacts.php:619 msgid "Update now" msgstr "" -#: mod/admin.php:1514 include/acl_selectors.php:347 +#: mod/admin.php:1591 include/acl_selectors.php:347 msgid "Close" msgstr "" -#: mod/admin.php:1520 +#: mod/admin.php:1597 msgid "FTP Host" msgstr "" -#: mod/admin.php:1521 +#: mod/admin.php:1598 msgid "FTP Path" msgstr "" -#: mod/admin.php:1522 +#: mod/admin.php:1599 msgid "FTP User" msgstr "" -#: mod/admin.php:1523 +#: mod/admin.php:1600 msgid "FTP Password" msgstr "" -#: mod/message.php:9 include/nav.php:165 +#: mod/message.php:9 include/nav.php:173 msgid "New Message" msgstr "" -#: mod/message.php:63 mod/wallmessage.php:56 +#: mod/message.php:64 mod/wallmessage.php:56 msgid "No recipient selected." msgstr "" -#: mod/message.php:67 +#: mod/message.php:68 msgid "Unable to locate contact information." msgstr "" -#: mod/message.php:70 mod/wallmessage.php:62 +#: mod/message.php:71 mod/wallmessage.php:62 msgid "Message could not be sent." msgstr "" -#: mod/message.php:73 mod/wallmessage.php:65 +#: mod/message.php:74 mod/wallmessage.php:65 msgid "Message collection failure." msgstr "" -#: mod/message.php:76 mod/wallmessage.php:68 +#: mod/message.php:77 mod/wallmessage.php:68 msgid "Message sent." msgstr "" -#: mod/message.php:182 include/nav.php:162 +#: mod/message.php:183 include/nav.php:170 msgid "Messages" msgstr "" -#: mod/message.php:207 +#: mod/message.php:208 msgid "Do you really want to delete this message?" msgstr "" -#: mod/message.php:227 +#: mod/message.php:228 msgid "Message deleted." msgstr "" -#: mod/message.php:258 +#: mod/message.php:259 msgid "Conversation removed." 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 +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 #: include/conversation.php:1001 include/conversation.php:1019 msgid "Please enter a link URL:" msgstr "" -#: mod/message.php:319 mod/wallmessage.php:142 +#: mod/message.php:320 mod/wallmessage.php:142 msgid "Send Private Message" msgstr "" -#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144 +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 msgid "To:" msgstr "" -#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145 +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 msgid "Subject:" msgstr "" -#: mod/message.php:329 mod/message.php:558 mod/wallmessage.php:151 +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 #: mod/invite.php:134 msgid "Your message:" msgstr "" -#: mod/message.php:332 mod/message.php:562 mod/editpost.php:110 +#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 #: mod/wallmessage.php:154 include/conversation.php:1056 msgid "Upload photo" msgstr "" -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:114 +#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 #: mod/wallmessage.php:155 include/conversation.php:1060 msgid "Insert web link" msgstr "" -#: mod/message.php:371 +#: mod/message.php:372 msgid "No messages." msgstr "" -#: mod/message.php:378 +#: mod/message.php:379 #, php-format msgid "Unknown sender - %s" msgstr "" -#: mod/message.php:381 +#: mod/message.php:382 #, php-format msgid "You and %s" msgstr "" -#: mod/message.php:384 +#: mod/message.php:385 #, php-format msgid "%s and You" msgstr "" -#: mod/message.php:405 mod/message.php:546 +#: mod/message.php:406 mod/message.php:547 msgid "Delete conversation" msgstr "" -#: mod/message.php:408 +#: mod/message.php:409 msgid "D, d M Y - g:i A" msgstr "" -#: mod/message.php:411 +#: mod/message.php:412 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "" msgstr[1] "" -#: mod/message.php:450 +#: mod/message.php:451 msgid "Message not available." msgstr "" -#: mod/message.php:520 +#: mod/message.php:521 msgid "Delete message" msgstr "" -#: mod/message.php:548 +#: mod/message.php:549 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: mod/message.php:552 +#: mod/message.php:553 msgid "Send Reply" msgstr "" @@ -2033,7 +2241,7 @@ msgstr "" msgid "Edit post" msgstr "" -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:978 +#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 msgid "Save" msgstr "" @@ -2110,7 +2318,7 @@ msgid "Example: bob@example.com, mary@example.com" msgstr "" #: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:626 +#: mod/profiles.php:179 mod/profiles.php:627 msgid "Profile not found." msgstr "" @@ -2148,7 +2356,7 @@ msgstr "" msgid "Unable to set contact photo." msgstr "" -#: mod/dfrn_confirm.php:487 include/diaspora.php:622 +#: mod/dfrn_confirm.php:487 include/diaspora.php:633 #: include/conversation.php:172 #, php-format msgid "%1$s is now friends with %2$s" @@ -2211,12 +2419,12 @@ msgstr "" msgid "Edit event" msgstr "" -#: mod/events.php:361 include/text.php:1679 include/text.php:1689 +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 msgid "link to source" msgstr "" #: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:663 include/nav.php:80 +#: include/identity.php:668 include/nav.php:80 msgid "Events" msgstr "" @@ -2264,11 +2472,6 @@ msgstr "" msgid "Description:" msgstr "" -#: mod/events.php:503 mod/directory.php:152 include/event.php:42 -#: include/identity.php:268 include/bb2diaspora.php:161 -msgid "Location:" -msgstr "" - #: mod/events.php:505 msgid "Title:" msgstr "" @@ -2277,12 +2480,12 @@ msgstr "" msgid "Share this event" msgstr "" -#: mod/fbrowser.php:25 view/theme/diabook/theme.php:126 -#: include/identity.php:646 include/nav.php:78 +#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 +#: include/identity.php:649 include/nav.php:78 msgid "Photos" msgstr "" -#: mod/fbrowser.php:113 +#: mod/fbrowser.php:122 msgid "Files" msgstr "" @@ -2319,13 +2522,13 @@ msgid "" "your site allow private mail from unknown senders." msgstr "" -#: mod/nogroup.php:40 mod/contacts.php:573 mod/contacts.php:797 +#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 #: mod/viewcontacts.php:64 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: mod/nogroup.php:41 mod/contacts.php:798 +#: mod/nogroup.php:41 mod/contacts.php:839 msgid "Edit contact" msgstr "" @@ -2351,6 +2554,10 @@ msgstr "" msgid "Bug reports and issues: please visit" msgstr "" +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + #: mod/friendica.php:65 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " @@ -2379,22 +2586,28 @@ msgstr "" msgid "Please enter your password for verification:" msgstr "" -#: mod/wall_upload.php:122 mod/photos.php:789 mod/profile_photo.php:144 +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "" + +#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: mod/wall_upload.php:144 mod/photos.php:829 mod/profile_photo.php:153 +#: mod/wall_upload.php:169 mod/photos.php:829 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:486 include/message.php:144 include/Photo.php:951 +#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 +#: mod/item.php:486 include/message.php:145 include/Photo.php:951 #: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 msgid "Wall Photos" msgstr "" -#: mod/wall_upload.php:172 mod/photos.php:856 mod/profile_photo.php:301 +#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 msgid "Image upload failed." msgstr "" @@ -2427,7 +2640,7 @@ msgstr "" msgid "Contact Photos" msgstr "" -#: mod/photos.php:84 include/identity.php:649 +#: mod/photos.php:84 include/identity.php:652 msgid "Photo Albums" msgstr "" @@ -2451,8 +2664,8 @@ msgstr "" #: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 #: mod/profile_photo.php:88 mod/profile_photo.php:204 #: mod/profile_photo.php:296 mod/profile_photo.php:305 -#: view/theme/diabook/theme.php:500 include/user.php:335 include/user.php:342 -#: include/user.php:349 +#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 +#: include/user.php:357 msgid "Profile Photos" msgstr "" @@ -2522,11 +2735,11 @@ msgstr "" msgid "Permissions" msgstr "" -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1171 +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 msgid "Show to Groups" msgstr "" -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1172 +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 msgid "Show to Contacts" msgstr "" @@ -2634,88 +2847,100 @@ msgstr "" msgid "No profile" msgstr "" -#: mod/register.php:90 +#: mod/register.php:92 msgid "" "Registration successful. Please check your email for further instructions." msgstr "" -#: mod/register.php:96 +#: mod/register.php:97 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "" -#: mod/register.php:105 +#: mod/register.php:107 msgid "Your registration can not be processed." msgstr "" -#: mod/register.php:148 +#: mod/register.php:150 msgid "Your registration is pending approval by the site owner." msgstr "" -#: mod/register.php:186 mod/uimport.php:50 +#: mod/register.php:188 mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "" -#: mod/register.php:214 +#: mod/register.php:216 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "" -#: mod/register.php:215 +#: mod/register.php:217 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "" -#: mod/register.php:216 +#: mod/register.php:218 msgid "Your OpenID (optional): " msgstr "" -#: mod/register.php:230 +#: mod/register.php:232 msgid "Include your profile in member directory?" msgstr "" -#: mod/register.php:251 +#: mod/register.php:256 msgid "Membership on this site is by invitation only." msgstr "" -#: mod/register.php:252 +#: mod/register.php:257 msgid "Your invitation ID: " msgstr "" -#: mod/register.php:263 +#: mod/register.php:268 msgid "Your Full Name (e.g. Joe Smith): " msgstr "" -#: mod/register.php:264 +#: mod/register.php:269 msgid "Your Email Address: " msgstr "" -#: mod/register.php:265 +#: mod/register.php:271 mod/settings.php:1174 +msgid "New Password:" +msgstr "" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:272 mod/settings.php:1175 +msgid "Confirm:" +msgstr "" + +#: mod/register.php:273 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be 'nickname@$sitename'." msgstr "" -#: mod/register.php:266 +#: mod/register.php:274 msgid "Choose a nickname: " msgstr "" -#: mod/register.php:269 boot.php:1238 include/nav.php:109 +#: mod/register.php:277 boot.php:1248 include/nav.php:109 msgid "Register" msgstr "" -#: mod/register.php:275 mod/uimport.php:64 +#: mod/register.php:283 mod/uimport.php:64 msgid "Import" msgstr "" -#: mod/register.php:276 +#: mod/register.php:284 msgid "Import your profile to this friendica instance" msgstr "" @@ -2773,7 +2998,7 @@ msgid "" "Password reset failed." msgstr "" -#: mod/lostpass.php:109 boot.php:1277 +#: mod/lostpass.php:109 boot.php:1287 msgid "Password Reset" msgstr "" @@ -2884,7 +3109,7 @@ msgid_plural "%d contacts edited" msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:145 mod/contacts.php:368 msgid "Could not access contact record." msgstr "" @@ -2896,308 +3121,309 @@ msgstr "" msgid "Contact updated." msgstr "" -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been blocked" msgstr "" -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been unblocked" msgstr "" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been ignored" msgstr "" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been unignored" msgstr "" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been archived" msgstr "" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been unarchived" msgstr "" -#: mod/contacts.php:411 mod/contacts.php:754 +#: mod/contacts.php:439 mod/contacts.php:795 msgid "Do you really want to delete this contact?" msgstr "" -#: mod/contacts.php:428 +#: mod/contacts.php:456 msgid "Contact has been removed." msgstr "" -#: mod/contacts.php:466 +#: mod/contacts.php:494 #, php-format msgid "You are mutual friends with %s" msgstr "" -#: mod/contacts.php:470 +#: mod/contacts.php:498 #, php-format msgid "You are sharing with %s" msgstr "" -#: mod/contacts.php:475 +#: mod/contacts.php:503 #, php-format msgid "%s is sharing with you" msgstr "" -#: mod/contacts.php:495 +#: mod/contacts.php:523 msgid "Private communications are not available for this contact." msgstr "" -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was successful)" msgstr "" -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was not successful)" msgstr "" -#: mod/contacts.php:504 +#: mod/contacts.php:532 msgid "Suggest friends" msgstr "" -#: mod/contacts.php:508 +#: mod/contacts.php:536 #, php-format msgid "Network type: %s" msgstr "" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:539 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:516 +#: mod/contacts.php:544 msgid "View all contacts" msgstr "" -#: mod/contacts.php:524 +#: mod/contacts.php:552 msgid "Toggle Blocked status" msgstr "" -#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758 +#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 msgid "Unignore" msgstr "" -#: mod/contacts.php:530 +#: mod/contacts.php:559 msgid "Toggle Ignored status" msgstr "" -#: mod/contacts.php:534 mod/contacts.php:759 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Unarchive" msgstr "" -#: mod/contacts.php:534 mod/contacts.php:759 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Archive" msgstr "" -#: mod/contacts.php:537 +#: mod/contacts.php:567 msgid "Toggle Archive status" msgstr "" -#: mod/contacts.php:540 +#: mod/contacts.php:571 msgid "Repair" msgstr "" -#: mod/contacts.php:543 +#: mod/contacts.php:574 msgid "Advanced Contact Settings" msgstr "" -#: mod/contacts.php:549 +#: mod/contacts.php:581 msgid "Communications lost with this contact!" msgstr "" -#: mod/contacts.php:552 +#: mod/contacts.php:584 msgid "Fetch further information for feeds" msgstr "" -#: mod/contacts.php:553 -msgid "Disabled" -msgstr "" - -#: mod/contacts.php:553 +#: mod/contacts.php:585 msgid "Fetch information" msgstr "" -#: mod/contacts.php:553 +#: mod/contacts.php:585 msgid "Fetch information and keywords" msgstr "" -#: mod/contacts.php:562 +#: mod/contacts.php:594 msgid "Contact Editor" msgstr "" -#: mod/contacts.php:565 +#: mod/contacts.php:597 msgid "Profile Visibility" msgstr "" -#: mod/contacts.php:566 +#: mod/contacts.php:598 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: mod/contacts.php:567 +#: mod/contacts.php:599 msgid "Contact Information / Notes" msgstr "" -#: mod/contacts.php:568 +#: mod/contacts.php:600 msgid "Edit contact notes" msgstr "" -#: mod/contacts.php:574 +#: mod/contacts.php:606 msgid "Block/Unblock contact" msgstr "" -#: mod/contacts.php:575 +#: mod/contacts.php:607 msgid "Ignore contact" msgstr "" -#: mod/contacts.php:576 +#: mod/contacts.php:608 msgid "Repair URL settings" msgstr "" -#: mod/contacts.php:577 +#: mod/contacts.php:609 msgid "View conversations" msgstr "" -#: mod/contacts.php:579 +#: mod/contacts.php:611 msgid "Delete contact" msgstr "" -#: mod/contacts.php:583 +#: mod/contacts.php:615 msgid "Last update:" msgstr "" -#: mod/contacts.php:585 +#: mod/contacts.php:617 msgid "Update public posts" msgstr "" -#: mod/contacts.php:594 +#: mod/contacts.php:626 msgid "Currently blocked" msgstr "" -#: mod/contacts.php:595 +#: mod/contacts.php:627 msgid "Currently ignored" msgstr "" -#: mod/contacts.php:596 +#: mod/contacts.php:628 msgid "Currently archived" msgstr "" -#: mod/contacts.php:597 +#: mod/contacts.php:629 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: mod/contacts.php:598 +#: mod/contacts.php:630 msgid "Notification for new posts" msgstr "" -#: mod/contacts.php:598 +#: mod/contacts.php:630 msgid "Send a notification of every new post of this contact" msgstr "" -#: mod/contacts.php:601 +#: mod/contacts.php:633 msgid "Blacklisted keywords" msgstr "" -#: mod/contacts.php:601 +#: mod/contacts.php:633 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/contacts.php:652 +#: mod/contacts.php:640 +msgid "Profile URL" +msgstr "" + +#: mod/contacts.php:686 msgid "Suggestions" msgstr "" -#: mod/contacts.php:655 +#: mod/contacts.php:689 msgid "Suggest potential friends" msgstr "" -#: mod/contacts.php:658 mod/group.php:192 +#: mod/contacts.php:693 mod/group.php:192 msgid "All Contacts" msgstr "" -#: mod/contacts.php:661 +#: mod/contacts.php:696 msgid "Show all contacts" msgstr "" -#: mod/contacts.php:664 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "" -#: mod/contacts.php:667 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "" -#: mod/contacts.php:671 +#: mod/contacts.php:708 msgid "Blocked" msgstr "" -#: mod/contacts.php:674 +#: mod/contacts.php:711 msgid "Only show blocked contacts" msgstr "" -#: mod/contacts.php:678 +#: mod/contacts.php:716 msgid "Ignored" msgstr "" -#: mod/contacts.php:681 +#: mod/contacts.php:719 msgid "Only show ignored contacts" msgstr "" -#: mod/contacts.php:685 +#: mod/contacts.php:724 msgid "Archived" msgstr "" -#: mod/contacts.php:688 +#: mod/contacts.php:727 msgid "Only show archived contacts" msgstr "" -#: mod/contacts.php:692 +#: mod/contacts.php:732 msgid "Hidden" msgstr "" -#: mod/contacts.php:695 +#: mod/contacts.php:735 msgid "Only show hidden contacts" msgstr "" -#: mod/contacts.php:745 view/theme/diabook/theme.php:125 include/nav.php:178 +#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 +#: include/nav.php:124 include/nav.php:186 msgid "Contacts" msgstr "" -#: mod/contacts.php:749 +#: mod/contacts.php:790 msgid "Search your contacts" msgstr "" -#: mod/contacts.php:750 mod/directory.php:63 +#: mod/contacts.php:791 mod/directory.php:63 msgid "Finding: " msgstr "" -#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "" -#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647 +#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "" -#: mod/contacts.php:773 +#: mod/contacts.php:814 msgid "Mutual Friendship" msgstr "" -#: mod/contacts.php:777 +#: mod/contacts.php:818 msgid "is a fan of yours" msgstr "" -#: mod/contacts.php:781 +#: mod/contacts.php:822 msgid "you are a fan of" msgstr "" @@ -3229,15 +3455,15 @@ msgstr "" msgid "No contacts in common." msgstr "" -#: mod/follow.php:24 +#: mod/follow.php:26 msgid "You already added this contact." msgstr "" -#: mod/follow.php:106 +#: mod/follow.php:108 msgid "Contact added" msgstr "" -#: mod/bookmarklet.php:12 boot.php:1263 include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 msgid "Login" msgstr "" @@ -3357,12 +3583,12 @@ msgid "" msgstr "" #: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:529 include/identity.php:610 include/identity.php:639 +#: include/identity.php:530 include/identity.php:611 include/identity.php:641 #: include/nav.php:77 msgid "Profile" msgstr "" -#: mod/newmember.php:36 mod/profiles.php:695 mod/profile_photo.php:244 +#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "" @@ -3501,28 +3727,28 @@ msgid "" "features and resources." msgstr "" -#: mod/search.php:21 mod/network.php:187 +#: mod/search.php:25 mod/network.php:187 msgid "Remove term" msgstr "" -#: mod/search.php:30 mod/network.php:196 include/features.php:42 +#: mod/search.php:34 mod/network.php:196 include/features.php:42 msgid "Saved Searches" msgstr "" -#: mod/search.php:99 include/text.php:977 include/nav.php:119 +#: mod/search.php:107 include/text.php:996 include/nav.php:119 msgid "Search" msgstr "" -#: mod/search.php:174 mod/community.php:62 mod/community.php:71 +#: mod/search.php:199 mod/community.php:62 mod/community.php:71 msgid "No results." msgstr "" -#: mod/search.php:180 +#: mod/search.php:205 #, php-format msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:182 +#: mod/search.php:207 #, php-format msgid "Search results for: %s" msgstr "" @@ -3619,637 +3845,659 @@ msgid "" "important, please visit http://friendica.com" msgstr "" -#: mod/settings.php:46 +#: mod/settings.php:47 msgid "Additional features" msgstr "" -#: mod/settings.php:51 +#: mod/settings.php:53 msgid "Display" msgstr "" -#: mod/settings.php:57 mod/settings.php:805 +#: mod/settings.php:60 mod/settings.php:837 msgid "Social Networks" msgstr "" -#: mod/settings.php:67 include/nav.php:171 +#: mod/settings.php:72 include/nav.php:179 msgid "Delegations" msgstr "" -#: mod/settings.php:72 +#: mod/settings.php:78 msgid "Connected apps" msgstr "" -#: mod/settings.php:77 mod/uexport.php:85 +#: mod/settings.php:84 mod/uexport.php:85 msgid "Export personal data" msgstr "" -#: mod/settings.php:82 +#: mod/settings.php:90 msgid "Remove account" msgstr "" -#: mod/settings.php:134 +#: mod/settings.php:143 msgid "Missing some important data!" msgstr "" -#: mod/settings.php:245 +#: mod/settings.php:256 msgid "Failed to connect with email account using the settings provided." msgstr "" -#: mod/settings.php:250 +#: mod/settings.php:261 msgid "Email settings updated." msgstr "" -#: mod/settings.php:265 +#: mod/settings.php:276 msgid "Features updated" msgstr "" -#: mod/settings.php:328 +#: mod/settings.php:339 msgid "Relocate message has been send to your contacts" msgstr "" -#: mod/settings.php:342 +#: mod/settings.php:353 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "" -#: mod/settings.php:347 +#: mod/settings.php:358 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: mod/settings.php:355 +#: mod/settings.php:366 msgid "Wrong password." msgstr "" -#: mod/settings.php:366 +#: mod/settings.php:377 msgid "Password changed." msgstr "" -#: mod/settings.php:368 +#: mod/settings.php:379 msgid "Password update failed. Please try again." msgstr "" -#: mod/settings.php:435 +#: mod/settings.php:446 msgid " Please use a shorter name." msgstr "" -#: mod/settings.php:437 +#: mod/settings.php:448 msgid " Name too short." msgstr "" -#: mod/settings.php:446 +#: mod/settings.php:457 msgid "Wrong Password" msgstr "" -#: mod/settings.php:451 +#: mod/settings.php:462 msgid " Not valid email." msgstr "" -#: mod/settings.php:457 +#: mod/settings.php:468 msgid " Cannot change to that email." msgstr "" -#: mod/settings.php:513 +#: mod/settings.php:524 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: mod/settings.php:517 +#: mod/settings.php:528 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: mod/settings.php:547 +#: mod/settings.php:558 msgid "Settings updated." msgstr "" -#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 +#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 msgid "Add application" msgstr "" -#: mod/settings.php:624 mod/settings.php:650 +#: mod/settings.php:635 mod/settings.php:661 msgid "Consumer Key" msgstr "" -#: mod/settings.php:625 mod/settings.php:651 +#: mod/settings.php:636 mod/settings.php:662 msgid "Consumer Secret" msgstr "" -#: mod/settings.php:626 mod/settings.php:652 +#: mod/settings.php:637 mod/settings.php:663 msgid "Redirect" msgstr "" -#: mod/settings.php:627 mod/settings.php:653 +#: mod/settings.php:638 mod/settings.php:664 msgid "Icon url" msgstr "" -#: mod/settings.php:638 +#: mod/settings.php:649 msgid "You can't edit this application." msgstr "" -#: mod/settings.php:681 +#: mod/settings.php:692 msgid "Connected Apps" msgstr "" -#: mod/settings.php:685 +#: mod/settings.php:696 msgid "Client key starts with" msgstr "" -#: mod/settings.php:686 +#: mod/settings.php:697 msgid "No name" msgstr "" -#: mod/settings.php:687 +#: mod/settings.php:698 msgid "Remove authorization" msgstr "" -#: mod/settings.php:699 +#: mod/settings.php:710 msgid "No Plugin settings configured" msgstr "" -#: mod/settings.php:707 +#: mod/settings.php:718 msgid "Plugin Settings" msgstr "" -#: mod/settings.php:721 +#: mod/settings.php:732 msgid "Off" msgstr "" -#: mod/settings.php:721 +#: mod/settings.php:732 msgid "On" msgstr "" -#: mod/settings.php:729 +#: mod/settings.php:740 msgid "Additional Features" msgstr "" -#: mod/settings.php:739 mod/settings.php:743 +#: mod/settings.php:750 mod/settings.php:754 msgid "General Social Media Settings" msgstr "" -#: mod/settings.php:749 +#: mod/settings.php:760 msgid "Disable intelligent shortening" msgstr "" -#: mod/settings.php:751 +#: mod/settings.php:762 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the " "original friendica post." msgstr "" -#: mod/settings.php:761 mod/settings.php:762 +#: mod/settings.php:768 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:770 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:779 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:781 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:784 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:793 mod/settings.php:794 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: mod/settings.php:761 mod/settings.php:762 +#: mod/settings.php:793 mod/settings.php:794 msgid "enabled" msgstr "" -#: mod/settings.php:761 mod/settings.php:762 +#: mod/settings.php:793 mod/settings.php:794 msgid "disabled" msgstr "" -#: mod/settings.php:762 -msgid "StatusNet" +#: mod/settings.php:794 +msgid "GNU Social (OStatus)" msgstr "" -#: mod/settings.php:798 +#: mod/settings.php:830 msgid "Email access is disabled on this site." msgstr "" -#: mod/settings.php:810 +#: mod/settings.php:842 msgid "Email/Mailbox Setup" msgstr "" -#: mod/settings.php:811 +#: mod/settings.php:843 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "" -#: mod/settings.php:812 +#: mod/settings.php:844 msgid "Last successful email check:" msgstr "" -#: mod/settings.php:814 +#: mod/settings.php:846 msgid "IMAP server name:" msgstr "" -#: mod/settings.php:815 +#: mod/settings.php:847 msgid "IMAP port:" msgstr "" -#: mod/settings.php:816 +#: mod/settings.php:848 msgid "Security:" msgstr "" -#: mod/settings.php:816 mod/settings.php:821 +#: mod/settings.php:848 mod/settings.php:853 msgid "None" msgstr "" -#: mod/settings.php:817 +#: mod/settings.php:849 msgid "Email login name:" msgstr "" -#: mod/settings.php:818 +#: mod/settings.php:850 msgid "Email password:" msgstr "" -#: mod/settings.php:819 +#: mod/settings.php:851 msgid "Reply-to address:" msgstr "" -#: mod/settings.php:820 +#: mod/settings.php:852 msgid "Send public posts to all email contacts:" msgstr "" -#: mod/settings.php:821 +#: mod/settings.php:853 msgid "Action after import:" msgstr "" -#: mod/settings.php:821 +#: mod/settings.php:853 msgid "Mark as seen" msgstr "" -#: mod/settings.php:821 +#: mod/settings.php:853 msgid "Move to folder" msgstr "" -#: mod/settings.php:822 +#: mod/settings.php:854 msgid "Move to folder:" msgstr "" -#: mod/settings.php:903 +#: mod/settings.php:935 msgid "Display Settings" msgstr "" -#: mod/settings.php:909 mod/settings.php:924 +#: mod/settings.php:941 mod/settings.php:957 msgid "Display Theme:" msgstr "" -#: mod/settings.php:910 +#: mod/settings.php:942 msgid "Mobile Theme:" msgstr "" -#: mod/settings.php:911 +#: mod/settings.php:943 msgid "Update browser every xx seconds" msgstr "" -#: mod/settings.php:911 +#: mod/settings.php:943 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: mod/settings.php:912 +#: mod/settings.php:944 msgid "Number of items to display per page:" msgstr "" -#: mod/settings.php:912 mod/settings.php:913 +#: mod/settings.php:944 mod/settings.php:945 msgid "Maximum of 100 items" msgstr "" -#: mod/settings.php:913 +#: mod/settings.php:945 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: mod/settings.php:914 +#: mod/settings.php:946 msgid "Don't show emoticons" msgstr "" -#: mod/settings.php:915 +#: mod/settings.php:947 msgid "Don't show notices" msgstr "" -#: mod/settings.php:916 +#: mod/settings.php:948 msgid "Infinite scroll" msgstr "" -#: mod/settings.php:917 +#: mod/settings.php:949 msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/settings.php:994 +#: mod/settings.php:951 view/theme/diabook/config.php:150 +#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 +#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 +#: view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1027 msgid "User Types" msgstr "" -#: mod/settings.php:995 +#: mod/settings.php:1028 msgid "Community Types" msgstr "" -#: mod/settings.php:996 +#: mod/settings.php:1029 msgid "Normal Account Page" msgstr "" -#: mod/settings.php:997 +#: mod/settings.php:1030 msgid "This account is a normal personal profile" msgstr "" -#: mod/settings.php:1000 +#: mod/settings.php:1033 msgid "Soapbox Page" msgstr "" -#: mod/settings.php:1001 +#: mod/settings.php:1034 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: mod/settings.php:1004 +#: mod/settings.php:1037 msgid "Community Forum/Celebrity Account" msgstr "" -#: mod/settings.php:1005 +#: mod/settings.php:1038 msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: mod/settings.php:1008 +#: mod/settings.php:1041 msgid "Automatic Friend Page" msgstr "" -#: mod/settings.php:1009 +#: mod/settings.php:1042 msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: mod/settings.php:1012 +#: mod/settings.php:1045 msgid "Private Forum [Experimental]" msgstr "" -#: mod/settings.php:1013 +#: mod/settings.php:1046 msgid "Private forum - approved members only" msgstr "" -#: mod/settings.php:1025 +#: mod/settings.php:1058 msgid "OpenID:" msgstr "" -#: mod/settings.php:1025 +#: mod/settings.php:1058 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: mod/settings.php:1035 +#: mod/settings.php:1068 msgid "Publish your default profile in your local site directory?" msgstr "" -#: mod/settings.php:1041 +#: mod/settings.php:1074 msgid "Publish your default profile in the global social directory?" msgstr "" -#: mod/settings.php:1049 +#: mod/settings.php:1082 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: mod/settings.php:1053 include/acl_selectors.php:330 +#: mod/settings.php:1086 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "" -#: mod/settings.php:1053 +#: mod/settings.php:1086 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: mod/settings.php:1058 +#: mod/settings.php:1091 msgid "Allow friends to post to your profile page?" msgstr "" -#: mod/settings.php:1064 +#: mod/settings.php:1097 msgid "Allow friends to tag your posts?" msgstr "" -#: mod/settings.php:1070 +#: mod/settings.php:1103 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: mod/settings.php:1076 +#: mod/settings.php:1109 msgid "Permit unknown people to send you private mail?" msgstr "" -#: mod/settings.php:1084 +#: mod/settings.php:1117 msgid "Profile is not published." msgstr "" -#: mod/settings.php:1087 mod/profile_photo.php:248 -msgid "or" +#: mod/settings.php:1125 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/settings.php:1092 -msgid "Your Identity Address is" -msgstr "" - -#: mod/settings.php:1101 +#: mod/settings.php:1132 msgid "Automatically expire posts after this many days:" msgstr "" -#: mod/settings.php:1101 +#: mod/settings.php:1132 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: mod/settings.php:1102 +#: mod/settings.php:1133 msgid "Advanced expiration settings" msgstr "" -#: mod/settings.php:1103 +#: mod/settings.php:1134 msgid "Advanced Expiration" msgstr "" -#: mod/settings.php:1104 +#: mod/settings.php:1135 msgid "Expire posts:" msgstr "" -#: mod/settings.php:1105 +#: mod/settings.php:1136 msgid "Expire personal notes:" msgstr "" -#: mod/settings.php:1106 +#: mod/settings.php:1137 msgid "Expire starred posts:" msgstr "" -#: mod/settings.php:1107 +#: mod/settings.php:1138 msgid "Expire photos:" msgstr "" -#: mod/settings.php:1108 +#: mod/settings.php:1139 msgid "Only expire posts by others:" msgstr "" -#: mod/settings.php:1134 +#: mod/settings.php:1165 msgid "Account Settings" msgstr "" -#: mod/settings.php:1142 +#: mod/settings.php:1173 msgid "Password Settings" msgstr "" -#: mod/settings.php:1143 -msgid "New Password:" -msgstr "" - -#: mod/settings.php:1144 -msgid "Confirm:" -msgstr "" - -#: mod/settings.php:1144 +#: mod/settings.php:1175 msgid "Leave password fields blank unless changing" msgstr "" -#: mod/settings.php:1145 +#: mod/settings.php:1176 msgid "Current Password:" msgstr "" -#: mod/settings.php:1145 mod/settings.php:1146 +#: mod/settings.php:1176 mod/settings.php:1177 msgid "Your current password to confirm the changes" msgstr "" -#: mod/settings.php:1146 +#: mod/settings.php:1177 msgid "Password:" msgstr "" -#: mod/settings.php:1150 +#: mod/settings.php:1181 msgid "Basic Settings" msgstr "" -#: mod/settings.php:1151 include/identity.php:538 +#: mod/settings.php:1182 include/identity.php:539 msgid "Full Name:" msgstr "" -#: mod/settings.php:1152 +#: mod/settings.php:1183 msgid "Email Address:" msgstr "" -#: mod/settings.php:1153 +#: mod/settings.php:1184 msgid "Your Timezone:" msgstr "" -#: mod/settings.php:1154 +#: mod/settings.php:1185 msgid "Default Post Location:" msgstr "" -#: mod/settings.php:1155 +#: mod/settings.php:1186 msgid "Use Browser Location:" msgstr "" -#: mod/settings.php:1158 +#: mod/settings.php:1189 msgid "Security and Privacy Settings" msgstr "" -#: mod/settings.php:1160 +#: mod/settings.php:1191 msgid "Maximum Friend Requests/Day:" msgstr "" -#: mod/settings.php:1160 mod/settings.php:1190 +#: mod/settings.php:1191 mod/settings.php:1221 msgid "(to prevent spam abuse)" msgstr "" -#: mod/settings.php:1161 +#: mod/settings.php:1192 msgid "Default Post Permissions" msgstr "" -#: mod/settings.php:1162 +#: mod/settings.php:1193 msgid "(click to open/close)" msgstr "" -#: mod/settings.php:1173 +#: mod/settings.php:1204 msgid "Default Private Post" msgstr "" -#: mod/settings.php:1174 +#: mod/settings.php:1205 msgid "Default Public Post" msgstr "" -#: mod/settings.php:1178 +#: mod/settings.php:1209 msgid "Default Permissions for New Posts" msgstr "" -#: mod/settings.php:1190 +#: mod/settings.php:1221 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: mod/settings.php:1193 +#: mod/settings.php:1224 msgid "Notification Settings" msgstr "" -#: mod/settings.php:1194 +#: mod/settings.php:1225 msgid "By default post a status message when:" msgstr "" -#: mod/settings.php:1195 +#: mod/settings.php:1226 msgid "accepting a friend request" msgstr "" -#: mod/settings.php:1196 +#: mod/settings.php:1227 msgid "joining a forum/community" msgstr "" -#: mod/settings.php:1197 +#: mod/settings.php:1228 msgid "making an interesting profile change" msgstr "" -#: mod/settings.php:1198 +#: mod/settings.php:1229 msgid "Send a notification email when:" msgstr "" -#: mod/settings.php:1199 +#: mod/settings.php:1230 msgid "You receive an introduction" msgstr "" -#: mod/settings.php:1200 +#: mod/settings.php:1231 msgid "Your introductions are confirmed" msgstr "" -#: mod/settings.php:1201 +#: mod/settings.php:1232 msgid "Someone writes on your profile wall" msgstr "" -#: mod/settings.php:1202 +#: mod/settings.php:1233 msgid "Someone writes a followup comment" msgstr "" -#: mod/settings.php:1203 +#: mod/settings.php:1234 msgid "You receive a private message" msgstr "" -#: mod/settings.php:1204 +#: mod/settings.php:1235 msgid "You receive a friend suggestion" msgstr "" -#: mod/settings.php:1205 +#: mod/settings.php:1236 msgid "You are tagged in a post" msgstr "" -#: mod/settings.php:1206 +#: mod/settings.php:1237 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: mod/settings.php:1208 +#: mod/settings.php:1239 msgid "Activate desktop notifications" msgstr "" -#: mod/settings.php:1208 +#: mod/settings.php:1239 msgid "Show desktop popup on new notifications" msgstr "" -#: mod/settings.php:1210 +#: mod/settings.php:1241 msgid "Text-only notification emails" msgstr "" -#: mod/settings.php:1212 +#: mod/settings.php:1243 msgid "Send text only notification emails, without the html part" msgstr "" -#: mod/settings.php:1214 +#: mod/settings.php:1245 msgid "Advanced Account/Page Type Settings" msgstr "" -#: mod/settings.php:1215 +#: mod/settings.php:1246 msgid "Change the behaviour of this account for special situations" msgstr "" -#: mod/settings.php:1218 +#: mod/settings.php:1249 msgid "Relocate" msgstr "" -#: mod/settings.php:1219 +#: mod/settings.php:1250 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:1220 +#: mod/settings.php:1251 msgid "Resend relocate message to contacts" msgstr "" @@ -4257,12 +4505,17 @@ msgstr "" msgid "Item has been removed." msgstr "" -#: mod/dirfind.php:27 +#: mod/dirfind.php:36 #, php-format msgid "People Search - %s" msgstr "" -#: mod/dirfind.php:62 mod/match.php:73 +#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 +#: include/identity.php:188 include/contact_widgets.php:10 +msgid "Connect" +msgstr "" + +#: mod/dirfind.php:141 mod/match.php:77 msgid "No matches" msgstr "" @@ -4326,7 +4579,7 @@ msgstr "" msgid "Homepage" msgstr "" -#: mod/profiles.php:375 mod/profiles.php:694 +#: mod/profiles.php:375 mod/profiles.php:695 msgid "Interests" msgstr "" @@ -4334,7 +4587,7 @@ msgstr "" msgid "Address" msgstr "" -#: mod/profiles.php:386 mod/profiles.php:690 +#: mod/profiles.php:386 mod/profiles.php:691 msgid "Location" msgstr "" @@ -4342,256 +4595,256 @@ msgstr "" msgid "Profile updated." msgstr "" -#: mod/profiles.php:564 +#: mod/profiles.php:565 msgid " and " msgstr "" -#: mod/profiles.php:572 +#: mod/profiles.php:573 msgid "public profile" msgstr "" -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - #: mod/profiles.php:576 #, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:577 +#, php-format msgid " - Visit %1$s's %2$s" msgstr "" -#: mod/profiles.php:579 +#: mod/profiles.php:580 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: mod/profiles.php:654 +#: mod/profiles.php:655 msgid "Hide contacts and friends:" msgstr "" -#: mod/profiles.php:659 +#: mod/profiles.php:660 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: mod/profiles.php:681 +#: mod/profiles.php:682 msgid "Edit Profile Details" msgstr "" -#: mod/profiles.php:683 +#: mod/profiles.php:684 msgid "Change Profile Photo" msgstr "" -#: mod/profiles.php:684 +#: mod/profiles.php:685 msgid "View this profile" msgstr "" -#: mod/profiles.php:685 +#: mod/profiles.php:686 msgid "Create a new profile using these settings" msgstr "" -#: mod/profiles.php:686 +#: mod/profiles.php:687 msgid "Clone this profile" msgstr "" -#: mod/profiles.php:687 +#: mod/profiles.php:688 msgid "Delete this profile" msgstr "" -#: mod/profiles.php:688 +#: mod/profiles.php:689 msgid "Basic information" msgstr "" -#: mod/profiles.php:689 +#: mod/profiles.php:690 msgid "Profile picture" msgstr "" -#: mod/profiles.php:691 +#: mod/profiles.php:692 msgid "Preferences" msgstr "" -#: mod/profiles.php:692 +#: mod/profiles.php:693 msgid "Status information" msgstr "" -#: mod/profiles.php:693 +#: mod/profiles.php:694 msgid "Additional information" msgstr "" -#: mod/profiles.php:696 +#: mod/profiles.php:697 msgid "Profile Name:" msgstr "" -#: mod/profiles.php:697 +#: mod/profiles.php:698 msgid "Your Full Name:" msgstr "" -#: mod/profiles.php:698 +#: mod/profiles.php:699 msgid "Title/Description:" msgstr "" -#: mod/profiles.php:699 +#: mod/profiles.php:700 msgid "Your Gender:" msgstr "" -#: mod/profiles.php:700 +#: mod/profiles.php:701 msgid "Birthday :" msgstr "" -#: mod/profiles.php:701 +#: mod/profiles.php:702 msgid "Street Address:" msgstr "" -#: mod/profiles.php:702 +#: mod/profiles.php:703 msgid "Locality/City:" msgstr "" -#: mod/profiles.php:703 +#: mod/profiles.php:704 msgid "Postal/Zip Code:" msgstr "" -#: mod/profiles.php:704 +#: mod/profiles.php:705 msgid "Country:" msgstr "" -#: mod/profiles.php:705 +#: mod/profiles.php:706 msgid "Region/State:" msgstr "" -#: mod/profiles.php:706 +#: mod/profiles.php:707 msgid " Marital Status:" msgstr "" -#: mod/profiles.php:707 +#: mod/profiles.php:708 msgid "Who: (if applicable)" msgstr "" -#: mod/profiles.php:708 +#: mod/profiles.php:709 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: mod/profiles.php:709 +#: mod/profiles.php:710 msgid "Since [date]:" msgstr "" -#: mod/profiles.php:710 include/identity.php:569 +#: mod/profiles.php:711 include/identity.php:570 msgid "Sexual Preference:" msgstr "" -#: mod/profiles.php:711 +#: mod/profiles.php:712 msgid "Homepage URL:" msgstr "" -#: mod/profiles.php:712 include/identity.php:573 +#: mod/profiles.php:713 include/identity.php:574 msgid "Hometown:" msgstr "" -#: mod/profiles.php:713 include/identity.php:577 +#: mod/profiles.php:714 include/identity.php:578 msgid "Political Views:" msgstr "" -#: mod/profiles.php:714 +#: mod/profiles.php:715 msgid "Religious Views:" msgstr "" -#: mod/profiles.php:715 +#: mod/profiles.php:716 msgid "Public Keywords:" msgstr "" -#: mod/profiles.php:716 +#: mod/profiles.php:717 msgid "Private Keywords:" msgstr "" -#: mod/profiles.php:717 include/identity.php:585 +#: mod/profiles.php:718 include/identity.php:586 msgid "Likes:" msgstr "" -#: mod/profiles.php:718 include/identity.php:587 +#: mod/profiles.php:719 include/identity.php:588 msgid "Dislikes:" msgstr "" -#: mod/profiles.php:719 +#: mod/profiles.php:720 msgid "Example: fishing photography software" msgstr "" -#: mod/profiles.php:720 +#: mod/profiles.php:721 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: mod/profiles.php:721 +#: mod/profiles.php:722 msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: mod/profiles.php:722 +#: mod/profiles.php:723 msgid "Tell us about yourself..." msgstr "" -#: mod/profiles.php:723 +#: mod/profiles.php:724 msgid "Hobbies/Interests" msgstr "" -#: mod/profiles.php:724 +#: mod/profiles.php:725 msgid "Contact information and Social Networks" msgstr "" -#: mod/profiles.php:725 +#: mod/profiles.php:726 msgid "Musical interests" msgstr "" -#: mod/profiles.php:726 +#: mod/profiles.php:727 msgid "Books, literature" msgstr "" -#: mod/profiles.php:727 +#: mod/profiles.php:728 msgid "Television" msgstr "" -#: mod/profiles.php:728 +#: mod/profiles.php:729 msgid "Film/dance/culture/entertainment" msgstr "" -#: mod/profiles.php:729 +#: mod/profiles.php:730 msgid "Love/romance" msgstr "" -#: mod/profiles.php:730 +#: mod/profiles.php:731 msgid "Work/employment" msgstr "" -#: mod/profiles.php:731 +#: mod/profiles.php:732 msgid "School/education" msgstr "" -#: mod/profiles.php:736 +#: mod/profiles.php:737 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "" -#: mod/profiles.php:746 mod/directory.php:129 +#: mod/profiles.php:747 mod/directory.php:129 msgid "Age: " msgstr "" -#: mod/profiles.php:799 +#: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "" -#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257 +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 msgid "Change profile photo" msgstr "" -#: mod/profiles.php:801 include/identity.php:232 +#: mod/profiles.php:802 include/identity.php:232 msgid "Create New Profile" msgstr "" -#: mod/profiles.php:812 include/identity.php:242 +#: mod/profiles.php:813 include/identity.php:242 msgid "Profile Image" msgstr "" -#: mod/profiles.php:814 include/identity.php:245 +#: mod/profiles.php:815 include/identity.php:245 msgid "visible to everybody" msgstr "" -#: mod/profiles.php:815 include/identity.php:246 +#: mod/profiles.php:816 include/identity.php:246 msgid "Edit visibility" msgstr "" @@ -4644,8 +4897,8 @@ msgstr "" msgid "Not available." msgstr "" -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:129 -#: include/nav.php:131 +#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 +#: include/nav.php:139 msgid "Community" msgstr "" @@ -4658,20 +4911,20 @@ msgstr "" msgid "- select -" msgstr "" -#: mod/wall_attach.php:75 +#: mod/wall_attach.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: mod/wall_attach.php:75 +#: mod/wall_attach.php:83 msgid "Or - did you try to upload an empty file?" msgstr "" -#: mod/wall_attach.php:81 +#: mod/wall_attach.php:94 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: mod/wall_attach.php:122 mod/wall_attach.php:133 +#: mod/wall_attach.php:145 mod/wall_attach.php:161 msgid "File upload failed." msgstr "" @@ -4710,11 +4963,6 @@ msgid "" "hours." msgstr "" -#: mod/suggest.php:92 mod/match.php:65 include/identity.php:188 -#: include/contact_widgets.php:10 -msgid "Connect" -msgstr "" - #: mod/suggest.php:94 msgid "Ignore/Hide" msgstr "" @@ -4723,6 +4971,22 @@ msgstr "" msgid "Access denied." msgstr "" +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + #: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" @@ -4746,7 +5010,7 @@ msgstr "" msgid "No potential page delegates located." msgstr "" -#: mod/delegate.php:130 include/nav.php:171 +#: mod/delegate.php:130 include/nav.php:179 msgid "Delegate Page Management" msgstr "" @@ -4781,11 +5045,11 @@ msgstr "" msgid "No contacts." msgstr "" -#: mod/viewcontacts.php:78 include/text.php:899 +#: mod/viewcontacts.php:78 include/text.php:917 msgid "View Contacts" msgstr "" -#: mod/notes.php:44 include/identity.php:670 +#: mod/notes.php:44 include/identity.php:676 msgid "Personal Notes" msgstr "" @@ -4825,27 +5089,43 @@ msgstr "" msgid "Gender: " msgstr "" -#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 -msgid "Gender:" -msgstr "" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 msgid "Status:" msgstr "" -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 msgid "Homepage:" msgstr "" -#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 -msgid "About:" -msgstr "" - #: mod/directory.php:205 msgid "No entries (some entries may be hidden)." msgstr "" -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:139 +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 msgid "l F d, Y \\@ g:i A" msgstr "" @@ -4911,9 +5191,16 @@ msgid "Select a profile:" msgstr "" #: mod/profile_photo.php:245 +#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 msgid "Upload" msgstr "" +#: mod/profile_photo.php:248 +msgid "or" +msgstr "" + #: mod/profile_photo.php:248 msgid "skip this step" msgstr "" @@ -4960,7 +5247,7 @@ msgid "" "or mysql." msgstr "" -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +#: mod/install.php:141 mod/install.php:208 mod/install.php:537 msgid "Please see the file \"INSTALL.txt\"." msgstr "" @@ -5119,114 +5406,122 @@ msgstr "" msgid "mb_string PHP module" msgstr "" -#: mod/install.php:399 mod/install.php:401 +#: mod/install.php:395 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:400 mod/install.php:402 msgid "Apache mod_rewrite module" msgstr "" -#: mod/install.php:399 +#: mod/install.php:400 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: mod/install.php:407 +#: mod/install.php:408 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: mod/install.php:411 +#: mod/install.php:412 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: mod/install.php:415 +#: mod/install.php:416 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: mod/install.php:419 +#: mod/install.php:420 msgid "Error: mysqli PHP module required but not installed." msgstr "" -#: mod/install.php:423 +#: mod/install.php:424 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: mod/install.php:440 +#: mod/install.php:428 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:447 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\" " "in the top folder of your web server and it is unable to do so." msgstr "" -#: mod/install.php:441 +#: mod/install.php:448 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "" -#: mod/install.php:442 +#: mod/install.php:449 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." msgstr "" -#: mod/install.php:443 +#: mod/install.php:450 msgid "" "You can alternatively skip this procedure and perform a manual installation. " "Please see the file \"INSTALL.txt\" for instructions." msgstr "" -#: mod/install.php:446 +#: mod/install.php:453 msgid ".htconfig.php is writable" msgstr "" -#: mod/install.php:456 +#: mod/install.php:463 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: mod/install.php:457 +#: mod/install.php:464 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: mod/install.php:458 +#: mod/install.php:465 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has " "write access to this folder." msgstr "" -#: mod/install.php:459 +#: mod/install.php:466 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: mod/install.php:462 +#: mod/install.php:469 msgid "view/smarty3 is writable" msgstr "" -#: mod/install.php:478 +#: mod/install.php:485 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "" -#: mod/install.php:480 +#: mod/install.php:487 msgid "Url rewrite is working" msgstr "" -#: mod/install.php:489 +#: mod/install.php:496 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "" -#: mod/install.php:528 +#: mod/install.php:535 msgid "

    What next

    " msgstr "" -#: mod/install.php:529 +#: mod/install.php:536 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" @@ -5279,15 +5574,15 @@ msgstr "" msgid "Members" msgstr "" -#: mod/content.php:119 mod/network.php:526 +#: mod/content.php:119 mod/network.php:532 msgid "No such group" msgstr "" -#: mod/content.php:130 mod/network.php:543 +#: mod/content.php:130 mod/network.php:549 msgid "Group is empty" msgstr "" -#: mod/content.php:135 mod/network.php:554 +#: mod/content.php:135 mod/network.php:560 #, php-format msgid "Group: %s" msgstr "" @@ -5309,15 +5604,15 @@ msgstr "" msgid "Please login." msgstr "" -#: mod/match.php:13 +#: mod/match.php:18 msgid "Profile Match" msgstr "" -#: mod/match.php:22 +#: mod/match.php:27 msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: mod/match.php:64 +#: mod/match.php:69 msgid "is interested in:" msgstr "" @@ -5385,43 +5680,43 @@ msgstr "" msgid "Sort by Comment Date" msgstr "" -#: mod/network.php:364 +#: mod/network.php:365 msgid "Posted Order" msgstr "" -#: mod/network.php:367 +#: mod/network.php:368 msgid "Sort by Post Date" msgstr "" -#: mod/network.php:376 +#: mod/network.php:378 msgid "Posts that mention or involve you" msgstr "" -#: mod/network.php:382 +#: mod/network.php:385 msgid "New" msgstr "" -#: mod/network.php:385 +#: mod/network.php:388 msgid "Activity Stream - by date" msgstr "" -#: mod/network.php:391 +#: mod/network.php:395 msgid "Shared Links" msgstr "" -#: mod/network.php:394 +#: mod/network.php:398 msgid "Interesting Links" msgstr "" -#: mod/network.php:400 +#: mod/network.php:405 msgid "Starred" msgstr "" -#: mod/network.php:403 +#: mod/network.php:408 msgid "Favourite Posts" msgstr "" -#: mod/network.php:460 +#: mod/network.php:466 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -5429,20 +5724,20 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: mod/network.php:463 +#: mod/network.php:469 msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: mod/network.php:572 +#: mod/network.php:578 #, php-format msgid "Contact: %s" msgstr "" -#: mod/network.php:576 +#: mod/network.php:582 msgid "Private messages to this person are at risk of public disclosure." msgstr "" -#: mod/network.php:581 +#: mod/network.php:587 msgid "Invalid contact." msgstr "" @@ -5536,7 +5831,7 @@ msgid "" "entries from this contact." msgstr "" -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:148 +#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 msgid "Your posts and conversations" msgstr "" @@ -5584,7 +5879,7 @@ msgstr "" msgid "Last likes" msgstr "" -#: view/theme/diabook/theme.php:463 include/text.php:1998 +#: view/theme/diabook/theme.php:463 include/text.php:2032 #: include/conversation.php:118 include/conversation.php:245 msgid "event" msgstr "" @@ -5652,12 +5947,6 @@ msgstr "" msgid "Show/hide boxes at right-hand column:" msgstr "" -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/dispy/config.php:72 view/theme/duepuntozero/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "" - #: 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" @@ -5687,8 +5976,8 @@ msgstr "" msgid "Set colour scheme" msgstr "" -#: view/theme/duepuntozero/config.php:44 include/text.php:1734 -#: include/user.php:247 +#: view/theme/duepuntozero/config.php:44 include/text.php:1768 +#: include/user.php:255 msgid "default" msgstr "" @@ -5752,64 +6041,139 @@ msgstr "" msgid "Set theme width" msgstr "" +#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 +msgid "Click here to download" +msgstr "" + +#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 +#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 +msgid "Create new pull request" +msgstr "" + +#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "" + #: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 msgid "Drop contact" msgstr "" -#: boot.php:753 +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 +msgid "Public projects on this node" +msgstr "" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone." +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 +msgid "Visibility" +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 +msgid "Create" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 +msgid "No pull requests to show" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 +msgid "opened by" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 +msgid "closed" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 +msgid "merged" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 +msgid "Projects" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 +#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 +#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 +msgid "Clone this project:" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 +msgid "New pull request" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 +msgid "Can't show you the diff at the moment. Sorry" +msgstr "" + +#: boot.php:763 msgid "Delete this item?" msgstr "" -#: boot.php:756 +#: boot.php:766 msgid "show fewer" msgstr "" -#: boot.php:1130 +#: boot.php:1140 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1237 +#: boot.php:1247 msgid "Create a New Account" msgstr "" -#: boot.php:1262 include/nav.php:73 +#: boot.php:1272 include/nav.php:73 msgid "Logout" msgstr "" -#: boot.php:1265 +#: boot.php:1275 msgid "Nickname or Email address: " msgstr "" -#: boot.php:1266 +#: boot.php:1276 msgid "Password: " msgstr "" -#: boot.php:1267 +#: boot.php:1277 msgid "Remember me" msgstr "" -#: boot.php:1270 +#: boot.php:1280 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1276 +#: boot.php:1286 msgid "Forgot your password?" msgstr "" -#: boot.php:1279 +#: boot.php:1289 msgid "Website Terms of Service" msgstr "" -#: boot.php:1280 +#: boot.php:1290 msgid "terms of service" msgstr "" -#: boot.php:1282 +#: boot.php:1292 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1283 +#: boot.php:1293 msgid "privacy policy" msgstr "" @@ -5986,29 +6350,29 @@ msgstr "" msgid "Logged out." msgstr "" -#: include/auth.php:128 include/user.php:67 +#: include/auth.php:128 include/user.php:75 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: include/auth.php:128 include/user.php:67 +#: include/auth.php:128 include/user.php:75 msgid "The error message was:" msgstr "" -#: include/event.php:22 include/bb2diaspora.php:145 +#: include/event.php:22 include/bb2diaspora.php:154 msgid "Starts:" msgstr "" -#: include/event.php:32 include/bb2diaspora.php:153 +#: include/event.php:32 include/bb2diaspora.php:162 msgid "Finishes:" msgstr "" -#: include/message.php:15 include/message.php:172 +#: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "" -#: include/Scrape.php:608 +#: include/Scrape.php:603 msgid " on Last.fm" msgstr "" @@ -6044,286 +6408,302 @@ msgstr "" msgid "The end" msgstr "" -#: include/text.php:878 +#: include/text.php:890 msgid "No contacts" msgstr "" -#: include/text.php:887 +#: include/text.php:905 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" -#: include/text.php:1027 -msgid "poke" +#: include/text.php:1003 include/nav.php:122 +msgid "Full Text" msgstr "" -#: include/text.php:1027 -msgid "poked" +#: include/text.php:1004 include/nav.php:123 +msgid "Tags" msgstr "" -#: include/text.php:1028 -msgid "ping" -msgstr "" - -#: include/text.php:1028 -msgid "pinged" -msgstr "" - -#: include/text.php:1029 -msgid "prod" -msgstr "" - -#: include/text.php:1029 -msgid "prodded" -msgstr "" - -#: include/text.php:1030 -msgid "slap" -msgstr "" - -#: include/text.php:1030 -msgid "slapped" -msgstr "" - -#: include/text.php:1031 -msgid "finger" -msgstr "" - -#: include/text.php:1031 -msgid "fingered" -msgstr "" - -#: include/text.php:1032 -msgid "rebuff" -msgstr "" - -#: include/text.php:1032 -msgid "rebuffed" -msgstr "" - -#: include/text.php:1046 -msgid "happy" -msgstr "" - -#: include/text.php:1047 -msgid "sad" -msgstr "" - -#: include/text.php:1048 -msgid "mellow" -msgstr "" - -#: include/text.php:1049 -msgid "tired" -msgstr "" - -#: include/text.php:1050 -msgid "perky" -msgstr "" - -#: include/text.php:1051 -msgid "angry" -msgstr "" - -#: include/text.php:1052 -msgid "stupified" -msgstr "" - -#: include/text.php:1053 -msgid "puzzled" -msgstr "" - -#: include/text.php:1054 -msgid "interested" -msgstr "" - -#: include/text.php:1055 -msgid "bitter" -msgstr "" - -#: include/text.php:1056 -msgid "cheerful" -msgstr "" - -#: include/text.php:1057 -msgid "alive" +#: include/text.php:1008 include/nav.php:127 +msgid "Forums" msgstr "" #: include/text.php:1058 -msgid "annoyed" +msgid "poke" +msgstr "" + +#: include/text.php:1058 +msgid "poked" msgstr "" #: include/text.php:1059 -msgid "anxious" +msgid "ping" +msgstr "" + +#: include/text.php:1059 +msgid "pinged" msgstr "" #: include/text.php:1060 -msgid "cranky" +msgid "prod" +msgstr "" + +#: include/text.php:1060 +msgid "prodded" msgstr "" #: include/text.php:1061 -msgid "disturbed" +msgid "slap" +msgstr "" + +#: include/text.php:1061 +msgid "slapped" msgstr "" #: include/text.php:1062 -msgid "frustrated" +msgid "finger" +msgstr "" + +#: include/text.php:1062 +msgid "fingered" msgstr "" #: include/text.php:1063 +msgid "rebuff" +msgstr "" + +#: include/text.php:1063 +msgid "rebuffed" +msgstr "" + +#: include/text.php:1077 +msgid "happy" +msgstr "" + +#: include/text.php:1078 +msgid "sad" +msgstr "" + +#: include/text.php:1079 +msgid "mellow" +msgstr "" + +#: include/text.php:1080 +msgid "tired" +msgstr "" + +#: include/text.php:1081 +msgid "perky" +msgstr "" + +#: include/text.php:1082 +msgid "angry" +msgstr "" + +#: include/text.php:1083 +msgid "stupified" +msgstr "" + +#: include/text.php:1084 +msgid "puzzled" +msgstr "" + +#: include/text.php:1085 +msgid "interested" +msgstr "" + +#: include/text.php:1086 +msgid "bitter" +msgstr "" + +#: include/text.php:1087 +msgid "cheerful" +msgstr "" + +#: include/text.php:1088 +msgid "alive" +msgstr "" + +#: include/text.php:1089 +msgid "annoyed" +msgstr "" + +#: include/text.php:1090 +msgid "anxious" +msgstr "" + +#: include/text.php:1091 +msgid "cranky" +msgstr "" + +#: include/text.php:1092 +msgid "disturbed" +msgstr "" + +#: include/text.php:1093 +msgid "frustrated" +msgstr "" + +#: include/text.php:1094 msgid "motivated" msgstr "" -#: include/text.php:1064 +#: include/text.php:1095 msgid "relaxed" msgstr "" -#: include/text.php:1065 +#: include/text.php:1096 msgid "surprised" msgstr "" -#: include/text.php:1235 +#: include/text.php:1266 msgid "Monday" msgstr "" -#: include/text.php:1235 +#: include/text.php:1266 msgid "Tuesday" msgstr "" -#: include/text.php:1235 +#: include/text.php:1266 msgid "Wednesday" msgstr "" -#: include/text.php:1235 +#: include/text.php:1266 msgid "Thursday" msgstr "" -#: include/text.php:1235 +#: include/text.php:1266 msgid "Friday" msgstr "" -#: include/text.php:1235 +#: include/text.php:1266 msgid "Saturday" msgstr "" -#: include/text.php:1235 +#: include/text.php:1266 msgid "Sunday" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "January" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "February" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "March" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "April" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "May" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "June" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "July" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "August" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "September" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "October" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "November" msgstr "" -#: include/text.php:1239 +#: include/text.php:1270 msgid "December" msgstr "" -#: include/text.php:1461 +#: include/text.php:1492 msgid "bytes" msgstr "" -#: include/text.php:1493 include/text.php:1505 +#: include/text.php:1524 include/text.php:1536 msgid "Click to open/close" msgstr "" -#: include/text.php:1746 +#: include/text.php:1710 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1711 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1780 msgid "Select an alternate language" msgstr "" -#: include/text.php:2002 +#: include/text.php:2036 msgid "activity" msgstr "" -#: include/text.php:2005 +#: include/text.php:2039 msgid "post" msgstr "" -#: include/text.php:2173 +#: include/text.php:2207 msgid "Item filed" msgstr "" -#: include/api.php:310 include/api.php:321 include/api.php:430 -#: include/api.php:1133 include/api.php:1135 +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1141 include/api.php:1143 msgid "User not found." msgstr "" -#: include/api.php:784 +#: include/api.php:795 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:803 +#: include/api.php:814 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:822 +#: include/api.php:833 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:1342 +#: include/api.php:1350 msgid "There is no status with this id." msgstr "" -#: include/api.php:1416 +#: include/api.php:1424 msgid "There is no conversation with this id." msgstr "" -#: include/api.php:1686 -msgid "Invalid request." -msgstr "" - -#: include/api.php:1697 +#: include/api.php:1703 msgid "Invalid item." msgstr "" -#: include/api.php:1707 +#: include/api.php:1713 msgid "Invalid action. " msgstr "" -#: include/api.php:1715 +#: include/api.php:1721 msgid "DB error" msgstr "" @@ -6332,37 +6712,37 @@ msgstr "" msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: include/items.php:2431 include/datetime.php:459 +#: include/items.php:2445 include/datetime.php:459 #, php-format msgid "%s's birthday" msgstr "" -#: include/items.php:2432 include/datetime.php:460 +#: include/items.php:2446 include/datetime.php:460 #, php-format msgid "Happy Birthday %s" msgstr "" -#: include/items.php:4852 +#: include/items.php:4866 msgid "Do you really want to delete this item?" msgstr "" -#: include/items.php:5127 +#: include/items.php:5141 msgid "Archives" msgstr "" -#: include/delivery.php:456 include/notifier.php:825 +#: include/delivery.php:456 include/notifier.php:834 msgid "(no subject)" msgstr "" -#: include/delivery.php:467 include/notifier.php:835 include/enotify.php:33 +#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 msgid "noreply" msgstr "" -#: include/diaspora.php:705 +#: include/diaspora.php:716 msgid "Sharing notification from Diaspora network" msgstr "" -#: include/diaspora.php:2539 +#: include/diaspora.php:2567 msgid "Attachments:" msgstr "" @@ -6370,7 +6750,7 @@ msgstr "" msgid "Requested account is not available." msgstr "" -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 msgid "Edit profile" msgstr "" @@ -6378,7 +6758,7 @@ msgstr "" msgid "Message" msgstr "" -#: include/identity.php:226 include/nav.php:176 +#: include/identity.php:226 include/nav.php:184 msgid "Profiles" msgstr "" @@ -6386,183 +6766,179 @@ msgstr "" msgid "Manage/edit profiles" msgstr "" -#: include/identity.php:341 +#: include/identity.php:342 msgid "Network:" msgstr "" -#: include/identity.php:373 include/identity.php:459 +#: include/identity.php:374 include/identity.php:460 msgid "g A l F d" msgstr "" -#: include/identity.php:374 include/identity.php:460 +#: include/identity.php:375 include/identity.php:461 msgid "F d" msgstr "" -#: include/identity.php:419 include/identity.php:506 +#: include/identity.php:420 include/identity.php:507 msgid "[today]" msgstr "" -#: include/identity.php:431 +#: include/identity.php:432 msgid "Birthday Reminders" msgstr "" -#: include/identity.php:432 +#: include/identity.php:433 msgid "Birthdays this week:" msgstr "" -#: include/identity.php:493 +#: include/identity.php:494 msgid "[No description]" msgstr "" -#: include/identity.php:517 +#: include/identity.php:518 msgid "Event Reminders" msgstr "" -#: include/identity.php:518 +#: include/identity.php:519 msgid "Events this week:" msgstr "" -#: include/identity.php:545 +#: include/identity.php:546 msgid "j F, Y" msgstr "" -#: include/identity.php:546 +#: include/identity.php:547 msgid "j F" msgstr "" -#: include/identity.php:553 +#: include/identity.php:554 msgid "Birthday:" msgstr "" -#: include/identity.php:557 +#: include/identity.php:558 msgid "Age:" msgstr "" -#: include/identity.php:566 +#: include/identity.php:567 #, php-format msgid "for %1$d %2$s" msgstr "" -#: include/identity.php:575 -msgid "Tags:" -msgstr "" - -#: include/identity.php:579 +#: include/identity.php:580 msgid "Religion:" msgstr "" -#: include/identity.php:583 +#: include/identity.php:584 msgid "Hobbies/Interests:" msgstr "" -#: include/identity.php:590 +#: include/identity.php:591 msgid "Contact information and Social Networks:" msgstr "" -#: include/identity.php:592 +#: include/identity.php:593 msgid "Musical interests:" msgstr "" -#: include/identity.php:594 +#: include/identity.php:595 msgid "Books, literature:" msgstr "" -#: include/identity.php:596 +#: include/identity.php:597 msgid "Television:" msgstr "" -#: include/identity.php:598 +#: include/identity.php:599 msgid "Film/dance/culture/entertainment:" msgstr "" -#: include/identity.php:600 +#: include/identity.php:601 msgid "Love/Romance:" msgstr "" -#: include/identity.php:602 +#: include/identity.php:603 msgid "Work/employment:" msgstr "" -#: include/identity.php:604 +#: include/identity.php:605 msgid "School/education:" msgstr "" -#: include/identity.php:632 include/nav.php:76 +#: include/identity.php:633 include/nav.php:76 msgid "Status" msgstr "" -#: include/identity.php:635 +#: include/identity.php:636 msgid "Status Messages and Posts" msgstr "" -#: include/identity.php:642 +#: include/identity.php:644 msgid "Profile Details" msgstr "" -#: include/identity.php:653 include/identity.php:656 include/nav.php:79 +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 msgid "Videos" msgstr "" -#: include/identity.php:666 +#: include/identity.php:671 msgid "Events and Calendar" msgstr "" -#: include/identity.php:673 +#: include/identity.php:679 msgid "Only You Can See This" msgstr "" -#: include/follow.php:32 +#: include/follow.php:75 msgid "Connect URL missing." msgstr "" -#: include/follow.php:59 +#: include/follow.php:102 msgid "" "This site is not configured to allow communications with other networks." msgstr "" -#: include/follow.php:60 include/follow.php:80 +#: include/follow.php:103 include/follow.php:123 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: include/follow.php:78 +#: include/follow.php:121 msgid "The profile address specified does not provide adequate information." msgstr "" -#: include/follow.php:82 +#: include/follow.php:125 msgid "An author or name was not found." msgstr "" -#: include/follow.php:84 +#: include/follow.php:127 msgid "No browser URL could be matched to this address." msgstr "" -#: include/follow.php:86 +#: include/follow.php:129 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: include/follow.php:87 +#: include/follow.php:130 msgid "Use mailto: in front of address to force email check." msgstr "" -#: include/follow.php:93 +#: include/follow.php:136 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "" -#: include/follow.php:103 +#: include/follow.php:146 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: include/follow.php:205 +#: include/follow.php:253 msgid "Unable to retrieve contact information." msgstr "" -#: include/follow.php:258 +#: include/follow.php:306 msgid "following" msgstr "" @@ -6728,7 +7104,7 @@ msgstr "" msgid "Sex Addict" msgstr "" -#: include/profile_selectors.php:42 include/user.php:289 include/user.php:293 +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 msgid "Friends" msgstr "" @@ -6837,30 +7213,30 @@ msgstr "" msgid "User creation error" msgstr "" -#: include/uimport.php:171 +#: include/uimport.php:173 msgid "User profile creation error" msgstr "" -#: include/uimport.php:220 +#: include/uimport.php:222 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: include/uimport.php:290 +#: include/uimport.php:292 msgid "Done. You can now login with your username and password" msgstr "" -#: include/plugin.php:455 include/plugin.php:457 +#: include/plugin.php:458 include/plugin.php:460 msgid "Click here to upgrade." msgstr "" -#: include/plugin.php:463 +#: include/plugin.php:466 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: include/plugin.php:468 +#: include/plugin.php:471 msgid "This action is not available under your subscription plan." msgstr "" @@ -7095,95 +7471,95 @@ msgstr "" msgid "Search site content" msgstr "" -#: include/nav.php:129 +#: include/nav.php:137 msgid "Conversations on this site" msgstr "" -#: include/nav.php:131 +#: include/nav.php:139 msgid "Conversations on the network" msgstr "" -#: include/nav.php:133 +#: include/nav.php:141 msgid "Directory" msgstr "" -#: include/nav.php:133 +#: include/nav.php:141 msgid "People directory" msgstr "" -#: include/nav.php:135 +#: include/nav.php:143 msgid "Information" msgstr "" -#: include/nav.php:135 +#: include/nav.php:143 msgid "Information about this friendica instance" msgstr "" -#: include/nav.php:145 +#: include/nav.php:153 msgid "Conversations from your friends" msgstr "" -#: include/nav.php:146 +#: include/nav.php:154 msgid "Network Reset" msgstr "" -#: include/nav.php:146 +#: include/nav.php:154 msgid "Load Network page with no filters" msgstr "" -#: include/nav.php:153 +#: include/nav.php:161 msgid "Friend Requests" msgstr "" -#: include/nav.php:157 +#: include/nav.php:165 msgid "See all notifications" msgstr "" -#: include/nav.php:158 +#: include/nav.php:166 msgid "Mark all system notifications seen" msgstr "" -#: include/nav.php:162 +#: include/nav.php:170 msgid "Private mail" msgstr "" -#: include/nav.php:163 +#: include/nav.php:171 msgid "Inbox" msgstr "" -#: include/nav.php:164 +#: include/nav.php:172 msgid "Outbox" msgstr "" -#: include/nav.php:168 +#: include/nav.php:176 msgid "Manage" msgstr "" -#: include/nav.php:168 +#: include/nav.php:176 msgid "Manage other pages" msgstr "" -#: include/nav.php:173 +#: include/nav.php:181 msgid "Account settings" msgstr "" -#: include/nav.php:176 +#: include/nav.php:184 msgid "Manage/Edit Profiles" msgstr "" -#: include/nav.php:178 +#: include/nav.php:186 msgid "Manage/edit friends and contacts" msgstr "" -#: include/nav.php:185 +#: include/nav.php:193 msgid "Site setup and configuration" msgstr "" -#: include/nav.php:189 +#: include/nav.php:197 msgid "Navigation" msgstr "" -#: include/nav.php:189 +#: include/nav.php:197 msgid "Site map" msgstr "" @@ -7267,6 +7643,10 @@ msgstr "" msgid "App.net" msgstr "" +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "" + #: include/enotify.php:18 msgid "Friendica Notification" msgstr "" @@ -7550,75 +7930,73 @@ msgstr "" msgid "Please visit %s to approve or reject the request." msgstr "" -#: include/user.php:40 +#: include/user.php:48 msgid "An invitation is required." msgstr "" -#: include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "" -#: include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "" -#: include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "" -#: include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "" -#: include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "" -#: include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "" -#: include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "" -#: include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." msgstr "" -#: include/user.php:138 include/user.php:236 +#: include/user.php:146 include/user.php:244 msgid "Nickname is already registered. Please choose another." msgstr "" -#: include/user.php:148 +#: include/user.php:156 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "" -#: include/user.php:164 +#: include/user.php:172 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: include/user.php:222 +#: include/user.php:230 msgid "An error occurred during registration. Please try again." msgstr "" -#: include/user.php:257 +#: include/user.php:265 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: include/user.php:377 +#: include/user.php:385 #, php-format msgid "" "\n" @@ -7627,7 +8005,7 @@ msgid "" "\t" msgstr "" -#: include/user.php:381 +#: include/user.php:389 #, php-format msgid "" "\n" @@ -7675,35 +8053,35 @@ msgstr "" msgid "Visible to everybody" msgstr "" -#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 msgid "Image/photo" msgstr "" -#: include/bbcode.php:549 +#: include/bbcode.php:556 #, php-format msgid "%2$s %3$s" msgstr "" -#: include/bbcode.php:583 +#: include/bbcode.php:590 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: include/bbcode.php:1065 include/bbcode.php:1085 +#: include/bbcode.php:1076 include/bbcode.php:1096 msgid "$1 wrote:" msgstr "" -#: include/bbcode.php:1110 include/bbcode.php:1111 +#: include/bbcode.php:1121 include/bbcode.php:1122 msgid "Encrypted content" msgstr "" -#: include/oembed.php:224 +#: include/oembed.php:220 msgid "Embedded content" msgstr "" -#: include/oembed.php:233 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "" diff --git a/util/vagrant_provision.sh b/util/vagrant_provision.sh index b964d2243..ac2465966 100644 --- a/util/vagrant_provision.sh +++ b/util/vagrant_provision.sh @@ -63,6 +63,7 @@ SQL="${Q1}${Q2}" $MYSQL -uroot -proot -e "$SQL" service mysql restart + #configure rudimentary mail server (local delivery only) #add Friendica accounts for local user accounts, use email address like vagrant@friendica.dev, read the email with 'mail'. debconf-set-selections <<< "postfix postfix/mailname string friendica.dev" @@ -74,15 +75,13 @@ sudo echo -e "friendica1: vagrant\nfriendica2: vagrant\nfriendica3: vagrant\nfri sudo rm -rf /var/www/ sudo ln -fs /vagrant /var/www -#delete .htconfig.php file if it exists to have a fresh friendica -#installation -if [ -f /vagrant/.htconfig.php ] - then - sudo rm /vagrant/.htconfig.php -fi +# initial config file for friendica in vagrant +cp /vagrant/util/htconfig.vagrant.php /vagrant/.htconfig.php -#create the friendica database +# create the friendica database echo "create database friendica" | mysql -u root -proot +# import test database +$MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql #create cronjob echo "*/10 * * * * cd /vagrant; /usr/bin/php include/poller.php" >> friendicacron diff --git a/view/cs/messages.po b/view/cs/messages.po index 6ca450ea9..84193cbcf 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -4,4170 +4,23 @@ # # Translators: # Josef Moravek , 2014 -# Michal Šupler , 2011-2015 +# michal_s , 2011-2015 +# michal_s , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-05-21 10:43+0200\n" -"PO-Revision-Date: 2015-05-23 07:28+0000\n" -"Last-Translator: Michal Šupler \n" -"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" +"POT-Creation-Date: 2015-08-26 07:53+0200\n" +"PO-Revision-Date: 2015-08-29 12:37+0000\n" +"Last-Translator: michal_s \n" +"Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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:56 -#: ../../view/theme/duepuntozero/config.php:59 -#: ../../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:681 ../../mod/contacts.php:562 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 -#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 -#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:491 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:190 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Odeslat" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:58 -#: ../../view/theme/duepuntozero/config.php:61 -#: ../../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" - -#: ../../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)" - -#: ../../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." - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Nastavení šířku grafické šablony" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Barevné schéma" - -#: ../../view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Nastavit styl" - -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1729 -#: ../../include/user.php:247 -msgid "default" -msgstr "standardní" - -#: ../../view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "zelená nula" - -#: ../../view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "fialová nula" - -#: ../../view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "velikonoční zajíček" - -#: ../../view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "tmavá nula" - -#: ../../view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "komiksová" - -#: ../../view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "flákač" - -#: ../../view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variace" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 -msgid "don't show" -msgstr "nikdy nezobrazit" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 -msgid "show" -msgstr "zobrazit" - -#: ../../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." - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Nastav rozlišení pro prostřední sloupec" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Nastavení barevného schematu" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Nastavit přiblížení pro Earth Layer" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Komunitní profily" - -#: ../../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 ?" - -#: ../../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" - -#: ../../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" - -#: ../../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é" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Poslední fotografie" - -#: ../../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í" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Domů" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Vaše příspěvky a konverzace" - -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2132 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:104 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Profil" - -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Vaše profilová stránka" - -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:178 -#: ../../mod/contacts.php:788 -msgid "Contacts" -msgstr "Kontakty" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Vaše kontakty" - -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2139 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotografie" - -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Vaše fotky" - -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2156 -#: ../../include/nav.php:80 ../../mod/events.php:382 -msgid "Events" -msgstr "Události" - -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Vaše události" - -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Osobní poznámky" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Vaše osobní fotky" - -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../mod/community.php:32 -msgid "Community" -msgstr "Komunita" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1993 -msgid "event" -msgstr "událost" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2060 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "Stav" - -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2060 -#: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1995 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "fotografie" - -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2076 -#: ../../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" - -#: ../../view/theme/diabook/theme.php:499 ../../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 -msgid "Contact Photos" -msgstr "Fotogalerie kontaktu" - -#: ../../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:1187 -#: ../../mod/photos.php:1210 ../../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" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokální Adresář" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Globální adresář" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Podobné zájmy" - -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:68 -msgid "Friend Suggestions" -msgstr "Návrhy přátel" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Pozvat přátele" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:173 -#: ../../mod/settings.php:90 ../../mod/admin.php:1107 ../../mod/admin.php:1328 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Nastavení" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Nastavit faktor přiblížení pro Earth Layers" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Zobrazit/skrýt boxy na pravém sloupci:" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Zarovnání" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Vlevo" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Uprostřed" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Velikost písma u příspěvků" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Velikost písma textů" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Nastavit barevné schéma" - -#: ../../index.php:225 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Musíte být přihlášeni pro použití rozšíření." - -#: ../../index.php:269 ../../mod/p.php:16 ../../mod/p.php:25 -#: ../../mod/help.php:42 -msgid "Not Found" -msgstr "Nenalezen" - -#: ../../index.php:272 ../../mod/help.php:45 -msgid "Page not found." -msgstr "Stránka nenalezena" - -#: ../../index.php:381 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Nedostatečné oprávnění" - -#: ../../index.php:382 ../../include/items.php:4838 ../../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:12 -#: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:608 -#: ../../mod/contacts.php:322 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:24 ../../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/follow.php:39 -#: ../../mod/follow.php:78 ../../mod/uimport.php:23 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/events.php:152 ../../mod/mood.php:114 -#: ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:165 ../../mod/profiles.php:618 -#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:501 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:169 ../../mod/item.php:185 -#: ../../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." - -#: ../../index.php:441 -msgid "toggle mobile" -msgstr "přepnout mobil" - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Odstranit tuto položku?" - -#: ../../boot.php:750 ../../object/Item.php:364 ../../object/Item.php:680 -#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 -#: ../../mod/photos.php:1696 ../../mod/content.php:709 -msgid "Comment" -msgstr "Okomentovat" - -#: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:393 ../../mod/content.php:606 -msgid "show more" -msgstr "zobrazit více" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "zobrazit méně" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." - -#: ../../boot.php:1229 -msgid "Create a New Account" -msgstr "Vytvořit nový účet" - -#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 -msgid "Register" -msgstr "Registrovat" - -#: ../../boot.php:1254 ../../include/nav.php:73 -msgid "Logout" -msgstr "Odhlásit se" - -#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 -msgid "Login" -msgstr "Přihlásit se" - -#: ../../boot.php:1257 -msgid "Nickname or Email address: " -msgstr "Přezdívka nebo e-mailová adresa:" - -#: ../../boot.php:1258 -msgid "Password: " -msgstr "Heslo: " - -#: ../../boot.php:1259 -msgid "Remember me" -msgstr "Pamatuj si mne" - -#: ../../boot.php:1262 -msgid "Or login using OpenID: " -msgstr "Nebo přihlášení pomocí OpenID: " - -#: ../../boot.php:1268 -msgid "Forgot your password?" -msgstr "Zapomněli jste své heslo?" - -#: ../../boot.php:1269 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Obnovení hesla" - -#: ../../boot.php:1271 -msgid "Website Terms of Service" -msgstr "Podmínky použití serveru" - -#: ../../boot.php:1272 -msgid "terms of service" -msgstr "podmínky použití" - -#: ../../boot.php:1274 -msgid "Website Privacy Policy" -msgstr "Pravidla ochrany soukromí serveru" - -#: ../../boot.php:1275 -msgid "privacy policy" -msgstr "Ochrana soukromí" - -#: ../../boot.php:1408 -msgid "Requested account is not available." -msgstr "Požadovaný účet není dostupný." - -#: ../../boot.php:1447 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Požadovaný profil není k dispozici." - -#: ../../boot.php:1490 ../../boot.php:1624 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Upravit profil" - -#: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:63 -msgid "Connect" -msgstr "Spojit" - -#: ../../boot.php:1589 -msgid "Message" -msgstr "Zpráva" - -#: ../../boot.php:1595 ../../include/nav.php:176 -msgid "Profiles" -msgstr "Profily" - -#: ../../boot.php:1595 -msgid "Manage/edit profiles" -msgstr "Spravovat/upravit profily" - -#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 -msgid "Change profile photo" -msgstr "Změnit profilovou fotografii" - -#: ../../boot.php:1601 ../../mod/profiles.php:805 -msgid "Create New Profile" -msgstr "Vytvořit nový profil" - -#: ../../boot.php:1611 ../../mod/profiles.php:816 -msgid "Profile Image" -msgstr "Profilový obrázek" - -#: ../../boot.php:1614 ../../mod/profiles.php:818 -msgid "visible to everybody" -msgstr "viditelné pro všechny" - -#: ../../boot.php:1615 ../../mod/profiles.php:819 -msgid "Edit visibility" -msgstr "Upravit viditelnost" - -#: ../../boot.php:1637 ../../include/event.php:42 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:483 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Místo:" - -#: ../../boot.php:1639 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Pohlaví:" - -#: ../../boot.php:1642 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Status:" - -#: ../../boot.php:1644 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Domácí stránka:" - -#: ../../boot.php:1646 ../../include/profile_advanced.php:58 -#: ../../mod/directory.php:144 -msgid "About:" -msgstr "O mě:" - -#: ../../boot.php:1710 -msgid "Network:" -msgstr "Síť:" - -#: ../../boot.php:1742 ../../boot.php:1828 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../boot.php:1743 ../../boot.php:1829 -msgid "F d" -msgstr "d. F" - -#: ../../boot.php:1788 ../../boot.php:1876 -msgid "[today]" -msgstr "[Dnes]" - -#: ../../boot.php:1800 -msgid "Birthday Reminders" -msgstr "Připomínka narozenin" - -#: ../../boot.php:1801 -msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" - -#: ../../boot.php:1863 -msgid "[No description]" -msgstr "[Žádný popis]" - -#: ../../boot.php:1887 -msgid "Event Reminders" -msgstr "Připomenutí událostí" - -#: ../../boot.php:1888 -msgid "Events this week:" -msgstr "Události tohoto týdne:" - -#: ../../boot.php:2125 ../../include/nav.php:76 -msgid "Status" -msgstr "Stav" - -#: ../../boot.php:2128 -msgid "Status Messages and Posts" -msgstr "Statusové zprávy a příspěvky " - -#: ../../boot.php:2135 -msgid "Profile Details" -msgstr "Detaily profilu" - -#: ../../boot.php:2142 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalba" - -#: ../../boot.php:2146 ../../boot.php:2149 ../../include/nav.php:79 -msgid "Videos" -msgstr "Videa" - -#: ../../boot.php:2159 -msgid "Events and Calendar" -msgstr "Události a kalendář" - -#: ../../boot.php:2163 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Osobní poznámky" - -#: ../../boot.php:2166 -msgid "Only You Can See This" -msgstr "Toto můžete vidět jen Vy" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Obecné funkčnosti" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Vícenásobné profily" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Schopnost vytvořit vícenásobné profily" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Nastavení vytváření příspěvků" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Richtext Editor" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Povolit richtext editor" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Náhled příspěvku" - -#: ../../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" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Automaticky zmíněná Fóra" - -#: ../../include/features.php:33 -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ě" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Síťové postranní widgety" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Vyhledávat 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" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Skupinový Filtr" - -#: ../../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" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Síťový Filtr" - -#: ../../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ě" - -#: ../../include/features.php:42 ../../mod/network.php:194 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Uložená hledání" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Uložit kritéria vyhledávání pro znovupoužití" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Síťové záložky" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Osobní síťový záložka " - -#: ../../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 " - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nová záložka síť" - -#: ../../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)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "záložka Síťové sdílené odkazy " - -#: ../../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ě" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Nástroje Příspěvků/Komentářů" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Násobné mazání" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Označit a smazat více " - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editovat Odeslané příspěvky" - -#: ../../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í" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Štítkování" - -#: ../../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" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Kategorie příspěvků" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Přidat kategorie k Vašim příspěvkům" - -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Uložené složky" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Možnost řadit příspěvky do složek" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Označit příspěvky jako neoblíbené" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Příspěvky s hvězdou" - -#: ../../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" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Utlumit upozornění na přísvěvky" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Možnost stlumit upozornění pro vlákno" - -#: ../../include/items.php:2330 ../../include/datetime.php:477 -#, php-format -msgid "%s's birthday" -msgstr "%s má narozeniny" - -#: ../../include/items.php:2331 ../../include/datetime.php:478 -#, php-format -msgid "Happy Birthday %s" -msgstr "Veselé narozeniny %s" - -#: ../../include/items.php:4135 ../../mod/dfrn_request.php:732 -#: ../../mod/dfrn_confirm.php:753 -msgid "[Name Withheld]" -msgstr "[Jméno odepřeno]" - -#: ../../include/items.php:4642 ../../mod/admin.php:169 -#: ../../mod/admin.php:1055 ../../mod/admin.php:1268 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:286 -#: ../../mod/display.php:505 -msgid "Item not found." -msgstr "Položka nenalezena." - -#: ../../include/items.php:4681 -msgid "Do you really want to delete this item?" -msgstr "Opravdu chcete smazat tuto položku?" - -#: ../../include/items.php:4683 ../../mod/settings.php:1035 -#: ../../mod/settings.php:1041 ../../mod/settings.php:1049 -#: ../../mod/settings.php:1053 ../../mod/settings.php:1058 -#: ../../mod/settings.php:1064 ../../mod/settings.php:1070 -#: ../../mod/settings.php:1076 ../../mod/settings.php:1106 -#: ../../mod/settings.php:1107 ../../mod/settings.php:1108 -#: ../../mod/settings.php:1109 ../../mod/settings.php:1110 -#: ../../mod/contacts.php:411 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:845 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/follow.php:54 ../../mod/message.php:209 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 -msgid "Yes" -msgstr "Ano" - -#: ../../include/items.php:4686 ../../include/conversation.php:1128 -#: ../../mod/settings.php:622 ../../mod/settings.php:648 -#: ../../mod/contacts.php:414 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:859 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/follow.php:65 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Zrušit" - -#: ../../include/items.php:4904 -msgid "Archives" -msgstr "Archív" - -#: ../../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." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Defaultní soukromá skrupina pro nové kontakty." - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Všichni" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "editovat" - -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Skupiny" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editovat skupinu" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Vytvořit novou skupinu" - -#: ../../include/group.php:273 ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Název skupiny: " - -#: ../../include/group.php:275 -msgid "Contacts not in any group" -msgstr "Kontakty, které nejsou v žádné skupině" - -#: ../../include/group.php:277 ../../mod/network.php:195 -msgid "add" -msgstr "přidat" - -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:951 ../../include/Photo.php:966 -#: ../../include/Photo.php:973 ../../include/Photo.php:995 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:485 -msgid "Wall Photos" -msgstr "Fotografie na zdi" - -#: ../../include/dba.php:56 ../../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'" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Přidat nový kontakt" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Zadejte adresu nebo umístění webu" - -#: ../../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" - -#: ../../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" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Nalézt lidi" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Zadejte jméno nebo zájmy" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Připojit / Následovat" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Příklady: Robert Morgenstein, rybaření" - -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:794 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Najít" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Náhodný Profil" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Sítě" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Všechny sítě" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Všechno" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorie" - -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:509 -#, 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ů" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Notifikace" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Děkujeme, " - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrátor" - -#: ../../include/enotify.php:33 ../../include/delivery.php:467 -#: ../../include/notifier.php:796 -msgid "noreply" -msgstr "neodpovídat" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:78 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" - -#: ../../include/enotify.php:80 -#, 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." - -#: ../../include/enotify.php:81 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s Vám poslal %2$s." - -#: ../../include/enotify.php:81 -msgid "a private message" -msgstr "soukromá zpráva" - -#: ../../include/enotify.php:82 -#, 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." - -#: ../../include/enotify.php:134 -#, 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]" - -#: ../../include/enotify.php:141 -#, 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]" - -#: ../../include/enotify.php:149 -#, 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]" - -#: ../../include/enotify.php:159 -#, 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" - -#: ../../include/enotify.php:160 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." - -#: ../../include/enotify.php:163 ../../include/enotify.php:178 -#: ../../include/enotify.php:191 ../../include/enotify.php:204 -#: ../../include/enotify.php:222 ../../include/enotify.php:235 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." - -#: ../../include/enotify.php:170 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" - -#: ../../include/enotify.php:172 -#, 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" - -#: ../../include/enotify.php:174 -#, 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]" - -#: ../../include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Upozornění] %s Vás označil" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s Vás označil na %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]Vás označil[/url]." - -#: ../../include/enotify.php:198 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" - -#: ../../include/enotify.php:199 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s nasdílel nový příspěvek na %2$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." - -#: ../../include/enotify.php:212 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" - -#: ../../include/enotify.php:213 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s Vás šťouchnul na %2$s" - -#: ../../include/enotify.php:214 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." - -#: ../../include/enotify.php:229 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" - -#: ../../include/enotify.php:230 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s označil Váš příspěvek na %2$s" - -#: ../../include/enotify.php:231 -#, 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:242 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Upozornění] Obdrženo přestavení" - -#: ../../include/enotify.php:243 -#, 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" - -#: ../../include/enotify.php:244 -#, 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." - -#: ../../include/enotify.php:247 ../../include/enotify.php:289 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Můžete navštívit jejich profil na %s" - -#: ../../include/enotify.php:249 -#, 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:257 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí" - -#: ../../include/enotify.php:258 ../../include/enotify.php:259 -#, 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" - -#: ../../include/enotify.php:265 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Upozornění] Máte nového následovníka" - -#: ../../include/enotify.php:266 ../../include/enotify.php:267 -#, 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:280 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" - -#: ../../include/enotify.php:281 -#, 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" - -#: ../../include/enotify.php:282 -#, 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." - -#: ../../include/enotify.php:287 -msgid "Name:" -msgstr "Jméno:" - -#: ../../include/enotify.php:288 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:291 -#, 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í." - -#: ../../include/enotify.php:299 ../../include/enotify.php:312 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Upozornění] Spojení akceptováno" - -#: ../../include/enotify.php:300 ../../include/enotify.php:313 -#, 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" - -#: ../../include/enotify.php:301 ../../include/enotify.php:314 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]." - -#: ../../include/enotify.php:304 -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í." - -#: ../../include/enotify.php:307 ../../include/enotify.php:321 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." - -#: ../../include/enotify.php:317 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' 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.." - -#: ../../include/enotify.php:319 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní" - -#: ../../include/enotify.php:332 -msgid "[Friendica System:Notify] registration request" -msgstr "[Systém Friendica :Upozornění] registrační požadavek" - -#: ../../include/enotify.php:333 -#, 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" - -#: ../../include/enotify.php:334 -#, 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'." - -#: ../../include/enotify.php:337 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)" - -#: ../../include/enotify.php:340 -#, 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:310 ../../include/api.php:321 -#: ../../include/api.php:422 ../../include/api.php:1116 -#: ../../include/api.php:1118 -msgid "User not found." -msgstr "Uživatel nenalezen" - -#: ../../include/api.php:776 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." - -#: ../../include/api.php:795 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." - -#: ../../include/api.php:814 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." - -#: ../../include/api.php:1325 -msgid "There is no status with this id." -msgstr "Není tu žádný status s tímto id." - -#: ../../include/api.php:1399 -msgid "There is no conversation with this id." -msgstr "Nemáme žádnou konverzaci s tímto id." - -#: ../../include/api.php:1669 -msgid "Invalid request." -msgstr "Neplatný požadavek." - -#: ../../include/api.php:1680 -msgid "Invalid item." -msgstr "Neplatná položka." - -#: ../../include/api.php:1690 -msgid "Invalid action. " -msgstr "Neplatná akce" - -#: ../../include/api.php:1698 -msgid "DB error" -msgstr "DB chyba" - -#: ../../include/network.php:959 -msgid "view full size" -msgstr "zobrazit v plné velikosti" - -#: ../../include/Scrape.php:608 -msgid " on Last.fm" -msgstr " na Last.fm" - -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1153 -msgid "Full Name:" -msgstr "Celé jméno:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Narozeniny:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Věk:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "pro %1$d %2$s" - -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 -msgid "Sexual Preference:" -msgstr "Sexuální preference:" - -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 -msgid "Hometown:" -msgstr "Rodné město" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Štítky:" - -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 -msgid "Political Views:" -msgstr "Politické přesvědčení:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Náboženství:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Koníčky/zájmy:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 -msgid "Likes:" -msgstr "Líbí se:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 -msgid "Dislikes:" -msgstr "Nelibí se:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktní informace a sociální sítě:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Hudební vkus:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Knihy, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televize:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/tanec/kultura/zábava:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Láska/romance" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Práce/zaměstnání:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Škola/vzdělávání:" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Zde není nic nového" - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Smazat notifikace" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Konec této relace" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Vaše videa" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Vaše osobní poznámky" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Přihlásit se" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Domácí stránka" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Vytvořit účet" - -#: ../../include/nav.php:114 ../../mod/help.php:36 -msgid "Help" -msgstr "Nápověda" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Nápověda a dokumentace" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplikace" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Doplňkové aplikace, nástroje, hry" - -#: ../../include/nav.php:119 ../../include/text.php:970 -#: ../../include/text.php:971 ../../mod/search.php:99 -msgid "Search" -msgstr "Vyhledávání" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Hledání na stránkách tohoto webu" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Konverzace na tomto webu" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "Konverzace v síti" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Adresář" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Adresář" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informace" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informace o této instanci Friendica" - -#: ../../include/nav.php:145 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Síť" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Konverzace od Vašich přátel" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Síťový Reset" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Načíst stránku Síť bez filtrů" - -#: ../../include/nav.php:153 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Představení" - -#: ../../include/nav.php:153 -msgid "Friend Requests" -msgstr "Žádosti přátel" - -#: ../../include/nav.php:156 ../../mod/notifications.php:224 -msgid "Notifications" -msgstr "Upozornění" - -#: ../../include/nav.php:157 -msgid "See all notifications" -msgstr "Zobrazit všechny upozornění" - -#: ../../include/nav.php:158 -msgid "Mark all system notifications seen" -msgstr "Označit všechny upozornění systému jako přečtené" - -#: ../../include/nav.php:162 ../../mod/message.php:182 -msgid "Messages" -msgstr "Zprávy" - -#: ../../include/nav.php:162 -msgid "Private mail" -msgstr "Soukromá pošta" - -#: ../../include/nav.php:163 -msgid "Inbox" -msgstr "Doručená pošta" - -#: ../../include/nav.php:164 -msgid "Outbox" -msgstr "Odeslaná pošta" - -#: ../../include/nav.php:165 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nová zpráva" - -#: ../../include/nav.php:168 -msgid "Manage" -msgstr "Spravovat" - -#: ../../include/nav.php:168 -msgid "Manage other pages" -msgstr "Spravovat jiné stránky" - -#: ../../include/nav.php:171 ../../mod/settings.php:67 -msgid "Delegations" -msgstr "Delegace" - -#: ../../include/nav.php:171 ../../mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Správa delegátů stránky" - -#: ../../include/nav.php:173 -msgid "Account settings" -msgstr "Nastavení účtu" - -#: ../../include/nav.php:176 -msgid "Manage/Edit Profiles" -msgstr "Spravovat/Editovat Profily" - -#: ../../include/nav.php:178 -msgid "Manage/edit friends and contacts" -msgstr "Spravovat/upravit přátelé a kontakty" - -#: ../../include/nav.php:185 ../../mod/admin.php:130 -msgid "Admin" -msgstr "Administrace" - -#: ../../include/nav.php:185 -msgid "Site setup and configuration" -msgstr "Nastavení webu a konfigurace" - -#: ../../include/nav.php:189 -msgid "Navigation" -msgstr "Navigace" - -#: ../../include/nav.php:189 -msgid "Site map" -msgstr "Mapa webu" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Klikněte zde pro aktualizaci." - -#: ../../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." - -#: ../../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á." - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Nepovolené URL profilu." - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Chybí URL adresa." - -#: ../../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." - -#: ../../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." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Autor nebo jméno nenalezeno" - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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í." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Nepodařilo se získat kontaktní informace." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "následující" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Chyba dekódování uživatelského účtu" - -#: ../../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?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Chyba! Nelze ověřit přezdívku" - -#: ../../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!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Chyba vytváření uživatele" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Chyba vytváření uživatelského účtu" - -#: ../../include/uimport.php:220 -#, 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" - -#: ../../include/event.php:13 ../../include/bb2diaspora.php:133 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:22 ../../include/bb2diaspora.php:139 -msgid "Starts:" -msgstr "Začíná:" - -#: ../../include/event.php:32 ../../include/bb2diaspora.php:147 -msgid "Finishes:" -msgstr "Končí:" - -#: ../../include/Contact.php:119 -msgid "stopped following" -msgstr "následování zastaveno" - -#: ../../include/Contact.php:232 ../../include/conversation.php:881 -msgid "Poke" -msgstr "Šťouchnout" - -#: ../../include/Contact.php:233 ../../include/conversation.php:875 -msgid "View Status" -msgstr "Zobrazit Status" - -#: ../../include/Contact.php:234 ../../include/conversation.php:876 -msgid "View Profile" -msgstr "Zobrazit Profil" - -#: ../../include/Contact.php:235 ../../include/conversation.php:877 -msgid "View Photos" -msgstr "Zobrazit Fotky" - -#: ../../include/Contact.php:236 ../../include/Contact.php:259 -#: ../../include/conversation.php:878 -msgid "Network Posts" -msgstr "Zobrazit Příspěvky sítě" - -#: ../../include/Contact.php:237 ../../include/Contact.php:259 -#: ../../include/conversation.php:879 -msgid "Edit Contact" -msgstr "Editovat Kontakty" - -#: ../../include/Contact.php:238 -msgid "Drop Contact" -msgstr "Odstranit kontakt" - -#: ../../include/Contact.php:239 ../../include/Contact.php:259 -#: ../../include/conversation.php:880 -msgid "Send PM" -msgstr "Poslat soukromou zprávu" - -#: ../../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 "\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." - -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Chybová zpráva je\n[pre]%s[/pre]" - -#: ../../include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "Při vytváření databázových tabulek došlo k chybám." - -#: ../../include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Při provádění databázových změn došlo k chybám." - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Různé" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "rok" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "měsíc" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "den" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nikdy" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "méně než před sekundou" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "let" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "měsíců" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "týdnem" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "týdny" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dnů" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "hodina" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "hodin" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuta" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minut" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "sekunda" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "sekund" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "před %1$d %2$s" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[bez předmětu]" - -#: ../../include/delivery.php:456 ../../include/notifier.php:786 -msgid "(no subject)" -msgstr "(Bez předmětu)" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Neznámé | Nezařazeno" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Okamžitě blokovat " - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "pochybný, spammer, self-makerter" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Znám ho ale, ale bez rozhodnutí" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, pravděpodobně neškodný" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Renomovaný, má mou důvěru" - -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:573 -msgid "Frequently" -msgstr "Často" - -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:574 -msgid "Hourly" -msgstr "každou hodinu" - -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:575 -msgid "Twice daily" -msgstr "Dvakrát denně" - -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:576 -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ě" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:851 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1006 -#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 ../../mod/admin.php:1034 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:761 -#: ../../mod/dfrn_request.php:853 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora konektor" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: ../../include/diaspora.php:622 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:487 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s je nyní přítel s %2$s" - -#: ../../include/diaspora.php:705 -msgid "Sharing notification from Diaspora network" -msgstr "Sdílení oznámení ze sítě Diaspora" - -#: ../../include/diaspora.php:2493 -msgid "Attachments:" -msgstr "Přílohy:" - -#: ../../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" - -#: ../../include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s šťouchnul %2$s" - -#: ../../include/conversation.php:226 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s je právě %2$s" - -#: ../../include/conversation.php:265 ../../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" - -#: ../../include/conversation.php:290 -msgid "post/item" -msgstr "příspěvek/položka" - -#: ../../include/conversation.php:291 -#, 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" - -#: ../../include/conversation.php:612 ../../object/Item.php:130 -#: ../../mod/photos.php:1653 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Vybrat" - -#: ../../include/conversation.php:613 ../../object/Item.php:131 -#: ../../mod/group.php:171 ../../mod/settings.php:684 -#: ../../mod/contacts.php:803 ../../mod/admin.php:1010 -#: ../../mod/photos.php:1654 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Odstranit" - -#: ../../include/conversation.php:653 ../../object/Item.php:329 -#: ../../object/Item.php:330 ../../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" - -#: ../../include/conversation.php:665 ../../object/Item.php:319 -msgid "Categories:" -msgstr "Kategorie:" - -#: ../../include/conversation.php:666 ../../object/Item.php:320 -msgid "Filed under:" -msgstr "Vyplněn pod:" - -#: ../../include/conversation.php:673 ../../object/Item.php:343 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" - -#: ../../include/conversation.php:689 ../../mod/content.php:497 -msgid "View in context" -msgstr "Pohled v kontextu" - -#: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:367 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Čekejte prosím" - -#: ../../include/conversation.php:771 -msgid "remove" -msgstr "odstranit" - -#: ../../include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Smazat vybrané položky" - -#: ../../include/conversation.php:874 -msgid "Follow Thread" -msgstr "Následovat vlákno" - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s se to líbí." - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s se to nelíbí." - -#: ../../include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d lidem se to líbí" - -#: ../../include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d lidem se to nelíbí" - -#: ../../include/conversation.php:965 -msgid "and" -msgstr "a" - -#: ../../include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr ", a %d dalších lidí" - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s se to líbí." - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s se to nelíbí." - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -#: ../../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:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Prosím zadejte URL adresu videa:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Prosím zadejte URL adresu zvukového záznamu:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Tag term:" -msgstr "Štítek:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Uložit do složky:" - -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Kde právě jste?" - -#: ../../include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Smazat položku(y)?" - -#: ../../include/conversation.php:1050 -msgid "Post to Email" -msgstr "Poslat příspěvek na e-mail" - -#: ../../include/conversation.php:1055 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." - -#: ../../include/conversation.php:1056 ../../mod/settings.php:1053 -msgid "Hide your profile details from unknown viewers?" -msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" - -#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 -msgid "Share" -msgstr "Sdílet" - -#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Nahrát fotografii" - -#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "nahrát fotky" - -#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Přiložit soubor" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "přidat soubor" - -#: ../../include/conversation.php:1094 ../../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" - -#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 -msgid "web link" -msgstr "webový odkaz" - -#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Zadejte odkaz na video" - -#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 -msgid "video link" -msgstr "odkaz na video" - -#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Zadejte odkaz na zvukový záznam" - -#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "odkaz na audio" - -#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Nastavte vaši polohu" - -#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 -msgid "set location" -msgstr "nastavit místo" - -#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Odstranit adresu v prohlížeči" - -#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "vymazat místo" - -#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Nastavit titulek" - -#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (čárkou oddělený seznam)" - -#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Nastavení oprávnění" - -#: ../../include/conversation.php:1110 -msgid "permissions" -msgstr "oprávnění" - -#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "skrytá kopie: e-mailové adresy" - -#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Veřejný příspěvek" - -#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Příklad: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1125 ../../object/Item.php:690 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 -#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/events.php:489 ../../mod/content.php:719 -msgid "Preview" -msgstr "Náhled" - -#: ../../include/conversation.php:1134 -msgid "Post to Groups" -msgstr "Zveřejnit na Groups" - -#: ../../include/conversation.php:1135 -msgid "Post to Contacts" -msgstr "Zveřejnit na Groups" - -#: ../../include/conversation.php:1136 -msgid "Private post" -msgstr "Soukromý příspěvek" - -#: ../../include/text.php:299 -msgid "newer" -msgstr "novější" - -#: ../../include/text.php:301 -msgid "older" -msgstr "starší" - -#: ../../include/text.php:306 -msgid "prev" -msgstr "předchozí" - -#: ../../include/text.php:308 -msgid "first" -msgstr "první" - -#: ../../include/text.php:340 -msgid "last" -msgstr "poslední" - -#: ../../include/text.php:343 -msgid "next" -msgstr "další" - -#: ../../include/text.php:398 -msgid "Loading more entries..." -msgstr "Načítání více záznamů..." - -#: ../../include/text.php:399 -msgid "The end" -msgstr "Konec" - -#: ../../include/text.php:872 -msgid "No contacts" -msgstr "Žádné kontakty" - -#: ../../include/text.php:881 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktů" -msgstr[2] "%d kontaktů" - -#: ../../include/text.php:893 ../../mod/viewcontacts.php:78 -msgid "View Contacts" -msgstr "Zobrazit kontakty" - -#: ../../include/text.php:973 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Uložit" - -#: ../../include/text.php:1022 -msgid "poke" -msgstr "šťouchnout" - -#: ../../include/text.php:1022 -msgid "poked" -msgstr "šťouchnut" - -#: ../../include/text.php:1023 -msgid "ping" -msgstr "cinknout" - -#: ../../include/text.php:1023 -msgid "pinged" -msgstr "cinkut" - -#: ../../include/text.php:1024 -msgid "prod" -msgstr "pobídnout" - -#: ../../include/text.php:1024 -msgid "prodded" -msgstr "pobídnut" - -#: ../../include/text.php:1025 -msgid "slap" -msgstr "dát facku" - -#: ../../include/text.php:1025 -msgid "slapped" -msgstr "být uhozen" - -#: ../../include/text.php:1026 -msgid "finger" -msgstr "osahávat" - -#: ../../include/text.php:1026 -msgid "fingered" -msgstr "osaháván" - -#: ../../include/text.php:1027 -msgid "rebuff" -msgstr "odmítnout" - -#: ../../include/text.php:1027 -msgid "rebuffed" -msgstr "odmítnut" - -#: ../../include/text.php:1041 -msgid "happy" -msgstr "šťasný" - -#: ../../include/text.php:1042 -msgid "sad" -msgstr "smutný" - -#: ../../include/text.php:1043 -msgid "mellow" -msgstr "jemný" - -#: ../../include/text.php:1044 -msgid "tired" -msgstr "unavený" - -#: ../../include/text.php:1045 -msgid "perky" -msgstr "emergický" - -#: ../../include/text.php:1046 -msgid "angry" -msgstr "nazlobený" - -#: ../../include/text.php:1047 -msgid "stupified" -msgstr "otupen" - -#: ../../include/text.php:1048 -msgid "puzzled" -msgstr "popletený" - -#: ../../include/text.php:1049 -msgid "interested" -msgstr "zajímavý" - -#: ../../include/text.php:1050 -msgid "bitter" -msgstr "hořký" - -#: ../../include/text.php:1051 -msgid "cheerful" -msgstr "radnostný" - -#: ../../include/text.php:1052 -msgid "alive" -msgstr "naživu" - -#: ../../include/text.php:1053 -msgid "annoyed" -msgstr "otráven" - -#: ../../include/text.php:1054 -msgid "anxious" -msgstr "znepokojený" - -#: ../../include/text.php:1055 -msgid "cranky" -msgstr "mrzutý" - -#: ../../include/text.php:1056 -msgid "disturbed" -msgstr "vyrušen" - -#: ../../include/text.php:1057 -msgid "frustrated" -msgstr "frustrovaný" - -#: ../../include/text.php:1058 -msgid "motivated" -msgstr "motivovaný" - -#: ../../include/text.php:1059 -msgid "relaxed" -msgstr "uvolněný" - -#: ../../include/text.php:1060 -msgid "surprised" -msgstr "překvapený" - -#: ../../include/text.php:1230 -msgid "Monday" -msgstr "Pondělí" - -#: ../../include/text.php:1230 -msgid "Tuesday" -msgstr "Úterý" - -#: ../../include/text.php:1230 -msgid "Wednesday" -msgstr "Středa" - -#: ../../include/text.php:1230 -msgid "Thursday" -msgstr "Čtvrtek" - -#: ../../include/text.php:1230 -msgid "Friday" -msgstr "Pátek" - -#: ../../include/text.php:1230 -msgid "Saturday" -msgstr "Sobota" - -#: ../../include/text.php:1230 -msgid "Sunday" -msgstr "Neděle" - -#: ../../include/text.php:1234 -msgid "January" -msgstr "Ledna" - -#: ../../include/text.php:1234 -msgid "February" -msgstr "Února" - -#: ../../include/text.php:1234 -msgid "March" -msgstr "Března" - -#: ../../include/text.php:1234 -msgid "April" -msgstr "Dubna" - -#: ../../include/text.php:1234 -msgid "May" -msgstr "Května" - -#: ../../include/text.php:1234 -msgid "June" -msgstr "Června" - -#: ../../include/text.php:1234 -msgid "July" -msgstr "Července" - -#: ../../include/text.php:1234 -msgid "August" -msgstr "Srpna" - -#: ../../include/text.php:1234 -msgid "September" -msgstr "Září" - -#: ../../include/text.php:1234 -msgid "October" -msgstr "Října" - -#: ../../include/text.php:1234 -msgid "November" -msgstr "Listopadu" - -#: ../../include/text.php:1234 -msgid "December" -msgstr "Prosinec" - -#: ../../include/text.php:1424 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Zobrazit video" - -#: ../../include/text.php:1456 -msgid "bytes" -msgstr "bytů" - -#: ../../include/text.php:1488 ../../include/text.php:1500 -msgid "Click to open/close" -msgstr "Klikněte pro otevření/zavření" - -#: ../../include/text.php:1674 ../../include/text.php:1684 -#: ../../mod/events.php:347 -msgid "link to source" -msgstr "odkaz na zdroj" - -#: ../../include/text.php:1741 -msgid "Select an alternate language" -msgstr "Vyběr alternativního jazyka" - -#: ../../include/text.php:1997 -msgid "activity" -msgstr "aktivita" - -#: ../../include/text.php:1999 ../../object/Item.php:392 -#: ../../object/Item.php:405 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "komentář" - -#: ../../include/text.php:2000 -msgid "post" -msgstr "příspěvek" - -#: ../../include/text.php:2168 -msgid "Item filed" -msgstr "Položka vyplněna" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Odhlášen." - -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Přihlášení se nezdařilo." - -#: ../../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ě. " - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Chybová zpráva byla:" - -#: ../../include/bbcode.php:448 ../../include/bbcode.php:1094 -#: ../../include/bbcode.php:1095 -msgid "Image/photo" -msgstr "Obrázek/fotografie" - -#: ../../include/bbcode.php:546 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: ../../include/bbcode.php:580 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s napsal následující příspěvek" - -#: ../../include/bbcode.php:1058 ../../include/bbcode.php:1078 -msgid "$1 wrote:" -msgstr "$1 napsal:" - -#: ../../include/bbcode.php:1103 ../../include/bbcode.php:1104 -msgid "Encrypted content" -msgstr "Šifrovaný obsah" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Vítejte " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Prosím nahrejte profilovou fotografii" - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Vítejte zpět " - -#: ../../include/security.php:375 -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." - -#: ../../include/oembed.php:218 -msgid "Embedded content" -msgstr "vložený obsah" - -#: ../../include/oembed.php:227 -msgid "Embedding disabled" -msgstr "Vkládání zakázáno" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Muž" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Žena" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "V současné době muž" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "V současné době žena" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Většinou muž" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Většinou žena" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexuál" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutrál" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nespecifikováno" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Jiné" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nerozhodnuto" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Muži" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Ženy" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbička" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Bez preferencí" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuál" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexuál" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "panic/panna" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetišista" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Hodně" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nesexuální" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Svobodný" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Osamnělý" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Dostupný" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nedostupný" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Zamilovaný" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Zabouchnutý" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Seznamující se" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Nevěrný" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Závislý na sexu" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Přátelé" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Přátelé / výhody" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ležérní" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Zadaný" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Ženatý/vdaná" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Pomyslně ženatý/vdaná" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partneři" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Žijící ve společné domácnosti" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Zvykové právo" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Šťastný" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nehledající" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Zrazen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Odloučený" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Nestálý" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Rozvedený(á)" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Pomyslně rozvedený" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Ovdovělý(á)" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Nejistý" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Je to složité" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Nezajímá" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Zeptej se mě" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Pozvánka je vyžadována." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Pozvánka nemohla být ověřena." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Neplatný odkaz OpenID" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Zadejte prosím požadované informace." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Použijte prosím kratší jméno." - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Jméno je příliš krátké." - -#: ../../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í)." - -#: ../../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." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Neplatná e-mailová adresa." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Tento e-mail nelze použít." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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" - -#: ../../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 "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s." - -#: ../../include/user.php:413 ../../mod/admin.php:841 -#, php-format -msgid "Registration details for %s" -msgstr "Registrační údaje pro %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" - -#: ../../object/Item.php:95 -msgid "This entry was edited" -msgstr "Tento záznam byl editován" - -#: ../../object/Item.php:117 ../../mod/photos.php:1359 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Soukromá zpráva" - -#: ../../object/Item.php:121 ../../mod/settings.php:683 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Upravit" - -#: ../../object/Item.php:134 ../../mod/content.php:763 -msgid "save to folder" -msgstr "uložit do složky" - -#: ../../object/Item.php:196 ../../mod/content.php:753 -msgid "add star" -msgstr "přidat hvězdu" - -#: ../../object/Item.php:197 ../../mod/content.php:754 -msgid "remove star" -msgstr "odebrat hvězdu" - -#: ../../object/Item.php:198 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "přepnout hvězdu" - -#: ../../object/Item.php:201 ../../mod/content.php:758 -msgid "starred" -msgstr "označeno hvězdou" - -#: ../../object/Item.php:209 -msgid "ignore thread" -msgstr "ignorovat vlákno" - -#: ../../object/Item.php:210 -msgid "unignore thread" -msgstr "přestat ignorovat vlákno" - -#: ../../object/Item.php:211 -msgid "toggle ignore status" -msgstr "přepnout stav Ignorování" - -#: ../../object/Item.php:214 -msgid "ignored" -msgstr "ignorován" - -#: ../../object/Item.php:221 ../../mod/content.php:759 -msgid "add tag" -msgstr "přidat štítek" - -#: ../../object/Item.php:232 ../../mod/photos.php:1542 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" -msgstr "Líbí se mi to (přepínač)" - -#: ../../object/Item.php:232 ../../mod/content.php:684 -msgid "like" -msgstr "má rád" - -#: ../../object/Item.php:233 ../../mod/photos.php:1543 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" -msgstr "Nelíbí se mi to (přepínač)" - -#: ../../object/Item.php:233 ../../mod/content.php:685 -msgid "dislike" -msgstr "nemá rád" - -#: ../../object/Item.php:235 ../../mod/content.php:687 -msgid "Share this" -msgstr "Sdílet toto" - -#: ../../object/Item.php:235 ../../mod/content.php:687 -msgid "share" -msgstr "sdílí" - -#: ../../object/Item.php:331 ../../mod/content.php:854 -msgid "to" -msgstr "pro" - -#: ../../object/Item.php:332 -msgid "via" -msgstr "přes" - -#: ../../object/Item.php:333 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "Zeď-na-Zeď" - -#: ../../object/Item.php:334 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "přes Zeď-na-Zeď " - -#: ../../object/Item.php:390 ../../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ářů" - -#: ../../object/Item.php:678 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../mod/content.php:707 -msgid "This is you" -msgstr "Nastavte Vaši polohu" - -#: ../../object/Item.php:682 ../../mod/content.php:711 -msgid "Bold" -msgstr "Tučné" - -#: ../../object/Item.php:683 ../../mod/content.php:712 -msgid "Italic" -msgstr "Kurzíva" - -#: ../../object/Item.php:684 ../../mod/content.php:713 -msgid "Underline" -msgstr "Podrtžené" - -#: ../../object/Item.php:685 ../../mod/content.php:714 -msgid "Quote" -msgstr "Citovat" - -#: ../../object/Item.php:686 ../../mod/content.php:715 -msgid "Code" -msgstr "Kód" - -#: ../../object/Item.php:687 ../../mod/content.php:716 -msgid "Image" -msgstr "Obrázek" - -#: ../../object/Item.php:688 ../../mod/content.php:717 -msgid "Link" -msgstr "Odkaz" - -#: ../../object/Item.php:689 ../../mod/content.php:718 -msgid "Video" -msgstr "Video" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Položka není k dispozici." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Položka nebyla nalezena." - -#: ../../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/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Nevybrán příjemce." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Nebylo možné zjistit Vaši domácí lokaci." - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Sběr zpráv selhal." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Zpráva odeslána." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Žádný příjemce." - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" - -#: ../../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 "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:" - -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Předmět:" - -#: ../../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/group.php:29 -msgid "Group created." -msgstr "Skupina vytvořena." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Nelze vytvořit skupinu." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Skupina nenalezena." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Název skupiny byl změněn." - -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Uložit Skupinu" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Vytvořit skupinu kontaktů / přátel." - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Skupina odstraněna. " - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nelze odstranit skupinu." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor skupin" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Členové" - -#: ../../mod/group.php:194 ../../mod/contacts.php:656 -msgid "All Contacts" -msgstr "Všechny kontakty" - -#: ../../mod/group.php:224 ../../mod/profperm.php:106 -msgid "Click on a contact to add or remove." -msgstr "Klikněte na kontakt pro přidání nebo odebrání" - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Žádní potenciální delegáti stránky nenalezeni." - -#: ../../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/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Stávající správci stránky" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Stávající delegáti stránky " - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potenciální delegáti" - -#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Odstranit" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Přidat" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Žádné záznamy." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Neplatný identifikátor požadavku." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:215 -msgid "Discard" -msgstr "Odstranit" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:525 -#: ../../mod/contacts.php:589 ../../mod/contacts.php:801 -msgid "Ignore" -msgstr "Ignorovat" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Systém" - -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Osobní" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Zobrazit ignorované žádosti" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Skrýt ignorované žádosti" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 -msgid "Notification type: " -msgstr "Typ oznámení: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Návrh přátelství" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "navrhl %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:595 -msgid "Hide this contact from others" -msgstr "Skrýt tento kontakt před ostatními" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Zveřejnit aktivitu nového přítele." - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "if applicable" -msgstr "je-li použitelné" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1008 -msgid "Approve" -msgstr "Schválit" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Vaši údajní známí: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "ano" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "ne" - -#: ../../mod/notifications.php:182 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: " - -#: ../../mod/notifications.php:185 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: " - -#: ../../mod/notifications.php:193 -msgid "Friend" -msgstr "Přítel" - -#: ../../mod/notifications.php:194 -msgid "Sharer" -msgstr "Sdílené" - -#: ../../mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fanoušek / obdivovatel" - -#: ../../mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Přítel / žádost o připojení" - -#: ../../mod/notifications.php:200 -msgid "New Follower" -msgstr "Nový následovník" - -#: ../../mod/notifications.php:221 -msgid "No introductions." -msgstr "Žádné představení." - -#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "Uživateli %s se líbí příspěvek uživatele %s" - -#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 -#: ../../mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s se nyní přátelí s %s" - -#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s vytvořil nový příspěvek" - -#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 -#: ../../mod/notifications.php:517 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s okomentoval příspěvek uživatele %s'" - -#: ../../mod/notifications.php:310 -msgid "No more network notifications." -msgstr "Žádné další síťové upozornění." - -#: ../../mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Upozornění Sítě" - -#: ../../mod/notifications.php:340 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Žádné další systémová upozornění." - -#: ../../mod/notifications.php:344 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Systémová upozornění" - -#: ../../mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Žádné další osobní upozornění." - -#: ../../mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Osobní upozornění" - -#: ../../mod/notifications.php:524 -msgid "No more home notifications." -msgstr "Žádné další domácí upozornění." - -#: ../../mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Upozornění na vstupní straně" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Žádný profil" - -#: ../../mod/settings.php:34 ../../mod/photos.php:80 -msgid "everybody" -msgstr "Žádost o připojení selhala nebo byla zrušena." - -#: ../../mod/settings.php:41 ../../mod/admin.php:1019 -msgid "Account" -msgstr "Účet" - -#: ../../mod/settings.php:46 -msgid "Additional features" -msgstr "Další funkčnosti" - -#: ../../mod/settings.php:51 -msgid "Display" -msgstr "Zobrazení" - -#: ../../mod/settings.php:57 ../../mod/settings.php:805 -msgid "Social Networks" -msgstr "Sociální sítě" - -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1105 -#: ../../mod/admin.php:1158 -msgid "Plugins" -msgstr "Pluginy" - -#: ../../mod/settings.php:72 -msgid "Connected apps" -msgstr "Propojené aplikace" - -#: ../../mod/settings.php:77 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Export osobních údajů" - -#: ../../mod/settings.php:82 -msgid "Remove account" -msgstr "Odstranit účet" - -#: ../../mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Chybí některé důležité údaje!" - -#: ../../mod/settings.php:137 ../../mod/settings.php:647 -#: ../../mod/contacts.php:799 -msgid "Update" -msgstr "Aktualizace" - -#: ../../mod/settings.php:245 -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í." - -#: ../../mod/settings.php:250 -msgid "Email settings updated." -msgstr "Nastavení e-mailu aktualizována." - -#: ../../mod/settings.php:265 -msgid "Features updated" -msgstr "Aktualizované funkčnosti" - -#: ../../mod/settings.php:328 -msgid "Relocate message has been send to your contacts" -msgstr "Správa o změně umístění byla odeslána vašim kontaktům" - -#: ../../mod/settings.php:342 -msgid "Passwords do not match. Password unchanged." -msgstr "Hesla se neshodují. Heslo nebylo změněno." - -#: ../../mod/settings.php:347 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." - -#: ../../mod/settings.php:355 -msgid "Wrong password." -msgstr "Špatné heslo." - -#: ../../mod/settings.php:366 -msgid "Password changed." -msgstr "Heslo bylo změněno." - -#: ../../mod/settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." - -#: ../../mod/settings.php:435 -msgid " Please use a shorter name." -msgstr "Prosím použijte kratší jméno." - -#: ../../mod/settings.php:437 -msgid " Name too short." -msgstr "Jméno je příliš krátké." - -#: ../../mod/settings.php:446 -msgid "Wrong Password" -msgstr "Špatné heslo" - -#: ../../mod/settings.php:451 -msgid " Not valid email." -msgstr "Neplatný e-mail." - -#: ../../mod/settings.php:457 -msgid " Cannot change to that email." -msgstr "Nelze provést změnu na tento e-mail." - -#: ../../mod/settings.php:513 -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:517 -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:547 -msgid "Settings updated." -msgstr "Nastavení aktualizováno." - -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/settings.php:682 -msgid "Add application" -msgstr "Přidat aplikaci" - -#: ../../mod/settings.php:621 ../../mod/settings.php:731 -#: ../../mod/settings.php:754 ../../mod/settings.php:823 -#: ../../mod/settings.php:905 ../../mod/settings.php:1138 -#: ../../mod/admin.php:622 ../../mod/admin.php:1159 ../../mod/admin.php:1361 -#: ../../mod/admin.php:1448 -msgid "Save Settings" -msgstr "Uložit Nastavení" - -#: ../../mod/settings.php:623 ../../mod/settings.php:649 -#: ../../mod/admin.php:1006 ../../mod/admin.php:1018 ../../mod/admin.php:1019 -#: ../../mod/admin.php:1032 ../../mod/crepair.php:169 -msgid "Name" -msgstr "Jméno" - -#: ../../mod/settings.php:624 ../../mod/settings.php:650 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:625 ../../mod/settings.php:651 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:626 ../../mod/settings.php:652 -msgid "Redirect" -msgstr "Přesměrování" - -#: ../../mod/settings.php:627 ../../mod/settings.php:653 -msgid "Icon url" -msgstr "URL ikony" - -#: ../../mod/settings.php:638 -msgid "You can't edit this application." -msgstr "Nemůžete editovat tuto aplikaci." - -#: ../../mod/settings.php:681 -msgid "Connected Apps" -msgstr "Připojené aplikace" - -#: ../../mod/settings.php:685 -msgid "Client key starts with" -msgstr "Klienský klíč začíná" - -#: ../../mod/settings.php:686 -msgid "No name" -msgstr "Bez názvu" - -#: ../../mod/settings.php:687 -msgid "Remove authorization" -msgstr "Odstranit oprávnění" - -#: ../../mod/settings.php:699 -msgid "No Plugin settings configured" -msgstr "Žádný doplněk není nastaven" - -#: ../../mod/settings.php:707 -msgid "Plugin Settings" -msgstr "Nastavení doplňku" - -#: ../../mod/settings.php:721 -msgid "Off" -msgstr "Vypnuto" - -#: ../../mod/settings.php:721 -msgid "On" -msgstr "Zapnuto" - -#: ../../mod/settings.php:729 -msgid "Additional Features" -msgstr "Další Funkčnosti" - -#: ../../mod/settings.php:739 ../../mod/settings.php:743 -msgid "General Social Media Settings" -msgstr "General Social Media nastavení" - -#: ../../mod/settings.php:749 -msgid "Disable intelligent shortening" -msgstr "Vypnout inteligentní zkracování" - -#: ../../mod/settings.php:751 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek" - -#: ../../mod/settings.php:761 ../../mod/settings.php:762 -#, 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:761 ../../mod/settings.php:762 -msgid "enabled" -msgstr "povoleno" - -#: ../../mod/settings.php:761 ../../mod/settings.php:762 -msgid "disabled" -msgstr "zakázáno" - -#: ../../mod/settings.php:762 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:798 -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:810 -msgid "Email/Mailbox Setup" -msgstr "Nastavení e-mailu" - -#: ../../mod/settings.php:811 -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:812 -msgid "Last successful email check:" -msgstr "Poslední úspěšná kontrola e-mailu:" - -#: ../../mod/settings.php:814 -msgid "IMAP server name:" -msgstr "jméno IMAP serveru:" - -#: ../../mod/settings.php:815 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: ../../mod/settings.php:816 -msgid "Security:" -msgstr "Zabezpečení:" - -#: ../../mod/settings.php:816 ../../mod/settings.php:821 -msgid "None" -msgstr "Žádný" - -#: ../../mod/settings.php:817 -msgid "Email login name:" -msgstr "přihlašovací jméno k e-mailu:" - -#: ../../mod/settings.php:818 -msgid "Email password:" -msgstr "heslo k Vašemu e-mailu:" - -#: ../../mod/settings.php:819 -msgid "Reply-to address:" -msgstr "Odpovědět na adresu:" - -#: ../../mod/settings.php:820 -msgid "Send public posts to all email contacts:" -msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" - -#: ../../mod/settings.php:821 -msgid "Action after import:" -msgstr "Akce po importu:" - -#: ../../mod/settings.php:821 -msgid "Mark as seen" -msgstr "Označit jako přečtené" - -#: ../../mod/settings.php:821 -msgid "Move to folder" -msgstr "Přesunout do složky" - -#: ../../mod/settings.php:822 -msgid "Move to folder:" -msgstr "Přesunout do složky:" - -#: ../../mod/settings.php:853 ../../mod/admin.php:547 -msgid "No special theme for mobile devices" -msgstr "žádné speciální téma pro mobilní zařízení" - -#: ../../mod/settings.php:903 -msgid "Display Settings" -msgstr "Nastavení Zobrazení" - -#: ../../mod/settings.php:909 ../../mod/settings.php:924 -msgid "Display Theme:" -msgstr "Vybrat grafickou šablonu:" - -#: ../../mod/settings.php:910 -msgid "Mobile Theme:" -msgstr "Téma pro mobilní zařízení:" - -#: ../../mod/settings.php:911 -msgid "Update browser every xx seconds" -msgstr "Aktualizovat prohlížeč každých xx sekund" - -#: ../../mod/settings.php:911 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekund, žádné maximum." - -#: ../../mod/settings.php:912 -msgid "Number of items to display per page:" -msgstr "Počet položek zobrazených na stránce:" - -#: ../../mod/settings.php:912 ../../mod/settings.php:913 -msgid "Maximum of 100 items" -msgstr "Maximum 100 položek" - -#: ../../mod/settings.php:913 -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:914 -msgid "Don't show emoticons" -msgstr "Nezobrazovat emotikony" - -#: ../../mod/settings.php:915 -msgid "Don't show notices" -msgstr "Nezobrazovat oznámění" - -#: ../../mod/settings.php:916 -msgid "Infinite scroll" -msgstr "Nekonečné posouvání" - -#: ../../mod/settings.php:917 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatické aktualizace pouze na hlavní stránce Síť." - -#: ../../mod/settings.php:994 -msgid "User Types" -msgstr "Uživatelské typy" - -#: ../../mod/settings.php:995 -msgid "Community Types" -msgstr "Komunitní typy" - -#: ../../mod/settings.php:996 -msgid "Normal Account Page" -msgstr "Normální stránka účtu" - -#: ../../mod/settings.php:997 -msgid "This account is a normal personal profile" -msgstr "Tento účet je běžný osobní profil" - -#: ../../mod/settings.php:1000 -msgid "Soapbox Page" -msgstr "Stránka \"Soapbox\"" - -#: ../../mod/settings.php:1001 -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:1004 -msgid "Community Forum/Celebrity Account" -msgstr "Komunitní fórum/ účet celebrity" - -#: ../../mod/settings.php:1005 -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:1008 -msgid "Automatic Friend Page" -msgstr "Automatická stránka přítele" - -#: ../../mod/settings.php:1009 -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:1012 -msgid "Private Forum [Experimental]" -msgstr "Soukromé fórum [Experimentální]" - -#: ../../mod/settings.php:1013 -msgid "Private forum - approved members only" -msgstr "Soukromé fórum - pouze pro schválené členy" - -#: ../../mod/settings.php:1025 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1025 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." - -#: ../../mod/settings.php:1035 -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:1035 ../../mod/settings.php:1041 -#: ../../mod/settings.php:1049 ../../mod/settings.php:1053 -#: ../../mod/settings.php:1058 ../../mod/settings.php:1064 -#: ../../mod/settings.php:1070 ../../mod/settings.php:1076 -#: ../../mod/settings.php:1106 ../../mod/settings.php:1107 -#: ../../mod/settings.php:1108 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:845 ../../mod/api.php:106 -#: ../../mod/follow.php:54 ../../mod/profiles.php:661 -#: ../../mod/profiles.php:665 -msgid "No" -msgstr "Ne" - -#: ../../mod/settings.php:1041 -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:1049 -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:1053 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí." - -#: ../../mod/settings.php:1058 -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:1064 -msgid "Allow friends to tag your posts?" -msgstr "Povolit přátelům označovat Vaše příspěvky?" - -#: ../../mod/settings.php:1070 -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:1076 -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:1084 -msgid "Profile is not published." -msgstr "Profil není zveřejněn." - -#: ../../mod/settings.php:1087 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "nebo" - -#: ../../mod/settings.php:1092 -msgid "Your Identity Address is" -msgstr "Vaše adresa identity je" - -#: ../../mod/settings.php:1103 -msgid "Automatically expire posts after this many days:" -msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" - -#: ../../mod/settings.php:1103 -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:1104 -msgid "Advanced expiration settings" -msgstr "Pokročilé nastavení expirací" - -#: ../../mod/settings.php:1105 -msgid "Advanced Expiration" -msgstr "Nastavení expirací" - -#: ../../mod/settings.php:1106 -msgid "Expire posts:" -msgstr "Expirovat příspěvky:" - -#: ../../mod/settings.php:1107 -msgid "Expire personal notes:" -msgstr "Expirovat osobní poznámky:" - -#: ../../mod/settings.php:1108 -msgid "Expire starred posts:" -msgstr "Expirovat příspěvky s hvězdou:" - -#: ../../mod/settings.php:1109 -msgid "Expire photos:" -msgstr "Expirovat fotografie:" - -#: ../../mod/settings.php:1110 -msgid "Only expire posts by others:" -msgstr "Přízpěvky expirovat pouze ostatními:" - -#: ../../mod/settings.php:1136 -msgid "Account Settings" -msgstr "Nastavení účtu" - -#: ../../mod/settings.php:1144 -msgid "Password Settings" -msgstr "Nastavení hesla" - -#: ../../mod/settings.php:1145 -msgid "New Password:" -msgstr "Nové heslo:" - -#: ../../mod/settings.php:1146 -msgid "Confirm:" -msgstr "Potvrďte:" - -#: ../../mod/settings.php:1146 -msgid "Leave password fields blank unless changing" -msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" - -#: ../../mod/settings.php:1147 -msgid "Current Password:" -msgstr "Stávající heslo:" - -#: ../../mod/settings.php:1147 ../../mod/settings.php:1148 -msgid "Your current password to confirm the changes" -msgstr "Vaše stávající heslo k potvrzení změn" - -#: ../../mod/settings.php:1148 -msgid "Password:" -msgstr "Heslo: " - -#: ../../mod/settings.php:1152 -msgid "Basic Settings" -msgstr "Základní nastavení" - -#: ../../mod/settings.php:1154 -msgid "Email Address:" -msgstr "E-mailová adresa:" - -#: ../../mod/settings.php:1155 -msgid "Your Timezone:" -msgstr "Vaše časové pásmo:" - -#: ../../mod/settings.php:1156 -msgid "Default Post Location:" -msgstr "Výchozí umístění příspěvků:" - -#: ../../mod/settings.php:1157 -msgid "Use Browser Location:" -msgstr "Používat umístění dle prohlížeče:" - -#: ../../mod/settings.php:1160 -msgid "Security and Privacy Settings" -msgstr "Nastavení zabezpečení a soukromí" - -#: ../../mod/settings.php:1162 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximální počet žádostí o přátelství za den:" - -#: ../../mod/settings.php:1162 ../../mod/settings.php:1192 -msgid "(to prevent spam abuse)" -msgstr "(Aby se zabránilo spamu)" - -#: ../../mod/settings.php:1163 -msgid "Default Post Permissions" -msgstr "Výchozí oprávnění pro příspěvek" - -#: ../../mod/settings.php:1164 -msgid "(click to open/close)" -msgstr "(Klikněte pro otevření/zavření)" - -#: ../../mod/settings.php:1173 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Zobrazit ve Skupinách" - -#: ../../mod/settings.php:1174 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Zobrazit v Kontaktech" - -#: ../../mod/settings.php:1175 -msgid "Default Private Post" -msgstr "Výchozí Soukromý příspěvek" - -#: ../../mod/settings.php:1176 -msgid "Default Public Post" -msgstr "Výchozí Veřejný příspěvek" - -#: ../../mod/settings.php:1180 -msgid "Default Permissions for New Posts" -msgstr "Výchozí oprávnění pro nové příspěvky" - -#: ../../mod/settings.php:1192 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum soukromých zpráv od neznámých lidí:" - -#: ../../mod/settings.php:1195 -msgid "Notification Settings" -msgstr "Nastavení notifikací" - -#: ../../mod/settings.php:1196 -msgid "By default post a status message when:" -msgstr "Defaultně posílat statusové zprávy když:" - -#: ../../mod/settings.php:1197 -msgid "accepting a friend request" -msgstr "akceptuji požadavek na přátelství" - -#: ../../mod/settings.php:1198 -msgid "joining a forum/community" -msgstr "připojující se k fóru/komunitě" - -#: ../../mod/settings.php:1199 -msgid "making an interesting profile change" -msgstr "provedení zajímavé profilové změny" - -#: ../../mod/settings.php:1200 -msgid "Send a notification email when:" -msgstr "Poslat notifikaci e-mailem, když" - -#: ../../mod/settings.php:1201 -msgid "You receive an introduction" -msgstr "obdržíte žádost o propojení" - -#: ../../mod/settings.php:1202 -msgid "Your introductions are confirmed" -msgstr "Vaše žádosti jsou potvrzeny" - -#: ../../mod/settings.php:1203 -msgid "Someone writes on your profile wall" -msgstr "někdo Vám napíše na Vaši profilovou stránku" - -#: ../../mod/settings.php:1204 -msgid "Someone writes a followup comment" -msgstr "někdo Vám napíše následný komentář" - -#: ../../mod/settings.php:1205 -msgid "You receive a private message" -msgstr "obdržíte soukromou zprávu" - -#: ../../mod/settings.php:1206 -msgid "You receive a friend suggestion" -msgstr "Obdržel jste návrh přátelství" - -#: ../../mod/settings.php:1207 -msgid "You are tagged in a post" -msgstr "Jste označen v příspěvku" - -#: ../../mod/settings.php:1208 -msgid "You are poked/prodded/etc. in a post" -msgstr "Byl Jste šťouchnout v příspěvku" - -#: ../../mod/settings.php:1210 -msgid "Activate desktop notifications" -msgstr "Aktivovat upozornění na desktopu" - -#: ../../mod/settings.php:1211 -msgid "" -"Note: This is an experimental feature, as being not supported by each " -"browser" -msgstr "Poznámka: Jedná se o experimentální funkci, protože není podporovaná všemi prohlížeči" - -#: ../../mod/settings.php:1212 -msgid "You will now receive desktop notifications!" -msgstr "Nyní obdržíte notifikace na desktopu!" - -#: ../../mod/settings.php:1214 -msgid "Text-only notification emails" -msgstr "Pouze textové notifikační e-maily" - -#: ../../mod/settings.php:1216 -msgid "Send text only notification emails, without the html part" -msgstr "Posílat pouze textové notifikační e-maily, bez html části." - -#: ../../mod/settings.php:1218 -msgid "Advanced Account/Page Type Settings" -msgstr "Pokročilé nastavení účtu/stránky" - -#: ../../mod/settings.php:1219 -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:1222 -msgid "Relocate" -msgstr "Změna umístění" - -#: ../../mod/settings.php:1223 -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:1224 -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/common.php:78 -msgid "No contacts in common." -msgstr "Žádné společné kontakty." - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Vzdálené soukromé informace nejsou k dispozici." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Viditelné pro:" - -#: ../../mod/contacts.php:114 +#: mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" @@ -4175,1206 +28,2346 @@ msgstr[0] "%d kontakt upraven." msgstr[1] "%d kontakty upraveny" msgstr[2] "%d kontaktů upraveno" -#: ../../mod/contacts.php:145 ../../mod/contacts.php:340 +#: mod/contacts.php:145 mod/contacts.php:340 msgid "Could not access contact record." msgstr "Nelze získat přístup k záznamu kontaktu." -#: ../../mod/contacts.php:159 +#: mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "Nelze nalézt vybraný profil." -#: ../../mod/contacts.php:192 +#: mod/contacts.php:192 msgid "Contact updated." msgstr "Kontakt aktualizován." -#: ../../mod/contacts.php:194 ../../mod/dfrn_request.php:576 +#: mod/contacts.php:194 mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Nepodařilo se aktualizovat kontakt." -#: ../../mod/contacts.php:361 +#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 +#: mod/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 +#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5022 index.php:382 +msgid "Permission denied." +msgstr "Přístup odmítnut." + +#: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Kontakt byl zablokován" -#: ../../mod/contacts.php:361 +#: mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "Kontakt byl odblokován" -#: ../../mod/contacts.php:372 +#: mod/contacts.php:372 msgid "Contact has been ignored" msgstr "Kontakt bude ignorován" -#: ../../mod/contacts.php:372 +#: mod/contacts.php:372 msgid "Contact has been unignored" msgstr "Kontakt přestal být ignorován" -#: ../../mod/contacts.php:384 +#: mod/contacts.php:384 msgid "Contact has been archived" msgstr "Kontakt byl archivován" -#: ../../mod/contacts.php:384 +#: mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "Kontakt byl vrácen z archívu." -#: ../../mod/contacts.php:409 ../../mod/contacts.php:797 +#: mod/contacts.php:411 mod/contacts.php:767 msgid "Do you really want to delete this contact?" msgstr "Opravdu chcete smazat tento kontakt?" -#: ../../mod/contacts.php:426 +#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:210 +#: mod/settings.php:1063 mod/settings.php:1069 mod/settings.php:1077 +#: mod/settings.php:1081 mod/settings.php:1086 mod/settings.php:1092 +#: mod/settings.php:1098 mod/settings.php:1104 mod/settings.php:1130 +#: mod/settings.php:1131 mod/settings.php:1132 mod/settings.php:1133 +#: mod/settings.php:1134 mod/dfrn_request.php:845 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/api.php:105 include/items.php:4854 +msgid "Yes" +msgstr "Ano" + +#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68 +#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 +#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 +#: include/items.php:4857 +msgid "Cancel" +msgstr "Zrušit" + +#: mod/contacts.php:428 msgid "Contact has been removed." msgstr "Kontakt byl odstraněn." -#: ../../mod/contacts.php:464 +#: mod/contacts.php:466 #, php-format msgid "You are mutual friends with %s" msgstr "Jste vzájemní přátelé s uživatelem %s" -#: ../../mod/contacts.php:468 +#: mod/contacts.php:470 #, php-format msgid "You are sharing with %s" msgstr "Sdílíte s uživatelem %s" -#: ../../mod/contacts.php:473 +#: mod/contacts.php:475 #, php-format msgid "%s is sharing with you" msgstr "uživatel %s sdílí s vámi" -#: ../../mod/contacts.php:493 +#: mod/contacts.php:495 msgid "Private communications are not available for this contact." msgstr "Soukromá komunikace není dostupná pro tento kontakt." -#: ../../mod/contacts.php:496 ../../mod/admin.php:571 +#: mod/contacts.php:498 mod/admin.php:618 msgid "Never" msgstr "Nikdy" -#: ../../mod/contacts.php:500 +#: mod/contacts.php:502 msgid "(Update was successful)" msgstr "(Aktualizace byla úspěšná)" -#: ../../mod/contacts.php:500 +#: mod/contacts.php:502 msgid "(Update was not successful)" msgstr "(Aktualizace nebyla úspěšná)" -#: ../../mod/contacts.php:502 +#: mod/contacts.php:504 msgid "Suggest friends" msgstr "Navrhněte přátelé" -#: ../../mod/contacts.php:506 +#: mod/contacts.php:508 #, php-format msgid "Network type: %s" msgstr "Typ sítě: %s" -#: ../../mod/contacts.php:514 +#: mod/contacts.php:511 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ů" + +#: mod/contacts.php:516 msgid "View all contacts" msgstr "Zobrazit všechny kontakty" -#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 -#: ../../mod/contacts.php:800 ../../mod/admin.php:1012 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1083 msgid "Unblock" msgstr "Odblokovat" -#: ../../mod/contacts.php:519 ../../mod/contacts.php:588 -#: ../../mod/contacts.php:800 ../../mod/admin.php:1011 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1082 msgid "Block" msgstr "Blokovat" -#: ../../mod/contacts.php:522 +#: mod/contacts.php:524 msgid "Toggle Blocked status" msgstr "Přepnout stav Blokováno" -#: ../../mod/contacts.php:525 ../../mod/contacts.php:589 -#: ../../mod/contacts.php:801 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 msgid "Unignore" msgstr "Přestat ignorovat" -#: ../../mod/contacts.php:528 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 +msgid "Ignore" +msgstr "Ignorovat" + +#: mod/contacts.php:531 msgid "Toggle Ignored status" msgstr "Přepnout stav Ignorováno" -#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Unarchive" msgstr "Vrátit z archívu" -#: ../../mod/contacts.php:532 ../../mod/contacts.php:802 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Archive" msgstr "Archivovat" -#: ../../mod/contacts.php:535 +#: mod/contacts.php:539 msgid "Toggle Archive status" msgstr "Přepnout stav Archivováno" -#: ../../mod/contacts.php:538 +#: mod/contacts.php:543 msgid "Repair" msgstr "Opravit" -#: ../../mod/contacts.php:541 +#: mod/contacts.php:546 msgid "Advanced Contact Settings" msgstr "Pokročilé nastavení kontaktu" -#: ../../mod/contacts.php:547 +#: mod/contacts.php:553 msgid "Communications lost with this contact!" msgstr "Komunikace s tímto kontaktem byla ztracena!" -#: ../../mod/contacts.php:550 +#: mod/contacts.php:556 msgid "Fetch further information for feeds" msgstr "Načítat další informace pro kanál" -#: ../../mod/contacts.php:551 +#: mod/contacts.php:557 mod/admin.php:627 msgid "Disabled" msgstr "Zakázáno" -#: ../../mod/contacts.php:551 +#: mod/contacts.php:557 msgid "Fetch information" msgstr "Načítat informace" -#: ../../mod/contacts.php:551 +#: mod/contacts.php:557 msgid "Fetch information and keywords" msgstr "Načítat informace a klíčová slova" -#: ../../mod/contacts.php:560 +#: mod/contacts.php:566 msgid "Contact Editor" msgstr "Editor kontaktu" -#: ../../mod/contacts.php:563 +#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:511 mod/content.php:712 mod/install.php:250 +#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 +#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 +#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 +#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 +#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Odeslat" + +#: mod/contacts.php:569 msgid "Profile Visibility" msgstr "Viditelnost profilu" -#: ../../mod/contacts.php:564 +#: mod/contacts.php:570 #, 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." -#: ../../mod/contacts.php:565 +#: mod/contacts.php:571 msgid "Contact Information / Notes" msgstr "Kontaktní informace / poznámky" -#: ../../mod/contacts.php:566 +#: mod/contacts.php:572 msgid "Edit contact notes" msgstr "Editovat poznámky kontaktu" -#: ../../mod/contacts.php:571 ../../mod/contacts.php:765 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Navštivte profil uživatele %s [%s]" -#: ../../mod/contacts.php:572 +#: mod/contacts.php:578 msgid "Block/Unblock contact" msgstr "Blokovat / Odblokovat kontakt" -#: ../../mod/contacts.php:573 +#: mod/contacts.php:579 msgid "Ignore contact" msgstr "Ignorovat kontakt" -#: ../../mod/contacts.php:574 +#: mod/contacts.php:580 msgid "Repair URL settings" msgstr "Opravit nastavení adresy URL " -#: ../../mod/contacts.php:575 +#: mod/contacts.php:581 msgid "View conversations" msgstr "Zobrazit konverzace" -#: ../../mod/contacts.php:577 +#: mod/contacts.php:583 msgid "Delete contact" msgstr "Odstranit kontakt" -#: ../../mod/contacts.php:581 +#: mod/contacts.php:587 msgid "Last update:" msgstr "Poslední aktualizace:" -#: ../../mod/contacts.php:583 +#: mod/contacts.php:589 msgid "Update public posts" msgstr "Aktualizovat veřejné příspěvky" -#: ../../mod/contacts.php:585 ../../mod/admin.php:1506 +#: mod/contacts.php:591 mod/admin.php:1584 msgid "Update now" msgstr "Aktualizovat" -#: ../../mod/contacts.php:592 +#: mod/contacts.php:598 msgid "Currently blocked" msgstr "V současnosti zablokováno" -#: ../../mod/contacts.php:593 +#: mod/contacts.php:599 msgid "Currently ignored" msgstr "V současnosti ignorováno" -#: ../../mod/contacts.php:594 +#: mod/contacts.php:600 msgid "Currently archived" msgstr "Aktuálně archivován" -#: ../../mod/contacts.php:595 +#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 +msgid "Hide this contact from others" +msgstr "Skrýt tento kontakt před ostatními" + +#: mod/contacts.php:601 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é" -#: ../../mod/contacts.php:596 +#: mod/contacts.php:602 msgid "Notification for new posts" msgstr "Upozornění na nové příspěvky" -#: ../../mod/contacts.php:596 +#: mod/contacts.php:602 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/contacts.php:599 +#: mod/contacts.php:605 msgid "Blacklisted keywords" msgstr "Zakázaná klíčová slova" -#: ../../mod/contacts.php:599 +#: mod/contacts.php:605 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"" -#: ../../mod/contacts.php:650 +#: mod/contacts.php:612 +msgid "Profile URL" +msgstr "URL profilu" + +#: mod/contacts.php:658 msgid "Suggestions" msgstr "Doporučení" -#: ../../mod/contacts.php:653 +#: mod/contacts.php:661 msgid "Suggest potential friends" msgstr "Navrhnout potenciální přátele" -#: ../../mod/contacts.php:659 +#: mod/contacts.php:665 mod/group.php:192 +msgid "All Contacts" +msgstr "Všechny kontakty" + +#: mod/contacts.php:668 msgid "Show all contacts" msgstr "Zobrazit všechny kontakty" -#: ../../mod/contacts.php:662 +#: mod/contacts.php:672 msgid "Unblocked" msgstr "Odblokován" -#: ../../mod/contacts.php:665 +#: mod/contacts.php:675 msgid "Only show unblocked contacts" msgstr "Zobrazit pouze neblokované kontakty" -#: ../../mod/contacts.php:669 +#: mod/contacts.php:680 msgid "Blocked" msgstr "Blokován" -#: ../../mod/contacts.php:672 +#: mod/contacts.php:683 msgid "Only show blocked contacts" msgstr "Zobrazit pouze blokované kontakty" -#: ../../mod/contacts.php:676 +#: mod/contacts.php:688 msgid "Ignored" msgstr "Ignorován" -#: ../../mod/contacts.php:679 +#: mod/contacts.php:691 msgid "Only show ignored contacts" msgstr "Zobrazit pouze ignorované kontakty" -#: ../../mod/contacts.php:683 +#: mod/contacts.php:696 msgid "Archived" msgstr "Archivován" -#: ../../mod/contacts.php:686 +#: mod/contacts.php:699 msgid "Only show archived contacts" msgstr "Zobrazit pouze archivované kontakty" -#: ../../mod/contacts.php:690 +#: mod/contacts.php:704 msgid "Hidden" msgstr "Skrytý" -#: ../../mod/contacts.php:693 +#: mod/contacts.php:707 msgid "Only show hidden contacts" msgstr "Zobrazit pouze skryté kontakty" -#: ../../mod/contacts.php:741 -msgid "Mutual Friendship" -msgstr "Vzájemné přátelství" +#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 +#: include/nav.php:186 view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Kontakty" -#: ../../mod/contacts.php:745 -msgid "is a fan of yours" -msgstr "je Váš fanoušek" - -#: ../../mod/contacts.php:749 -msgid "you are a fan of" -msgstr "jste fanouškem" - -#: ../../mod/contacts.php:766 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editovat kontakt" - -#: ../../mod/contacts.php:792 +#: mod/contacts.php:762 msgid "Search your contacts" msgstr "Prohledat Vaše kontakty" -#: ../../mod/contacts.php:793 ../../mod/directory.php:61 +#: mod/contacts.php:763 mod/directory.php:63 msgid "Finding: " msgstr "Zjiště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/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +msgid "Find" +msgstr "Nají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/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +msgid "Update" +msgstr "Aktualizace" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Velikost souboru přesáhla limit %d" +#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 +#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 +msgid "Delete" +msgstr "Odstranit" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Nahrání souboru se nezdařilo." +#: mod/contacts.php:786 +msgid "Mutual Friendship" +msgstr "Vzájemné přátelství" -#: ../../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 - obnovte stránku pro zobrazení]" +#: mod/contacts.php:790 +msgid "is a fan of yours" +msgstr "je Váš fanoušek" -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Exportovat účet" +#: mod/contacts.php:794 +msgid "you are a fan of" +msgstr "jste fanouškem" -#: ../../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 "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." +#: mod/contacts.php:811 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Editovat kontakt" -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Exportovat vše" +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Žádný profil" -#: ../../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 "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: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/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 "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
    login: %s
    heslo: %s

    Své heslo můžete změnit po přihlášení." - -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Vaši registraci nelze zpracovat." - -#: ../../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/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/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/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/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Vaše OpenID (nepovinné): " - -#: ../../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/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Členství na tomto webu je pouze na pozvání." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Vaše pozvání ID:" - -#: ../../mod/register.php:255 ../../mod/admin.php:623 -msgid "Registration" -msgstr "Registrace" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vaše celé jméno (např. Jan Novák):" - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Vaše e-mailová adresa:" - -#: ../../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 "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/register.php:266 -msgid "Choose a nickname: " -msgstr "Vyberte přezdívku:" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Import Vašeho profilu do této friendica instance" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Příspěvek úspěšně odeslán" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systém vypnut z důvodů údržby" - -#: ../../mod/profile.php:155 ../../mod/display.php:334 -msgid "Access to this profile has been restricted." -msgstr "Přístup na tento profil byl omezen." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipy pro nové členy" - -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:777 -#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:214 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Veřejný přístup odepřen." - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Není vybráno žádné video" - -#: ../../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/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Zobrazit album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Aktuální Videa" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nahrát nová videa" - -#: ../../mod/manage.php:106 +#: mod/manage.php:106 msgid "Manage Identities and/or Pages" msgstr "Správa identit a / nebo stránek" -#: ../../mod/manage.php:107 +#: 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/manage.php:108 +#: mod/manage.php:108 msgid "Select an identity to manage: " msgstr "Vyberte identitu pro správu: " -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Položka nenalezena" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Příspěvek úspěšně odeslán" -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Upravit příspěvek" +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Nedostatečné oprávnění" -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Vyhledávání lidí" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Neplatný identifikátor profilu." -#: ../../mod/dirfind.php:60 ../../mod/match.php:71 -msgid "No matches" -msgstr "Žádné shody" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor viditelnosti profilu " -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Účet schválen." +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 +#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrace zrušena pro %s" +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Přihlaste se, prosím." +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Viditelný pro" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Toto pozvání již bylo přijato." +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" -#: ../../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/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 +#: mod/notice.php:15 include/items.php:4813 +msgid "Item not found." +msgstr "Položka nenalezena." -#: ../../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/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/directory.php:35 mod/photos.php:942 +msgid "Public access denied." +msgstr "Veřejný přístup odepřen." -#: ../../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/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Přístup na tento profil byl omezen." -#: ../../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/display.php:505 +msgid "Item has been removed." +msgstr "Položka byla odstraněna." -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Představení dokončeno." +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Vítejte na Friendica" -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Neopravitelná chyba protokolu" +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Seznam doporučení pro nového člena" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil není k dispozici." - -#: ../../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/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Ochrana proti spamu byla aktivována" - -#: ../../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/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Neplatný odkaz" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Neplatná emailová adresa" - -#: ../../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/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/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Již jste se zde zavedli." - -#: ../../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/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Neplatné URL profilu." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Vaše žádost o propojení byla odeslána." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." - -#: ../../mod/dfrn_request.php:660 +#: mod/newmember.php:12 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." +"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." -#: ../../mod/dfrn_request.php:674 ../../mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Potvrdit" +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Začínáme" -#: ../../mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Skrýt tento kontakt" +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Prohlídka Friendica " -#: ../../mod/dfrn_request.php:689 +#: 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." + +#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 +#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Nastavení" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Navštivte své nastavení" + +#: 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." + +#: 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." + +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +msgid "Upload Profile Photo" +msgstr "Nahrát profilovou fotografii" + +#: 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í." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editujte Váš profil" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "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." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profilová klíčová slova" + +#: 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í." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Probíhá pokus o připojení" + +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "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." + +#: 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." + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importování emaiů" + +#: 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" + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Navštivte Vaši stránku s kontakty" + +#: 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." + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Navštivte lokální adresář Friendica" + +#: 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." + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "Nalezení nových lidí" + +#: 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." + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "Skupiny" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Seskupte si své kontakty" + +#: 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íť." + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Proč nejsou mé příspěvky veřejné?" + +#: 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" + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "Získání nápovědy" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Navštivte sekci nápovědy" + +#: 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í." + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." + +#: 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." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Přihlášení se nezdařilo." + +#: 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." + +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 +#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Profilové fotografie" + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format -msgid "Welcome home %s." -msgstr "Vítejte doma %s." +msgid "Image size reduction [%s] failed." +msgstr "Nepodařilo se snížit velikost obrázku [%s]." -#: ../../mod/dfrn_request.php:690 +#: 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ě." + +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Obrázek nelze zpracovat " + +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 #, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Prosím potvrďte Vaši žádost o propojení %s." +msgid "Image exceeds size limit of %s" +msgstr "Obrázek překročil limit velikosti %s" -#: ../../mod/dfrn_request.php:819 -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/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 +msgid "Unable to process image." +msgstr "Obrázek není možné zprocesovat" -#: ../../mod/dfrn_request.php:839 -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/profile_photo.php:242 +msgid "Upload File:" +msgstr "Nahrát soubor:" -#: ../../mod/dfrn_request.php:842 -msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství / kontaktování" +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Vybrat profil:" -#: ../../mod/dfrn_request.php:843 -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/profile_photo.php:245 +msgid "Upload" +msgstr "Nahrát" -#: ../../mod/dfrn_request.php:844 ../../mod/follow.php:53 +#: mod/profile_photo.php:248 +msgid "or" +msgstr "nebo" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "přeskočit tento krok " + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "Vybrat fotografii z Vašich fotoalb" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Oříznout obrázek" + +#: 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í." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Editace dokončena" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Obrázek byl úspěšně nahrán." + +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 +msgid "Image upload failed." +msgstr "Nahrání obrázku selhalo." + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2034 include/diaspora.php:2127 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "fotografie" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "Stav" + +#: 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" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Štítek odstraněn" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Odebrat štítek položky" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Vyberte štítek k odebrání: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Odstranit" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Uložit do složky:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- vyber -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Uložit" + +#: mod/follow.php:24 +msgid "You already added this contact." +msgstr "Již jste si tento kontakt přidali." + +#: mod/follow.php:56 mod/dfrn_request.php:844 msgid "Please answer the following:" msgstr "Odpovězte, prosím, následující:" -#: ../../mod/dfrn_request.php:845 ../../mod/follow.php:54 +#: mod/follow.php:57 mod/dfrn_request.php:845 #, php-format msgid "Does %s know you?" msgstr "Zná Vás uživatel %s ?" -#: ../../mod/dfrn_request.php:849 ../../mod/follow.php:55 +#: mod/follow.php:57 mod/settings.php:1063 mod/settings.php:1069 +#: mod/settings.php:1077 mod/settings.php:1081 mod/settings.php:1086 +#: mod/settings.php:1092 mod/settings.php:1098 mod/settings.php:1104 +#: mod/settings.php:1130 mod/settings.php:1131 mod/settings.php:1132 +#: mod/settings.php:1133 mod/settings.php:1134 mod/dfrn_request.php:845 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "Ne" + +#: mod/follow.php:58 mod/dfrn_request.php:849 msgid "Add a personal note:" msgstr "Přidat osobní poznámku:" -#: ../../mod/dfrn_request.php:852 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federativní Sociální Web" - -#: ../../mod/dfrn_request.php:854 -#, 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/dfrn_request.php:855 ../../mod/follow.php:61 +#: mod/follow.php:64 mod/dfrn_request.php:855 msgid "Your Identity Address:" msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." -#: ../../mod/dfrn_request.php:858 ../../mod/follow.php:64 +#: mod/follow.php:67 mod/dfrn_request.php:858 msgid "Submit Request" msgstr "Odeslat žádost" -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Soubory" +#: mod/follow.php:106 +msgid "Contact added" +msgstr "Kontakt přidán" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Povolit připojení aplikacím" +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Nelze nalézt původní příspěvek." -#: ../../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/item.php:347 +msgid "Empty post discarded." +msgstr "Prázdný příspěvek odstraněn." -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Pro pokračování se prosím přihlaste." +#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 +#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 +msgid "Wall Photos" +msgstr "Fotografie na zdi" -#: ../../mod/api.php:104 +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Chyba systému. Příspěvek nebyl uložen." + +#: mod/item.php:989 +#, php-format 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ů?" +"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." -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Opravdu chcete smazat tento návrh?" +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Můžete je navštívit online na adrese %s" -#: ../../mod/suggest.php:74 +#: mod/item.php:992 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." +"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." -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignorovat / skrýt" +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s poslal aktualizaci." -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakty, které nejsou členy skupiny" +#: mod/group.php:29 +msgid "Group created." +msgstr "Skupina vytvořena." -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Nelze vytvořit skupinu." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Skupina nenalezena." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Název skupiny byl změněn." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Uložit Skupinu" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Vytvořit skupinu kontaktů / přátel." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Název skupiny: " + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Skupina odstraněna. " + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nelze odstranit skupinu." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Editor skupin" + +#: mod/group.php:190 +msgid "Members" +msgstr "Členové" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Musíte být přihlášeni pro použití rozšíření." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Aplikace" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Žádné nainstalované aplikace." + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profil nenalezen" + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 msgid "Contact not found." msgstr "Kontakt nenalezen." -#: ../../mod/fsuggest.php:63 +#: 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." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." + +#: 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:" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Potvrzení úspěšně dokončena." + +#: 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:" + +#: 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." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Žádost o propojení selhala nebo byla zrušena." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Nelze nastavit fotografii kontaktu." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:634 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s je nyní přítel s %2$s" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Pro '%s' nenalezen žádný uživatelský záznam " + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." + +#: mod/dfrn_confirm.php:593 +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." + +#: mod/dfrn_confirm.php:614 +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." + +#: mod/dfrn_confirm.php:628 +#, 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." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Nelze aktualizovat Váš profil v našem systému" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 +msgid "[Name Withheld]" +msgstr "[Jméno odepřeno]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s se připojil k %2$s" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Požadovaný profil není k dispozici." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tipy pro nové členy" + +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Opravdu chcete smazat toto video?" + +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Odstranit video" + +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Není vybráno žádné video" + +#: mod/videos.php:298 mod/photos.php:1053 +msgid "Access to this item is restricted." +msgstr "Přístup k této položce je omezen." + +#: mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Zobrazit video" + +#: mod/videos.php:380 mod/photos.php:1827 +msgid "View Album" +msgstr "Zobrazit album" + +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Aktuální Videa" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Nahrát nová videa" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" + +#: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "Návrhy přátelství odeslány " -#: ../../mod/fsuggest.php:97 +#: mod/fsuggest.php:97 msgid "Suggest Friends" msgstr "Navrhněte přátelé" -#: ../../mod/fsuggest.php:99 +#: mod/fsuggest.php:99 #, php-format msgid "Suggest a friend for %s" msgstr "Navrhněte přátelé pro uživatele %s" -#: ../../mod/share.php:38 -msgid "link" -msgstr "odkaz" +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Neplatný požadavek." -#: ../../mod/viewcontacts.php:41 +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nenalezen žádný platný účet." + +#: 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." + +#: 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 "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti." + +#: 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 "\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" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Na %s bylo zažádáno o resetování hesla" + +#: 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." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Obnovení hesla" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Vaše heslo bylo na Vaše přání resetováno." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Někdo Vám napsal na Vaši profilovou stránku" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Uložte si nebo zkopírujte nové heslo - a pak" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "klikněte zde pro přihlášení" + +#: 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í)." + +#: 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" + +#: 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 "\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" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Vaše heslo bylo změněno na %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Zapomněli jste heslo?" + +#: 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." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Přezdívka nebo e-mail: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reset" + +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s má rád %2$s' na %3$s" + +#: 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" + +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} chce být Vaším přítelem" + +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} vám poslal zprávu" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} požaduje registraci" + +#: mod/viewcontacts.php:41 msgid "No contacts." msgstr "Žádné kontakty." -#: ../../mod/admin.php:57 +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Zobrazit kontakty" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Neplatný identifikátor požadavku." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Odstranit" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Systém" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Síť" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Osobní" + +#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Domů" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Představení" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Zobrazit ignorované žádosti" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Skrýt ignorované žádosti" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Typ oznámení: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Návrh přátelství" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "navrhl %s" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Zveřejnit aktivitu nového přítele." + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "je-li použitelné" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 +msgid "Approve" +msgstr "Schválit" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Vaši údajní známí: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "ano" + +#: mod/notifications.php:191 +msgid "no" +msgstr "ne" + +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: " + +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: " + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Přítel" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Sdílené" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fanoušek / obdivovatel" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Přítel / žádost o připojení" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Nový následovník" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "Místo:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:581 +msgid "About:" +msgstr "O mě:" + +#: mod/notifications.php:224 include/identity.php:575 +msgid "Tags:" +msgstr "Štítky:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:540 +msgid "Gender:" +msgstr "Pohlaví:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Žádné představení." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Upozornění" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "Uživateli %s se líbí příspěvek uživatele %s" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s se nyní přátelí s %s" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s vytvořil nový příspěvek" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s okomentoval příspěvek uživatele %s'" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Žádné další síťové upozornění." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Upozornění Sítě" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Žádné další systémová upozornění." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systémová upozornění" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Žádné další osobní upozornění." + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Osobní upozornění" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Žádné další domácí upozornění." + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Upozornění na vstupní straně" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Zdrojový text (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Zdrojový vstup: " + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Vstupní data (ve formátu Diaspora): " + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Zde není nic nového" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Smazat notifikace" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Nová zpráva" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nevybrán příjemce." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Nepodařilo se najít kontaktní informace." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Zprávu se nepodařilo odeslat." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Sběr zpráv selhal." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Zpráva odeslána." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Zprávy" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Opravdu chcete smazat tuto zprávu?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Zpráva odstraněna." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Konverzace odstraněna." + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Zadejte prosím URL odkaz:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Odeslat soukromou zprávu" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "Adresát:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Předmět:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Vaše zpráva:" + +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Nahrát fotografii" + +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Vložit webový odkaz" + +#: mod/message.php:335 mod/message.php:566 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Čekejte prosím" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Žádné zprávy." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "Neznámý odesilatel - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Vy a %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s a Vy" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Odstranit konverzaci" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D M R - g:i A" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d zpráva" +msgstr[1] "%d zprávy" +msgstr[2] "%d zpráv" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Zpráva není k dispozici." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Smazat zprávu" + +#: mod/message.php:549 +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." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Poslat odpověď" + +#: 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í]" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Nastavení kontaktu změněno" + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Aktualizace kontaktu selhala." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Opravit nastavení kontaktu" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "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." + +#: mod/crepair.php:143 +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." + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Návrat k editoru kontaktu" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Žádné zrcadlení" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Zrcadlit pro přeposlané příspěvky" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Zrcadlit jako mé vlastní příspěvky" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Znovu načíst data kontaktu" + +#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 +#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 +#: mod/settings.php:660 +msgid "Name" +msgstr "Jméno" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Přezdívka účtu" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL adresa účtu" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "Žádost o přátelství URL" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL adresa potvrzení přátelství" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "Notifikační URL adresa" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL adresa" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nové foto z této URL adresy" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Remote Self" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Zrcadlení správ od tohoto kontaktu" + +#: mod/crepair.php:181 +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." + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Přihlásit se" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Příspěvek byl vytvořen" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Přístup odmítnut" + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Vyhledávání lidí - %s" + +#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Spojit" + +#: mod/dirfind.php:139 mod/match.php:73 +msgid "No matches" +msgstr "Žádné shody" + +#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Fotografie" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "Soubory" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakty, které nejsou členy skupiny" + +#: mod/admin.php:57 msgid "Theme settings updated." msgstr "Nastavení téma zobrazení bylo aktualizováno." -#: ../../mod/admin.php:104 ../../mod/admin.php:621 +#: mod/admin.php:104 mod/admin.php:682 msgid "Site" msgstr "Web" -#: ../../mod/admin.php:105 ../../mod/admin.php:1001 ../../mod/admin.php:1016 +#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 msgid "Users" msgstr "Uživatelé" -#: ../../mod/admin.php:107 ../../mod/admin.php:1326 ../../mod/admin.php:1360 +#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 +msgid "Plugins" +msgstr "Pluginy" + +#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 msgid "Themes" msgstr "Témata" -#: ../../mod/admin.php:108 +#: mod/admin.php:108 msgid "DB updates" msgstr "Aktualizace databáze" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1447 +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Proskoumat frontu" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 msgid "Logs" msgstr "Logy" -#: ../../mod/admin.php:124 +#: mod/admin.php:125 msgid "probe address" msgstr "vyzkoušet adresu" -#: ../../mod/admin.php:125 +#: mod/admin.php:126 msgid "check webfinger" msgstr "vyzkoušet webfinger" -#: ../../mod/admin.php:131 +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Administrace" + +#: mod/admin.php:132 msgid "Plugin Features" msgstr "Funkčnosti rozšíření" -#: ../../mod/admin.php:133 +#: mod/admin.php:134 msgid "diagnostics" msgstr "diagnostika" -#: ../../mod/admin.php:134 +#: mod/admin.php:135 msgid "User registrations waiting for confirmation" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:193 ../../mod/admin.php:955 -msgid "Normal Account" -msgstr "Normální účet" - -#: ../../mod/admin.php:194 ../../mod/admin.php:956 -msgid "Soapbox Account" -msgstr "Soapbox účet" - -#: ../../mod/admin.php:195 ../../mod/admin.php:957 -msgid "Community/Celebrity Account" -msgstr "Komunitní účet / Účet celebrity" - -#: ../../mod/admin.php:196 ../../mod/admin.php:958 -msgid "Automatic Friend Account" -msgstr "Účet s automatickým schvalováním přátel" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Účet Blogu" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Soukromé fórum" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Fronty zpráv" - -#: ../../mod/admin.php:222 ../../mod/admin.php:620 ../../mod/admin.php:1000 -#: ../../mod/admin.php:1104 ../../mod/admin.php:1157 ../../mod/admin.php:1325 -#: ../../mod/admin.php:1359 ../../mod/admin.php:1446 +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 +#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 +#: mod/admin.php:1524 msgid "Administration" msgstr "Administrace" -#: ../../mod/admin.php:223 +#: mod/admin.php:202 +msgid "ID" +msgstr "Identifikátor" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Jméno příjemce" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Profil píjemce" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Vytvořeno" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Naposled vyzkoušeno" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:220 mod/admin.php:1025 +msgid "Normal Account" +msgstr "Normální účet" + +#: mod/admin.php:221 mod/admin.php:1026 +msgid "Soapbox Account" +msgstr "Soapbox účet" + +#: mod/admin.php:222 mod/admin.php:1027 +msgid "Community/Celebrity Account" +msgstr "Komunitní účet / Účet celebrity" + +#: mod/admin.php:223 mod/admin.php:1028 +msgid "Automatic Friend Account" +msgstr "Účet s automatickým schvalováním přátel" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Účet Blogu" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Soukromé fórum" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Fronty zpráv" + +#: mod/admin.php:250 msgid "Summary" msgstr "Shrnutí" -#: ../../mod/admin.php:225 +#: mod/admin.php:252 msgid "Registered users" msgstr "Registrovaní uživatelé" -#: ../../mod/admin.php:227 +#: mod/admin.php:254 msgid "Pending registrations" msgstr "Čekající registrace" -#: ../../mod/admin.php:228 +#: mod/admin.php:255 msgid "Version" msgstr "Verze" -#: ../../mod/admin.php:232 +#: mod/admin.php:260 msgid "Active plugins" msgstr "Aktivní pluginy" -#: ../../mod/admin.php:255 +#: mod/admin.php:283 msgid "Can not parse base url. Must have at least ://" msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" -#: ../../mod/admin.php:518 +#: mod/admin.php:565 msgid "Site settings updated." msgstr "Nastavení webu aktualizováno." -#: ../../mod/admin.php:564 +#: mod/admin.php:594 mod/settings.php:880 +msgid "No special theme for mobile devices" +msgstr "žádné speciální téma pro mobilní zařízení" + +#: mod/admin.php:611 msgid "No community page" msgstr "Komunitní stránka neexistuje" -#: ../../mod/admin.php:565 +#: mod/admin.php:612 msgid "Public postings from users of this site" msgstr "Počet veřejných příspěvků od uživatele na této stránce" -#: ../../mod/admin.php:566 +#: mod/admin.php:613 msgid "Global community page" msgstr "Globální komunitní stránka" -#: ../../mod/admin.php:572 +#: mod/admin.php:619 msgid "At post arrival" msgstr "Při obdržení příspěvku" -#: ../../mod/admin.php:581 +#: mod/admin.php:620 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Často" + +#: mod/admin.php:621 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "každou hodinu" + +#: mod/admin.php:622 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Dvakrát denně" + +#: mod/admin.php:623 include/contact_selectors.php:59 +msgid "Daily" +msgstr "denně" + +#: mod/admin.php:629 +msgid "Users, Global Contacts" +msgstr "Uživatelé, Všechny kontakty" + +#: mod/admin.php:630 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:634 +msgid "One month" +msgstr "Jeden měsíc" + +#: mod/admin.php:635 +msgid "Three months" +msgstr "Tři měsíce" + +#: mod/admin.php:636 +msgid "Half a year" +msgstr "Půl roku" + +#: mod/admin.php:637 +msgid "One year" +msgstr "Jeden rok" + +#: mod/admin.php:642 msgid "Multi user instance" msgstr "Více uživatelská instance" -#: ../../mod/admin.php:604 +#: mod/admin.php:665 msgid "Closed" msgstr "Uzavřeno" -#: ../../mod/admin.php:605 +#: mod/admin.php:666 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: ../../mod/admin.php:606 +#: mod/admin.php:667 msgid "Open" msgstr "Otevřená" -#: ../../mod/admin.php:610 +#: mod/admin.php:671 msgid "No SSL policy, links will track page SSL state" msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav" -#: ../../mod/admin.php:611 +#: mod/admin.php:672 msgid "Force all links to use SSL" msgstr "Vyžadovat u všech odkazů použití SSL" -#: ../../mod/admin.php:612 +#: mod/admin.php:673 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/admin.php:624 +#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:781 +#: mod/settings.php:850 mod/settings.php:932 mod/settings.php:1162 +msgid "Save Settings" +msgstr "Uložit Nastavení" + +#: mod/admin.php:684 mod/register.php:260 +msgid "Registration" +msgstr "Registrace" + +#: mod/admin.php:685 msgid "File upload" msgstr "Nahrání souborů" -#: ../../mod/admin.php:625 +#: mod/admin.php:686 msgid "Policies" msgstr "Politiky" -#: ../../mod/admin.php:626 +#: mod/admin.php:687 msgid "Advanced" msgstr "Pokročilé" -#: ../../mod/admin.php:627 +#: mod/admin.php:688 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:689 msgid "Performance" msgstr "Výkonnost" -#: ../../mod/admin.php:628 +#: mod/admin.php:690 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:631 +#: mod/admin.php:693 msgid "Site name" msgstr "Název webu" -#: ../../mod/admin.php:632 +#: mod/admin.php:694 msgid "Host name" msgstr "Jméno hostitele (host name)" -#: ../../mod/admin.php:633 +#: mod/admin.php:695 msgid "Sender Email" msgstr "Email ddesílatele" -#: ../../mod/admin.php:634 +#: mod/admin.php:696 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:635 +#: mod/admin.php:697 msgid "Shortcut icon" msgstr "Ikona zkratky" -#: ../../mod/admin.php:636 +#: mod/admin.php:698 msgid "Touch icon" msgstr "Dotyková ikona" -#: ../../mod/admin.php:637 +#: mod/admin.php:699 msgid "Additional Info" msgstr "Dodatečné informace" -#: ../../mod/admin.php:637 +#: mod/admin.php:699 +#, php-format 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." +"listed at %s/siteinfo." +msgstr "" -#: ../../mod/admin.php:638 +#: mod/admin.php:700 msgid "System language" msgstr "Systémový jazyk" -#: ../../mod/admin.php:639 +#: mod/admin.php:701 msgid "System theme" msgstr "Grafická šablona systému " -#: ../../mod/admin.php:639 +#: mod/admin.php:701 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/admin.php:640 +#: mod/admin.php:702 msgid "Mobile system theme" msgstr "Systémové téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:640 +#: mod/admin.php:702 msgid "Theme for mobile devices" msgstr "Téma zobrazení pro mobilní zařízení" -#: ../../mod/admin.php:641 +#: mod/admin.php:703 msgid "SSL link policy" msgstr "Politika SSL odkazů" -#: ../../mod/admin.php:641 +#: mod/admin.php:703 msgid "Determines whether generated links should be forced to use SSL" msgstr "Určuje, zda-li budou generované odkazy používat SSL" -#: ../../mod/admin.php:642 +#: mod/admin.php:704 msgid "Force SSL" msgstr "Vynutit SSL" -#: ../../mod/admin.php:642 +#: mod/admin.php:704 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení." -#: ../../mod/admin.php:643 +#: mod/admin.php:705 msgid "Old style 'Share'" msgstr "Sdílení \"postaru\"" -#: ../../mod/admin.php:643 +#: mod/admin.php:705 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." -#: ../../mod/admin.php:644 +#: mod/admin.php:706 msgid "Hide help entry from navigation menu" msgstr "skrýt nápovědu z navigačního menu" -#: ../../mod/admin.php:644 +#: mod/admin.php:706 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/admin.php:645 +#: mod/admin.php:707 msgid "Single user instance" msgstr "Jednouživatelská instance" -#: ../../mod/admin.php:645 +#: mod/admin.php:707 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/admin.php:646 +#: mod/admin.php:708 msgid "Maximum image size" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:646 +#: mod/admin.php:708 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:647 +#: mod/admin.php:709 msgid "Maximum image length" msgstr "Maximální velikost obrázků" -#: ../../mod/admin.php:647 +#: mod/admin.php:709 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:648 +#: mod/admin.php:710 msgid "JPEG image quality" msgstr "JPEG kvalita obrázku" -#: ../../mod/admin.php:648 +#: mod/admin.php:710 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:650 +#: mod/admin.php:712 msgid "Register policy" msgstr "Politika registrace" -#: ../../mod/admin.php:651 +#: mod/admin.php:713 msgid "Maximum Daily Registrations" msgstr "Maximální počet denních registrací" -#: ../../mod/admin.php:651 +#: mod/admin.php:713 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:652 +#: mod/admin.php:714 msgid "Register text" msgstr "Registrace textu" -#: ../../mod/admin.php:652 +#: mod/admin.php:714 msgid "Will be displayed prominently on the registration page." msgstr "Bude zřetelně zobrazeno na registrační stránce." -#: ../../mod/admin.php:653 +#: mod/admin.php:715 msgid "Accounts abandoned after x days" msgstr "Účet je opuštěn po x dnech" -#: ../../mod/admin.php:653 +#: mod/admin.php:715 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." -#: ../../mod/admin.php:654 +#: mod/admin.php:716 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: ../../mod/admin.php:654 +#: mod/admin.php:716 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:655 +#: mod/admin.php:717 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: ../../mod/admin.php:655 +#: mod/admin.php:717 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." -#: ../../mod/admin.php:656 +#: mod/admin.php:718 msgid "Block public" msgstr "Blokovat veřejnost" -#: ../../mod/admin.php:656 +#: mod/admin.php:718 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/admin.php:657 +#: mod/admin.php:719 msgid "Force publish" msgstr "Publikovat" -#: ../../mod/admin.php:657 +#: mod/admin.php:719 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/admin.php:658 +#: mod/admin.php:720 msgid "Global directory update URL" msgstr "aktualizace URL adresy Globálního adresáře " -#: ../../mod/admin.php:658 +#: mod/admin.php:720 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/admin.php:659 +#: mod/admin.php:721 msgid "Allow threaded items" msgstr "Povolit vícevláknové zpracování obsahu" -#: ../../mod/admin.php:659 +#: mod/admin.php:721 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/admin.php:660 +#: mod/admin.php:722 msgid "Private posts by default for new users" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: ../../mod/admin.php:660 +#: mod/admin.php:722 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/admin.php:661 +#: mod/admin.php:723 msgid "Don't include post content in email notifications" msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" -#: ../../mod/admin.php:661 +#: mod/admin.php:723 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/admin.php:662 +#: mod/admin.php:724 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/admin.php:662 +#: mod/admin.php:724 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/admin.php:663 +#: mod/admin.php:725 msgid "Don't embed private images in posts" msgstr "Nepovolit přidávání soukromých správ v příspěvcích" -#: ../../mod/admin.php:663 +#: mod/admin.php:725 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 " @@ -5382,327 +2375,431 @@ msgid "" "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/admin.php:664 +#: mod/admin.php:726 msgid "Allow Users to set remote_self" msgstr "Umožnit uživatelům nastavit " -#: ../../mod/admin.php:664 +#: mod/admin.php:726 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/admin.php:665 +#: mod/admin.php:727 msgid "Block multiple registrations" msgstr "Blokovat více registrací" -#: ../../mod/admin.php:665 +#: mod/admin.php:727 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/admin.php:666 +#: mod/admin.php:728 msgid "OpenID support" msgstr "podpora OpenID" -#: ../../mod/admin.php:666 +#: mod/admin.php:728 msgid "OpenID support for registration and logins." msgstr "Podpora OpenID pro registraci a přihlašování." -#: ../../mod/admin.php:667 +#: mod/admin.php:729 msgid "Fullname check" msgstr "kontrola úplného jména" -#: ../../mod/admin.php:667 +#: mod/admin.php:729 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/admin.php:668 +#: mod/admin.php:730 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Regulární výrazy" -#: ../../mod/admin.php:668 +#: mod/admin.php:730 msgid "Use PHP UTF8 regular expressions" msgstr "Použít PHP UTF8 regulární výrazy." -#: ../../mod/admin.php:669 +#: mod/admin.php:731 msgid "Community Page Style" msgstr "Styl komunitní stránky" -#: ../../mod/admin.php:669 +#: mod/admin.php:731 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server." -#: ../../mod/admin.php:670 +#: mod/admin.php:732 msgid "Posts per user on community page" msgstr "Počet příspěvků na komunitní stránce" -#: ../../mod/admin.php:670 +#: mod/admin.php:732 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')" -#: ../../mod/admin.php:671 +#: mod/admin.php:733 msgid "Enable OStatus support" msgstr "Zapnout podporu OStatus" -#: ../../mod/admin.php:671 +#: mod/admin.php:733 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/admin.php:672 +#: mod/admin.php:734 msgid "OStatus conversation completion interval" msgstr "Interval dokončení konverzace OStatus" -#: ../../mod/admin.php:672 +#: mod/admin.php:734 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/admin.php:673 +#: mod/admin.php:735 msgid "Enable Diaspora support" msgstr "Povolit podporu Diaspora" -#: ../../mod/admin.php:673 +#: mod/admin.php:735 msgid "Provide built-in Diaspora network compatibility." msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." -#: ../../mod/admin.php:674 +#: mod/admin.php:736 msgid "Only allow Friendica contacts" msgstr "Povolit pouze Friendica kontakty" -#: ../../mod/admin.php:674 +#: mod/admin.php:736 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/admin.php:675 +#: mod/admin.php:737 msgid "Verify SSL" msgstr "Ověřit SSL" -#: ../../mod/admin.php:675 +#: mod/admin.php:737 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/admin.php:676 +#: mod/admin.php:738 msgid "Proxy user" msgstr "Proxy uživatel" -#: ../../mod/admin.php:677 +#: mod/admin.php:739 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: ../../mod/admin.php:678 +#: mod/admin.php:740 msgid "Network timeout" msgstr "čas síťového spojení vypršelo (timeout)" -#: ../../mod/admin.php:678 +#: mod/admin.php:740 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/admin.php:679 +#: mod/admin.php:741 msgid "Delivery interval" msgstr "Interval doručování" -#: ../../mod/admin.php:679 +#: mod/admin.php:741 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/admin.php:680 +#: mod/admin.php:742 msgid "Poll interval" msgstr "Dotazovací interval" -#: ../../mod/admin.php:680 +#: mod/admin.php:742 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/admin.php:681 +#: mod/admin.php:743 msgid "Maximum Load Average" msgstr "Maximální průměrné zatížení" -#: ../../mod/admin.php:681 +#: mod/admin.php:743 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/admin.php:682 +#: mod/admin.php:744 msgid "Maximum Load Average (Frontend)" msgstr "Maximální průměrné zatížení (Frontend)" -#: ../../mod/admin.php:682 +#: mod/admin.php:744 msgid "Maximum system load before the frontend quits service - default 50." msgstr "Maximální zatížení systému předtím, než frontend ukončí službu - defaultně 50" -#: ../../mod/admin.php:684 +#: mod/admin.php:746 +msgid "Periodical check of global contacts" +msgstr "Pravidelně ověřování globálních kontaktů" + +#: mod/admin.php:746 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:747 +msgid "Discover contacts from other servers" +msgstr "Objevit kontakty z ostatních serverů" + +#: mod/admin.php:747 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:748 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:748 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:749 +msgid "Search the local directory" +msgstr "Hledat v lokálním adresáři" + +#: mod/admin.php:749 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:751 +msgid "Publish server information" +msgstr "Zveřejnit informace o serveru" + +#: mod/admin.php:751 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:753 msgid "Use MySQL full text engine" msgstr "Použít fulltextový vyhledávací stroj MySQL" -#: ../../mod/admin.php:684 +#: mod/admin.php:753 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:685 +#: mod/admin.php:754 msgid "Suppress Language" msgstr "Potlačit Jazyk" -#: ../../mod/admin.php:685 +#: mod/admin.php:754 msgid "Suppress language information in meta information about a posting." msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" -#: ../../mod/admin.php:686 +#: mod/admin.php:755 msgid "Suppress Tags" msgstr "Potlačit štítky" -#: ../../mod/admin.php:686 +#: mod/admin.php:755 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Potlačit zobrazení listu hastagů na konci zprávy." -#: ../../mod/admin.php:687 +#: mod/admin.php:756 msgid "Path to item cache" msgstr "Cesta k položkám vyrovnávací paměti" -#: ../../mod/admin.php:688 +#: mod/admin.php:756 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:757 msgid "Cache duration in seconds" msgstr "Doba platnosti vyrovnávací paměti v sekundách" -#: ../../mod/admin.php:688 +#: mod/admin.php:757 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." -#: ../../mod/admin.php:689 +#: mod/admin.php:758 msgid "Maximum numbers of comments per post" msgstr "Maximální počet komentářů k příspěvku" -#: ../../mod/admin.php:689 +#: mod/admin.php:758 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/admin.php:690 +#: mod/admin.php:759 msgid "Path for lock file" msgstr "Cesta k souboru zámku" -#: ../../mod/admin.php:691 +#: mod/admin.php:759 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:760 msgid "Temp path" msgstr "Cesta k dočasným souborům" -#: ../../mod/admin.php:692 +#: mod/admin.php:760 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:761 msgid "Base path to installation" msgstr "Základní cesta k instalaci" -#: ../../mod/admin.php:693 +#: mod/admin.php:761 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:762 msgid "Disable picture proxy" msgstr "Vypnutí obrázkové proxy" -#: ../../mod/admin.php:693 +#: mod/admin.php:762 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." -#: ../../mod/admin.php:694 +#: mod/admin.php:763 msgid "Enable old style pager" msgstr "Aktivovat \"old style\" stránkování " -#: ../../mod/admin.php:694 +#: mod/admin.php:763 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky." -#: ../../mod/admin.php:695 +#: mod/admin.php:764 msgid "Only search in tags" msgstr "Hledat pouze ve štítkách" -#: ../../mod/admin.php:695 +#: mod/admin.php:764 msgid "On large systems the text search can slow down the system extremely." msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému." -#: ../../mod/admin.php:697 +#: mod/admin.php:766 msgid "New base url" msgstr "Nová výchozí url adresa" -#: ../../mod/admin.php:714 +#: mod/admin.php:766 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:768 +msgid "RINO Encryption" +msgstr "RINO Šifrování" + +#: mod/admin.php:768 +msgid "Encryption layer between nodes." +msgstr "Šifrovací vrstva mezi nódy." + +#: mod/admin.php:769 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:769 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:787 msgid "Update has been marked successful" msgstr "Aktualizace byla označena jako úspěšná." -#: ../../mod/admin.php:722 +#: mod/admin.php:795 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." -#: ../../mod/admin.php:725 +#: mod/admin.php:798 #, 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" -#: ../../mod/admin.php:737 +#: mod/admin.php:810 #, php-format msgid "Executing %s failed with error: %s" msgstr "Vykonávání %s selhalo s chybou: %s" -#: ../../mod/admin.php:740 +#: mod/admin.php:813 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizace %s byla úspěšně aplikována." -#: ../../mod/admin.php:744 +#: mod/admin.php:817 #, 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á." -#: ../../mod/admin.php:746 +#: mod/admin.php:819 #, 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." -#: ../../mod/admin.php:765 +#: mod/admin.php:838 msgid "No failed updates." msgstr "Žádné neúspěšné aktualizace." -#: ../../mod/admin.php:766 +#: mod/admin.php:839 msgid "Check database structure" msgstr "Ověření struktury databáze" -#: ../../mod/admin.php:771 +#: mod/admin.php:844 msgid "Failed Updates" msgstr "Neúspěšné aktualizace" -#: ../../mod/admin.php:772 +#: mod/admin.php:845 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." -#: ../../mod/admin.php:773 +#: mod/admin.php:846 msgid "Mark success (if update was manually applied)" msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: ../../mod/admin.php:774 +#: mod/admin.php:847 msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: ../../mod/admin.php:806 +#: mod/admin.php:879 #, php-format msgid "" "\n" @@ -5710,7 +2807,7 @@ msgid "" "\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." -#: ../../mod/admin.php:809 +#: mod/admin.php:882 #, php-format msgid "" "\n" @@ -5740,7 +2837,12 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1$s\n\t\t\tpřihlašovací jméno:\t\t%2$s\n\t\t\theslo:\t\t%3$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4$s." -#: ../../mod/admin.php:853 +#: mod/admin.php:914 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Registrační údaje pro %s" + +#: mod/admin.php:926 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" @@ -5748,7 +2850,7 @@ 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" -#: ../../mod/admin.php:860 +#: mod/admin.php:933 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -5756,279 +2858,268 @@ msgstr[0] "%s uživatel smazán" msgstr[1] "%s uživatelů smazáno" msgstr[2] "%s uživatelů smazáno" -#: ../../mod/admin.php:899 +#: mod/admin.php:972 #, php-format msgid "User '%s' deleted" msgstr "Uživatel '%s' smazán" -#: ../../mod/admin.php:907 +#: mod/admin.php:980 #, php-format msgid "User '%s' unblocked" msgstr "Uživatel '%s' odblokován" -#: ../../mod/admin.php:907 +#: mod/admin.php:980 #, php-format msgid "User '%s' blocked" msgstr "Uživatel '%s' blokován" -#: ../../mod/admin.php:1002 +#: mod/admin.php:1073 msgid "Add User" msgstr "Přidat Uživatele" -#: ../../mod/admin.php:1003 +#: mod/admin.php:1074 msgid "select all" msgstr "Vybrat vše" -#: ../../mod/admin.php:1004 +#: mod/admin.php:1075 msgid "User registrations waiting for confirm" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:1005 +#: mod/admin.php:1076 msgid "User waiting for permanent deletion" msgstr "Uživatel čeká na trvalé smazání" -#: ../../mod/admin.php:1006 +#: mod/admin.php:1077 msgid "Request date" msgstr "Datum žádosti" -#: ../../mod/admin.php:1007 +#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" + +#: mod/admin.php:1078 msgid "No registrations." msgstr "Žádné registrace." -#: ../../mod/admin.php:1009 +#: mod/admin.php:1080 msgid "Deny" msgstr "Odmítnout" -#: ../../mod/admin.php:1013 +#: mod/admin.php:1084 msgid "Site admin" msgstr "Site administrátor" -#: ../../mod/admin.php:1014 +#: mod/admin.php:1085 msgid "Account expired" msgstr "Účtu vypršela platnost" -#: ../../mod/admin.php:1017 +#: mod/admin.php:1088 msgid "New User" msgstr "Nový uživatel" -#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Register date" msgstr "Datum registrace" -#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last login" msgstr "Datum posledního přihlášení" -#: ../../mod/admin.php:1018 ../../mod/admin.php:1019 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last item" msgstr "Poslední položka" -#: ../../mod/admin.php:1018 +#: mod/admin.php:1089 msgid "Deleted since" msgstr "Smazán od" -#: ../../mod/admin.php:1021 +#: mod/admin.php:1090 mod/settings.php:41 +msgid "Account" +msgstr "Účet" + +#: mod/admin.php:1092 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?" -#: ../../mod/admin.php:1022 +#: mod/admin.php:1093 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?" -#: ../../mod/admin.php:1032 +#: mod/admin.php:1103 msgid "Name of the new user." msgstr "Jméno nového uživatele" -#: ../../mod/admin.php:1033 +#: mod/admin.php:1104 msgid "Nickname" msgstr "Přezdívka" -#: ../../mod/admin.php:1033 +#: mod/admin.php:1104 msgid "Nickname of the new user." msgstr "Přezdívka nového uživatele." -#: ../../mod/admin.php:1034 +#: mod/admin.php:1105 msgid "Email address of the new user." msgstr "Emailová adresa nového uživatele." -#: ../../mod/admin.php:1067 +#: mod/admin.php:1138 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s zakázán." -#: ../../mod/admin.php:1071 +#: mod/admin.php:1142 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s povolen." -#: ../../mod/admin.php:1081 ../../mod/admin.php:1297 +#: mod/admin.php:1152 mod/admin.php:1375 msgid "Disable" msgstr "Zakázat" -#: ../../mod/admin.php:1083 ../../mod/admin.php:1299 +#: mod/admin.php:1154 mod/admin.php:1377 msgid "Enable" msgstr "Povolit" -#: ../../mod/admin.php:1106 ../../mod/admin.php:1327 +#: mod/admin.php:1177 mod/admin.php:1405 msgid "Toggle" msgstr "Přepnout" -#: ../../mod/admin.php:1114 ../../mod/admin.php:1337 +#: mod/admin.php:1185 mod/admin.php:1415 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:1115 ../../mod/admin.php:1338 +#: mod/admin.php:1186 mod/admin.php:1416 msgid "Maintainer: " msgstr "Správce: " -#: ../../mod/admin.php:1257 +#: mod/admin.php:1335 msgid "No themes found." msgstr "Nenalezeny žádná témata." -#: ../../mod/admin.php:1319 +#: mod/admin.php:1397 msgid "Screenshot" msgstr "Snímek obrazovky" -#: ../../mod/admin.php:1365 +#: mod/admin.php:1443 msgid "[Experimental]" msgstr "[Experimentální]" -#: ../../mod/admin.php:1366 +#: mod/admin.php:1444 msgid "[Unsupported]" msgstr "[Nepodporováno]" -#: ../../mod/admin.php:1393 +#: mod/admin.php:1471 msgid "Log settings updated." msgstr "Nastavení protokolu aktualizováno." -#: ../../mod/admin.php:1449 +#: mod/admin.php:1527 msgid "Clear" msgstr "Vyčistit" -#: ../../mod/admin.php:1455 +#: mod/admin.php:1533 msgid "Enable Debugging" msgstr "Povolit ladění" -#: ../../mod/admin.php:1456 +#: mod/admin.php:1534 msgid "Log file" msgstr "Soubor s logem" -#: ../../mod/admin.php:1456 +#: mod/admin.php:1534 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" -#: ../../mod/admin.php:1457 +#: mod/admin.php:1535 msgid "Log level" msgstr "Úroveň auditu" -#: ../../mod/admin.php:1507 +#: mod/admin.php:1585 include/acl_selectors.php:347 msgid "Close" msgstr "Zavřít" -#: ../../mod/admin.php:1513 +#: mod/admin.php:1591 msgid "FTP Host" msgstr "Hostitel FTP" -#: ../../mod/admin.php:1514 +#: mod/admin.php:1592 msgid "FTP Path" msgstr "Cesta FTP" -#: ../../mod/admin.php:1515 +#: mod/admin.php:1593 msgid "FTP User" msgstr "FTP uživatel" -#: ../../mod/admin.php:1516 +#: mod/admin.php:1594 msgid "FTP Password" msgstr "FTP heslo" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#: mod/network.php:143 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Obrázek překročil limit velikosti %d" +msgid "Search Results For: %s" +msgstr "Výsledky hledání pro: %s" -#: ../../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" - -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Nahrání obrázku selhalo." - -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Vítá Vás %s" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." - -#: ../../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." - -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Výsledky hledání pro:" - -#: ../../mod/network.php:185 ../../mod/search.php:21 +#: mod/network.php:187 mod/search.php:25 msgid "Remove term" msgstr "Odstranit termín" -#: ../../mod/network.php:356 +#: mod/network.php:196 mod/search.php:34 include/features.php:42 +msgid "Saved Searches" +msgstr "Uložená hledání" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "přidat" + +#: mod/network.php:358 msgid "Commented Order" msgstr "Dle komentářů" -#: ../../mod/network.php:359 +#: mod/network.php:361 msgid "Sort by Comment Date" msgstr "Řadit podle data komentáře" -#: ../../mod/network.php:362 +#: mod/network.php:365 msgid "Posted Order" msgstr "Dle data" -#: ../../mod/network.php:365 +#: mod/network.php:368 msgid "Sort by Post Date" msgstr "Řadit podle data příspěvku" -#: ../../mod/network.php:374 +#: mod/network.php:378 msgid "Posts that mention or involve you" msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" -#: ../../mod/network.php:380 +#: mod/network.php:385 msgid "New" msgstr "Nové" -#: ../../mod/network.php:383 +#: mod/network.php:388 msgid "Activity Stream - by date" msgstr "Proud aktivit - dle data" -#: ../../mod/network.php:389 +#: mod/network.php:395 msgid "Shared Links" msgstr "Sdílené odkazy" -#: ../../mod/network.php:392 +#: mod/network.php:398 msgid "Interesting Links" msgstr "Zajímavé odkazy" -#: ../../mod/network.php:398 +#: mod/network.php:405 msgid "Starred" msgstr "S hvězdičkou" -#: ../../mod/network.php:401 +#: mod/network.php:408 msgid "Favourite Posts" msgstr "Oblíbené přízpěvky" -#: ../../mod/network.php:458 +#: mod/network.php:466 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6037,311 +3128,2293 @@ 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ě." -#: ../../mod/network.php:461 +#: mod/network.php:469 msgid "Private messages to this group are at risk of public disclosure." msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." -#: ../../mod/network.php:524 ../../mod/content.php:119 +#: mod/network.php:532 mod/content.php:119 msgid "No such group" msgstr "Žádná taková skupina" -#: ../../mod/network.php:541 ../../mod/content.php:130 +#: mod/network.php:549 mod/content.php:130 msgid "Group is empty" msgstr "Skupina je prázdná" -#: ../../mod/network.php:548 ../../mod/content.php:134 -msgid "Group: " -msgstr "Skupina: " +#: mod/network.php:560 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "Skupina: %s" -#: ../../mod/network.php:558 -msgid "Contact: " -msgstr "Kontakt: " +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "Kontakt: %s" -#: ../../mod/network.php:560 +#: mod/network.php:582 msgid "Private messages to this person are at risk of public disclosure." msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." -#: ../../mod/network.php:565 +#: mod/network.php:587 msgid "Invalid contact." msgstr "Neplatný kontakt." -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- vyber -" +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Přátelé uživatele %s" -#: ../../mod/friendica.php:59 +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Žádní přátelé k zobrazení" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Událost nemůže končit dříve, než začala." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Název události a datum začátku jsou vyžadovány." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l, F j" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Editovat událost" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "odkaz na zdroj" + +#: mod/events.php:396 include/identity.php:667 include/nav.php:80 +#: view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Události" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Vytvořit novou událost" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Předchozí" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Dále" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Detaily události" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "Počáteční datum a Název jsou vyžadovány." + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Událost začíná:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Vyžadováno" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Datum/čas konce není zadán nebo není relevantní" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Akce končí:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Popis:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Název:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Sdílet tuto událost" + +#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: object/Item.php:689 include/conversation.php:1089 +msgid "Preview" +msgstr "Náhled" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 +#: object/Item.php:130 include/conversation.php:612 +msgid "Select" +msgstr "Vybrat" + +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Zobrazit profil uživatele %s na %s" + +#: mod/content.php:483 mod/content.php:866 object/Item.php:342 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Pohled v kontextu" + +#: mod/content.php:605 object/Item.php:389 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komentář" +msgstr[1] "%d komentářů" +msgstr[2] "%d komentářů" + +#: mod/content.php:607 object/Item.php:391 object/Item.php:404 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "komentář" + +#: mod/content.php:608 boot.php:765 object/Item.php:392 +#: include/contact_widgets.php:205 include/items.php:5133 +msgid "show more" +msgstr "zobrazit více" + +#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Soukromá zpráva" + +#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 +msgid "I like this (toggle)" +msgstr "Líbí se mi to (přepínač)" + +#: mod/content.php:686 object/Item.php:232 +msgid "like" +msgstr "má rád" + +#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Nelíbí se mi to (přepínač)" + +#: mod/content.php:687 object/Item.php:233 +msgid "dislike" +msgstr "nemá rád" + +#: mod/content.php:689 object/Item.php:235 +msgid "Share this" +msgstr "Sdílet toto" + +#: mod/content.php:689 object/Item.php:235 +msgid "share" +msgstr "sdílí" + +#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 object/Item.php:677 +msgid "This is you" +msgstr "Nastavte Vaši polohu" + +#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 +#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 +msgid "Comment" +msgstr "Okomentovat" + +#: mod/content.php:713 object/Item.php:681 +msgid "Bold" +msgstr "Tučné" + +#: mod/content.php:714 object/Item.php:682 +msgid "Italic" +msgstr "Kurzíva" + +#: mod/content.php:715 object/Item.php:683 +msgid "Underline" +msgstr "Podrtžené" + +#: mod/content.php:716 object/Item.php:684 +msgid "Quote" +msgstr "Citovat" + +#: mod/content.php:717 object/Item.php:685 +msgid "Code" +msgstr "Kód" + +#: mod/content.php:718 object/Item.php:686 +msgid "Image" +msgstr "Obrázek" + +#: mod/content.php:719 object/Item.php:687 +msgid "Link" +msgstr "Odkaz" + +#: mod/content.php:720 object/Item.php:688 +msgid "Video" +msgstr "Video" + +#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 +msgid "Edit" +msgstr "Upravit" + +#: mod/content.php:755 object/Item.php:196 +msgid "add star" +msgstr "přidat hvězdu" + +#: mod/content.php:756 object/Item.php:197 +msgid "remove star" +msgstr "odebrat hvězdu" + +#: mod/content.php:757 object/Item.php:198 +msgid "toggle star status" +msgstr "přepnout hvězdu" + +#: mod/content.php:760 object/Item.php:201 +msgid "starred" +msgstr "označeno hvězdou" + +#: mod/content.php:761 object/Item.php:221 +msgid "add tag" +msgstr "přidat štítek" + +#: mod/content.php:765 object/Item.php:134 +msgid "save to folder" +msgstr "uložit do složky" + +#: mod/content.php:856 object/Item.php:330 +msgid "to" +msgstr "pro" + +#: mod/content.php:857 object/Item.php:332 +msgid "Wall-to-Wall" +msgstr "Zeď-na-Zeď" + +#: mod/content.php:858 object/Item.php:333 +msgid "via Wall-To-Wall:" +msgstr "přes Zeď-na-Zeď " + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Odstranit můj účet" + +#: 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." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Prosím, zadejte své heslo pro ověření:" + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Komunikační server - Nastavení" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "Nelze se připojit k databázi." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Nelze vytvořit tabulku." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "Vaše databáze Friendica byla nainstalována." + +#: mod/install.php:140 +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." + +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Databáze se již používá." + +#: mod/install.php:205 +msgid "System check" +msgstr "Testování systému" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Otestovat znovu" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Databázové spojení" + +#: mod/install.php:230 +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/install.php:231 +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/install.php:232 +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/install.php:236 +msgid "Database Server Name" +msgstr "Jméno databázového serveru" + +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Přihlašovací jméno k databázi" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Heslo k databázovému účtu " + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Jméno databáze" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "Emailová adresa administrátora webu" + +#: mod/install.php:240 mod/install.php:279 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." + +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Nastavení webu" + +#: mod/install.php:323 +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/install.php:324 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "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/install.php:328 +msgid "PHP executable path" +msgstr "Cesta k \"PHP executable\"" + +#: mod/install.php:328 +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/install.php:333 +msgid "Command line PHP" +msgstr "Příkazový řádek PHP" + +#: mod/install.php:342 +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/install.php:343 +msgid "Found PHP version: " +msgstr "Nalezena PHP verze:" + +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: mod/install.php:356 +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/install.php:357 +msgid "This is required for message delivery to work." +msgstr "Toto je nutné pro fungování doručování zpráv." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" + +#: mod/install.php:381 +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/install.php:383 +msgid "Generate encryption keys" +msgstr "Generovat kriptovací klíče" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "libCurl PHP modul" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP modul" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP modul" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "mysqli PHP modul" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "mb_string PHP modul" + +#: mod/install.php:399 mod/install.php:401 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul" + +#: mod/install.php:399 +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/install.php:407 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." + +#: mod/install.php:411 +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/install.php:415 +msgid "Error: openssl PHP module required but not installed." +msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." + +#: mod/install.php:419 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." + +#: mod/install.php:423 +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/install.php:440 +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/install.php:441 +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/install.php:442 +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/install.php:443 +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/install.php:446 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php je editovatelné" + +#: mod/install.php:456 +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/install.php:457 +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/install.php:458 +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/install.php:459 +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/install.php:462 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 je nastaven pro zápis" + +#: mod/install.php:478 +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/install.php:480 +msgid "Url rewrite is working" +msgstr "Url rewrite je funkční." + +#: mod/install.php:489 +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/install.php:528 +msgid "

    What next

    " +msgstr "

    Co dál

    " + +#: mod/install.php:529 +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/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/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Nebylo možné zjistit Vaši domácí lokaci." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Žádný příjemce." + +#: 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 "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/help.php:31 +msgid "Help:" +msgstr "Nápověda:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Nápověda" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Nenalezen" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Stránka nenalezena" + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s vítá %2$s" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Vítá Vás %s" + +#: mod/wall_attach.php:83 +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/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "Nebo - nenahrával jste prázdný soubor?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Velikost souboru přesáhla limit %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Nahrání souboru se nezdařilo." + +#: mod/match.php:13 +msgid "Profile Match" +msgstr "Shoda profilu" + +#: mod/match.php:22 +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/match.php:64 +msgid "is interested in:" +msgstr "zajímá se o:" + +#: mod/share.php:38 +msgid "link" +msgstr "odkaz" + +#: mod/community.php:23 +msgid "Not available." +msgstr "Není k dispozici." + +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Komunita" + +#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +msgid "No results." +msgstr "Žádné výsledky." + +#: mod/settings.php:34 mod/photos.php:102 +msgid "everybody" +msgstr "Žádost o připojení selhala nebo byla zrušena." + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Další funkčnosti" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Zobrazení" + +#: mod/settings.php:60 mod/settings.php:832 +msgid "Social Networks" +msgstr "Sociální sítě" + +#: mod/settings.php:72 include/nav.php:179 +msgid "Delegations" +msgstr "Delegace" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Propojené aplikace" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Export osobních údajů" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Odstranit účet" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Chybí některé důležité údaje!" + +#: mod/settings.php:256 +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í." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "Nastavení e-mailu aktualizována." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Aktualizované funkčnosti" + +#: mod/settings.php:339 +msgid "Relocate message has been send to your contacts" +msgstr "Správa o změně umístění byla odeslána vašim kontaktům" + +#: mod/settings.php:353 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Hesla se neshodují. Heslo nebylo změněno." + +#: mod/settings.php:358 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." + +#: mod/settings.php:366 +msgid "Wrong password." +msgstr "Špatné heslo." + +#: mod/settings.php:377 +msgid "Password changed." +msgstr "Heslo bylo změněno." + +#: mod/settings.php:379 +msgid "Password update failed. Please try again." +msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." + +#: mod/settings.php:446 +msgid " Please use a shorter name." +msgstr "Prosím použijte kratší jméno." + +#: mod/settings.php:448 +msgid " Name too short." +msgstr "Jméno je příliš krátké." + +#: mod/settings.php:457 +msgid "Wrong Password" +msgstr "Špatné heslo" + +#: mod/settings.php:462 +msgid " Not valid email." +msgstr "Neplatný e-mail." + +#: mod/settings.php:468 +msgid " Cannot change to that email." +msgstr "Nelze provést změnu na tento e-mail." + +#: mod/settings.php:524 +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:528 +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:558 +msgid "Settings updated." +msgstr "Nastavení aktualizováno." + +#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 +msgid "Add application" +msgstr "Přidat aplikaci" + +#: mod/settings.php:635 mod/settings.php:661 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:636 mod/settings.php:662 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:637 mod/settings.php:663 +msgid "Redirect" +msgstr "Přesměrování" + +#: mod/settings.php:638 mod/settings.php:664 +msgid "Icon url" +msgstr "URL ikony" + +#: mod/settings.php:649 +msgid "You can't edit this application." +msgstr "Nemůžete editovat tuto aplikaci." + +#: mod/settings.php:692 +msgid "Connected Apps" +msgstr "Připojené aplikace" + +#: mod/settings.php:696 +msgid "Client key starts with" +msgstr "Klienský klíč začíná" + +#: mod/settings.php:697 +msgid "No name" +msgstr "Bez názvu" + +#: mod/settings.php:698 +msgid "Remove authorization" +msgstr "Odstranit oprávnění" + +#: mod/settings.php:710 +msgid "No Plugin settings configured" +msgstr "Žádný doplněk není nastaven" + +#: mod/settings.php:718 +msgid "Plugin Settings" +msgstr "Nastavení doplňku" + +#: mod/settings.php:732 +msgid "Off" +msgstr "Vypnuto" + +#: mod/settings.php:732 +msgid "On" +msgstr "Zapnuto" + +#: mod/settings.php:740 +msgid "Additional Features" +msgstr "Další Funkčnosti" + +#: mod/settings.php:750 mod/settings.php:754 +msgid "General Social Media Settings" +msgstr "General Social Media nastavení" + +#: mod/settings.php:760 +msgid "Disable intelligent shortening" +msgstr "Vypnout inteligentní zkracování" + +#: mod/settings.php:762 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek" + +#: mod/settings.php:768 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele" + +#: mod/settings.php:770 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:776 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:778 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:788 mod/settings.php:789 +#, 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:788 mod/dfrn_request.php:853 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:788 mod/settings.php:789 +msgid "enabled" +msgstr "povoleno" + +#: mod/settings.php:788 mod/settings.php:789 +msgid "disabled" +msgstr "zakázáno" + +#: mod/settings.php:789 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:825 +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:837 +msgid "Email/Mailbox Setup" +msgstr "Nastavení e-mailu" + +#: mod/settings.php:838 +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:839 +msgid "Last successful email check:" +msgstr "Poslední úspěšná kontrola e-mailu:" + +#: mod/settings.php:841 +msgid "IMAP server name:" +msgstr "jméno IMAP serveru:" + +#: mod/settings.php:842 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: mod/settings.php:843 +msgid "Security:" +msgstr "Zabezpečení:" + +#: mod/settings.php:843 mod/settings.php:848 +msgid "None" +msgstr "Žádný" + +#: mod/settings.php:844 +msgid "Email login name:" +msgstr "přihlašovací jméno k e-mailu:" + +#: mod/settings.php:845 +msgid "Email password:" +msgstr "heslo k Vašemu e-mailu:" + +#: mod/settings.php:846 +msgid "Reply-to address:" +msgstr "Odpovědět na adresu:" + +#: mod/settings.php:847 +msgid "Send public posts to all email contacts:" +msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" + +#: mod/settings.php:848 +msgid "Action after import:" +msgstr "Akce po importu:" + +#: mod/settings.php:848 +msgid "Mark as seen" +msgstr "Označit jako přečtené" + +#: mod/settings.php:848 +msgid "Move to folder" +msgstr "Přesunout do složky" + +#: mod/settings.php:849 +msgid "Move to folder:" +msgstr "Přesunout do složky:" + +#: mod/settings.php:930 +msgid "Display Settings" +msgstr "Nastavení Zobrazení" + +#: mod/settings.php:936 mod/settings.php:952 +msgid "Display Theme:" +msgstr "Vybrat grafickou šablonu:" + +#: mod/settings.php:937 +msgid "Mobile Theme:" +msgstr "Téma pro mobilní zařízení:" + +#: mod/settings.php:938 +msgid "Update browser every xx seconds" +msgstr "Aktualizovat prohlížeč každých xx sekund" + +#: mod/settings.php:938 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 sekund, žádné maximum." + +#: mod/settings.php:939 +msgid "Number of items to display per page:" +msgstr "Počet položek zobrazených na stránce:" + +#: mod/settings.php:939 mod/settings.php:940 +msgid "Maximum of 100 items" +msgstr "Maximum 100 položek" + +#: mod/settings.php:940 +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:941 +msgid "Don't show emoticons" +msgstr "Nezobrazovat emotikony" + +#: mod/settings.php:942 +msgid "Don't show notices" +msgstr "Nezobrazovat oznámění" + +#: mod/settings.php:943 +msgid "Infinite scroll" +msgstr "Nekonečné posouvání" + +#: mod/settings.php:944 +msgid "Automatic updates only at the top of the network page" +msgstr "Automatické aktualizace pouze na hlavní stránce Síť." + +#: mod/settings.php:946 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Nastavení téma" + +#: mod/settings.php:1022 +msgid "User Types" +msgstr "Uživatelské typy" + +#: mod/settings.php:1023 +msgid "Community Types" +msgstr "Komunitní typy" + +#: mod/settings.php:1024 +msgid "Normal Account Page" +msgstr "Normální stránka účtu" + +#: mod/settings.php:1025 +msgid "This account is a normal personal profile" +msgstr "Tento účet je běžný osobní profil" + +#: mod/settings.php:1028 +msgid "Soapbox Page" +msgstr "Stránka \"Soapbox\"" + +#: mod/settings.php:1029 +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:1032 +msgid "Community Forum/Celebrity Account" +msgstr "Komunitní fórum/ účet celebrity" + +#: mod/settings.php:1033 +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:1036 +msgid "Automatic Friend Page" +msgstr "Automatická stránka přítele" + +#: mod/settings.php:1037 +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:1040 +msgid "Private Forum [Experimental]" +msgstr "Soukromé fórum [Experimentální]" + +#: mod/settings.php:1041 +msgid "Private forum - approved members only" +msgstr "Soukromé fórum - pouze pro schválené členy" + +#: mod/settings.php:1053 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1053 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." + +#: mod/settings.php:1063 +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:1069 +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:1077 +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:1081 include/acl_selectors.php:330 +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:1081 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí." + +#: mod/settings.php:1086 +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:1092 +msgid "Allow friends to tag your posts?" +msgstr "Povolit přátelům označovat Vaše příspěvky?" + +#: mod/settings.php:1098 +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:1104 +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:1112 +msgid "Profile is not published." +msgstr "Profil není zveřejněn." + +#: mod/settings.php:1120 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Vaše Identity adresa je \"%s\" nebo \"%s\"." + +#: mod/settings.php:1127 +msgid "Automatically expire posts after this many days:" +msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" + +#: mod/settings.php:1127 +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:1128 +msgid "Advanced expiration settings" +msgstr "Pokročilé nastavení expirací" + +#: mod/settings.php:1129 +msgid "Advanced Expiration" +msgstr "Nastavení expirací" + +#: mod/settings.php:1130 +msgid "Expire posts:" +msgstr "Expirovat příspěvky:" + +#: mod/settings.php:1131 +msgid "Expire personal notes:" +msgstr "Expirovat osobní poznámky:" + +#: mod/settings.php:1132 +msgid "Expire starred posts:" +msgstr "Expirovat příspěvky s hvězdou:" + +#: mod/settings.php:1133 +msgid "Expire photos:" +msgstr "Expirovat fotografie:" + +#: mod/settings.php:1134 +msgid "Only expire posts by others:" +msgstr "Přízpěvky expirovat pouze ostatními:" + +#: mod/settings.php:1160 +msgid "Account Settings" +msgstr "Nastavení účtu" + +#: mod/settings.php:1168 +msgid "Password Settings" +msgstr "Nastavení hesla" + +#: mod/settings.php:1169 mod/register.php:271 +msgid "New Password:" +msgstr "Nové heslo:" + +#: mod/settings.php:1170 mod/register.php:272 +msgid "Confirm:" +msgstr "Potvrďte:" + +#: mod/settings.php:1170 +msgid "Leave password fields blank unless changing" +msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" + +#: mod/settings.php:1171 +msgid "Current Password:" +msgstr "Stávající heslo:" + +#: mod/settings.php:1171 mod/settings.php:1172 +msgid "Your current password to confirm the changes" +msgstr "Vaše stávající heslo k potvrzení změn" + +#: mod/settings.php:1172 +msgid "Password:" +msgstr "Heslo: " + +#: mod/settings.php:1176 +msgid "Basic Settings" +msgstr "Základní nastavení" + +#: mod/settings.php:1177 include/identity.php:538 +msgid "Full Name:" +msgstr "Celé jméno:" + +#: mod/settings.php:1178 +msgid "Email Address:" +msgstr "E-mailová adresa:" + +#: mod/settings.php:1179 +msgid "Your Timezone:" +msgstr "Vaše časové pásmo:" + +#: mod/settings.php:1180 +msgid "Default Post Location:" +msgstr "Výchozí umístění příspěvků:" + +#: mod/settings.php:1181 +msgid "Use Browser Location:" +msgstr "Používat umístění dle prohlížeče:" + +#: mod/settings.php:1184 +msgid "Security and Privacy Settings" +msgstr "Nastavení zabezpečení a soukromí" + +#: mod/settings.php:1186 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximální počet žádostí o přátelství za den:" + +#: mod/settings.php:1186 mod/settings.php:1216 +msgid "(to prevent spam abuse)" +msgstr "(Aby se zabránilo spamu)" + +#: mod/settings.php:1187 +msgid "Default Post Permissions" +msgstr "Výchozí oprávnění pro příspěvek" + +#: mod/settings.php:1188 +msgid "(click to open/close)" +msgstr "(Klikněte pro otevření/zavření)" + +#: mod/settings.php:1197 mod/photos.php:1166 mod/photos.php:1538 +msgid "Show to Groups" +msgstr "Zobrazit ve Skupinách" + +#: mod/settings.php:1198 mod/photos.php:1167 mod/photos.php:1539 +msgid "Show to Contacts" +msgstr "Zobrazit v Kontaktech" + +#: mod/settings.php:1199 +msgid "Default Private Post" +msgstr "Výchozí Soukromý příspěvek" + +#: mod/settings.php:1200 +msgid "Default Public Post" +msgstr "Výchozí Veřejný příspěvek" + +#: mod/settings.php:1204 +msgid "Default Permissions for New Posts" +msgstr "Výchozí oprávnění pro nové příspěvky" + +#: mod/settings.php:1216 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum soukromých zpráv od neznámých lidí:" + +#: mod/settings.php:1219 +msgid "Notification Settings" +msgstr "Nastavení notifikací" + +#: mod/settings.php:1220 +msgid "By default post a status message when:" +msgstr "Defaultně posílat statusové zprávy když:" + +#: mod/settings.php:1221 +msgid "accepting a friend request" +msgstr "akceptuji požadavek na přátelství" + +#: mod/settings.php:1222 +msgid "joining a forum/community" +msgstr "připojující se k fóru/komunitě" + +#: mod/settings.php:1223 +msgid "making an interesting profile change" +msgstr "provedení zajímavé profilové změny" + +#: mod/settings.php:1224 +msgid "Send a notification email when:" +msgstr "Poslat notifikaci e-mailem, když" + +#: mod/settings.php:1225 +msgid "You receive an introduction" +msgstr "obdržíte žádost o propojení" + +#: mod/settings.php:1226 +msgid "Your introductions are confirmed" +msgstr "Vaše žádosti jsou potvrzeny" + +#: mod/settings.php:1227 +msgid "Someone writes on your profile wall" +msgstr "někdo Vám napíše na Vaši profilovou stránku" + +#: mod/settings.php:1228 +msgid "Someone writes a followup comment" +msgstr "někdo Vám napíše následný komentář" + +#: mod/settings.php:1229 +msgid "You receive a private message" +msgstr "obdržíte soukromou zprávu" + +#: mod/settings.php:1230 +msgid "You receive a friend suggestion" +msgstr "Obdržel jste návrh přátelství" + +#: mod/settings.php:1231 +msgid "You are tagged in a post" +msgstr "Jste označen v příspěvku" + +#: mod/settings.php:1232 +msgid "You are poked/prodded/etc. in a post" +msgstr "Byl Jste šťouchnout v příspěvku" + +#: mod/settings.php:1234 +msgid "Activate desktop notifications" +msgstr "Aktivovat upozornění na desktopu" + +#: mod/settings.php:1234 +msgid "Show desktop popup on new notifications" +msgstr "Zobrazit dektopové zprávy nových upozornění." + +#: mod/settings.php:1236 +msgid "Text-only notification emails" +msgstr "Pouze textové notifikační e-maily" + +#: mod/settings.php:1238 +msgid "Send text only notification emails, without the html part" +msgstr "Posílat pouze textové notifikační e-maily, bez html části." + +#: mod/settings.php:1240 +msgid "Advanced Account/Page Type Settings" +msgstr "Pokročilé nastavení účtu/stránky" + +#: mod/settings.php:1241 +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:1244 +msgid "Relocate" +msgstr "Změna umístění" + +#: mod/settings.php:1245 +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:1246 +msgid "Resend relocate message to contacts" +msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Toto pozvání již bylo přijato." + +#: 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/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/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/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/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Představení dokončeno." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Neopravitelná chyba protokolu" + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil není k dispozici." + +#: 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/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Ochrana proti spamu byla aktivována" + +#: 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/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Neplatný odkaz" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Neplatná emailová adresa" + +#: 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/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/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Již jste se zde zavedli." + +#: 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/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Neplatné URL profilu." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Nepovolené URL profilu." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Vaše žádost o propojení byla odeslána." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." + +#: 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/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Potvrdit" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Skrýt tento kontakt" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Vítejte doma %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Prosím potvrďte Vaši žádost o propojení %s." + +#: mod/dfrn_request.php:819 +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/dfrn_request.php:839 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "" + +#: mod/dfrn_request.php:842 +msgid "Friend/Connection Request" +msgstr "Požadavek o přátelství / kontaktování" + +#: mod/dfrn_request.php:843 +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/dfrn_request.php:851 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:852 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Federativní Sociální Web" + +#: mod/dfrn_request.php:854 +#, 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/register.php:92 +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/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
    login: %s
    heslo: %s

    Své heslo můžete změnit po přihlášení." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Vaši registraci nelze zpracovat." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Vaše registrace čeká na schválení vlastníkem serveru." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "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/register.php:216 +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/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Vaše OpenID (nepovinné): " + +#: mod/register.php:232 +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/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Členství na tomto webu je pouze na pozvání." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "Vaše pozvání ID:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vaše celé jméno (např. Jan Novák):" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Vaše e-mailová adresa:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Ponechte prázdné pro automatické vygenerovaní hesla." + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "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/register.php:274 +msgid "Choose a nickname: " +msgstr "Vyberte přezdívku:" + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrovat" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Import Vašeho profilu do této friendica instance" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systém vypnut z důvodů údržby" + +#: mod/search.php:100 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Vyhledávání" + +#: mod/search.php:198 +#, php-format +msgid "Items tagged with: %s" +msgstr "Položky označené s: %s" + +#: mod/search.php:200 +#, php-format +msgid "Search results for: %s" +msgstr "Výsledky hledání pro: %s" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Globální adresář" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Nalézt na tomto webu" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Adresář serveru" + +#: mod/directory.php:129 mod/profiles.php:747 +msgid "Age: " +msgstr "Věk: " + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Pohlaví: " + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "Status:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "Domácí stránka:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Žádné záznamy (některé položky mohou být skryty)." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Žádní potenciální delegáti stránky nenalezeni." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Správa delegátů stránky" + +#: 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/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Stávající správci stránky" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Stávající delegáti stránky " + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potenciální delegáti" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Přidat" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Žádné záznamy." + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Společní přátelé" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Žádné společné kontakty." + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Exportovat účet" + +#: 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 "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." + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Exportovat vše" + +#: 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 "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/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s je právě %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Nálada" + +#: 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/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Opravdu chcete smazat tento návrh?" + +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Návrhy přátel" + +#: mod/suggest.php:76 +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." + +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignorovat / skrýt" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil smazán." + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Nový profil vytvořen." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil není možné naklonovat." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Jméno profilu je povinné." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Rodinný Stav" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Romatický partner" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Libí se mi" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Nelibí se mi" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Práce/Zaměstnání" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Náboženství" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Politické přesvědčení" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Pohlaví" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Sexuální orientace" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Domácí stránka" + +#: mod/profiles.php:375 mod/profiles.php:695 +msgid "Interests" +msgstr "Zájmy" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Adresa" + +#: mod/profiles.php:386 mod/profiles.php:691 +msgid "Location" +msgstr "Lokace" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profil aktualizován." + +#: mod/profiles.php:565 +msgid " and " +msgstr " a " + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "veřejný profil" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s změnil %2$s na “%3$s”" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Navštivte %2$s uživatele %1$s" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s aktualizoval %2$s, změnou %3$s." + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "Skrýt kontakty a přátele:" + +#: mod/profiles.php:660 +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/profiles.php:682 +msgid "Edit Profile Details" +msgstr "Upravit podrobnosti profilu " + +#: mod/profiles.php:684 +msgid "Change Profile Photo" +msgstr "Změna Profilové fotky" + +#: mod/profiles.php:685 +msgid "View this profile" +msgstr "Zobrazit tento profil" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "Vytvořit nový profil pomocí tohoto nastavení" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "Klonovat tento profil" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "Smazat tento profil" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "Základní informace" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "Profilový obrázek" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "Nastavení" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "Statusové informace" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "Dodatečné informace" + +#: mod/profiles.php:697 +msgid "Profile Name:" +msgstr "Jméno profilu:" + +#: mod/profiles.php:698 +msgid "Your Full Name:" +msgstr "Vaše celé jméno:" + +#: mod/profiles.php:699 +msgid "Title/Description:" +msgstr "Název / Popis:" + +#: mod/profiles.php:700 +msgid "Your Gender:" +msgstr "Vaše pohlaví:" + +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "Narozeniny:" + +#: mod/profiles.php:702 +msgid "Street Address:" +msgstr "Ulice:" + +#: mod/profiles.php:703 +msgid "Locality/City:" +msgstr "Město:" + +#: mod/profiles.php:704 +msgid "Postal/Zip Code:" +msgstr "PSČ:" + +#: mod/profiles.php:705 +msgid "Country:" +msgstr "Země:" + +#: mod/profiles.php:706 +msgid "Region/State:" +msgstr "Region / stát:" + +#: mod/profiles.php:707 +msgid " Marital Status:" +msgstr " Rodinný stav:" + +#: mod/profiles.php:708 +msgid "Who: (if applicable)" +msgstr "Kdo: (pokud je možné)" + +#: mod/profiles.php:709 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" + +#: mod/profiles.php:710 +msgid "Since [date]:" +msgstr "Od [data]:" + +#: mod/profiles.php:711 include/identity.php:569 +msgid "Sexual Preference:" +msgstr "Sexuální preference:" + +#: mod/profiles.php:712 +msgid "Homepage URL:" +msgstr "Odkaz na domovskou stránku:" + +#: mod/profiles.php:713 include/identity.php:573 +msgid "Hometown:" +msgstr "Rodné město" + +#: mod/profiles.php:714 include/identity.php:577 +msgid "Political Views:" +msgstr "Politické přesvědčení:" + +#: mod/profiles.php:715 +msgid "Religious Views:" +msgstr "Náboženské přesvědčení:" + +#: mod/profiles.php:716 +msgid "Public Keywords:" +msgstr "Veřejná klíčová slova:" + +#: mod/profiles.php:717 +msgid "Private Keywords:" +msgstr "Soukromá klíčová slova:" + +#: mod/profiles.php:718 include/identity.php:585 +msgid "Likes:" +msgstr "Líbí se:" + +#: mod/profiles.php:719 include/identity.php:587 +msgid "Dislikes:" +msgstr "Nelibí se:" + +#: mod/profiles.php:720 +msgid "Example: fishing photography software" +msgstr "Příklad: fishing photography software" + +#: mod/profiles.php:721 +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/profiles.php:722 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" + +#: mod/profiles.php:723 +msgid "Tell us about yourself..." +msgstr "Řekněte nám něco o sobě ..." + +#: mod/profiles.php:724 +msgid "Hobbies/Interests" +msgstr "Koníčky/zájmy" + +#: mod/profiles.php:725 +msgid "Contact information and Social Networks" +msgstr "Kontaktní informace a sociální sítě" + +#: mod/profiles.php:726 +msgid "Musical interests" +msgstr "Hudební vkus" + +#: mod/profiles.php:727 +msgid "Books, literature" +msgstr "Knihy, literatura" + +#: mod/profiles.php:728 +msgid "Television" +msgstr "Televize" + +#: mod/profiles.php:729 +msgid "Film/dance/culture/entertainment" +msgstr "Film/tanec/kultura/zábava" + +#: mod/profiles.php:730 +msgid "Love/romance" +msgstr "Láska/romantika" + +#: mod/profiles.php:731 +msgid "Work/employment" +msgstr "Práce/zaměstnání" + +#: mod/profiles.php:732 +msgid "School/education" +msgstr "Škola/vzdělání" + +#: mod/profiles.php:737 +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." + +#: mod/profiles.php:800 +msgid "Edit/Manage Profiles" +msgstr "Upravit / Spravovat profily" + +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Změnit profilovou fotografii" + +#: mod/profiles.php:802 include/identity.php:232 +msgid "Create New Profile" +msgstr "Vytvořit nový profil" + +#: mod/profiles.php:813 include/identity.php:242 +msgid "Profile Image" +msgstr "Profilový obrázek" + +#: mod/profiles.php:815 include/identity.php:245 +msgid "visible to everybody" +msgstr "viditelné pro všechny" + +#: mod/profiles.php:816 include/identity.php:246 +msgid "Edit visibility" +msgstr "Upravit viditelnost" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Položka nenalezena" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Upravit příspěvek" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "nahrát fotky" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Přiložit soubor" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "přidat soubor" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "webový odkaz" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Zadejte odkaz na video" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "odkaz na video" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Zadejte odkaz na zvukový záznam" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "odkaz na audio" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Nastavte vaši polohu" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "nastavit místo" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Odstranit adresu v prohlížeči" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "vymazat místo" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Nastavení oprávnění" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "skrytá kopie: e-mailové adresy" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Veřejný příspěvek" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Nastavit titulek" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (čárkou oddělený seznam)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Příklad: bob@example.com, mary@example.com" + +#: mod/friendica.php:59 msgid "This is Friendica, version" msgstr "Toto je Friendica, verze" -#: ../../mod/friendica.php:60 +#: mod/friendica.php:60 msgid "running at web location" msgstr "běžící na webu" -#: ../../mod/friendica.php:62 +#: mod/friendica.php:62 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/friendica.php:64 +#: mod/friendica.php:64 msgid "Bug reports and issues: please visit" msgstr "Pro hlášení chyb a námětů na změny navštivte:" -#: ../../mod/friendica.php:65 +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 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/friendica.php:79 +#: mod/friendica.php:79 msgid "Installed plugins/addons/apps:" msgstr "Instalované pluginy/doplňky/aplikace:" -#: ../../mod/friendica.php:92 +#: mod/friendica.php:92 msgid "No installed plugins/addons/apps" msgstr "Nejsou žádné nainstalované doplňky/aplikace" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplikace" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Povolit připojení aplikacím" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Žádné nainstalované aplikace." +#: 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/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Nahrát nové fotografie" +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Pro pokračování se prosím přihlaste." -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontakt byl zablokován" +#: 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/photos.php:165 -msgid "Album not found." -msgstr "Album nenalezeno." +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Vzdálené soukromé informace nejsou k dispozici." -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Smazat album" +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Viditelné pro:" -#: ../../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/notes.php:44 include/identity.php:675 +msgid "Personal Notes" +msgstr "Osobní poznámky" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Smazat fotografii" +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Opravdu chcete smazat tuto fotografii?" +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Časová konverze" -#: ../../mod/photos.php:662 +#: 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" + +#: mod/localtime.php:30 #, 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" +msgid "UTC time: %s" +msgstr "UTC čas: %s" -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "fotografie" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Velikost obrázku překračuje limit velikosti" - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Není vybrána žádná fotografie" - -#: ../../mod/photos.php:1094 +#: mod/localtime.php:33 #, 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í." +msgid "Current timezone: %s" +msgstr "Aktuální časové pásmo: %s" -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Nahrání fotografií " +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Převedený lokální čas : %s" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Název nového alba: " +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Prosím, vyberte své časové pásmo:" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "nebo stávající název alba: " +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Šťouchanec" -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Nezobrazovat stav pro tento upload" +#: 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/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Oprávnění:" +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Příjemce" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Soukromé Fotografie" +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Vyberte, co si přejete příjemci udělat" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Veřejné Fotografie" +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Změnit tento příspěvek na soukromý" -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Edituj album" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Zobrazit nejprve nejnovější:" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Zobrazit nejprve nejstarší:" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Zobraz fotografii" - -#: ../../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/photos.php:1296 -msgid "Photo not available" -msgstr "Fotografie není k dispozici" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Zobrazit obrázek" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Editovat fotografii" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Použít jako profilovou fotografii" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Zobrazit v plné velikosti" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Štítky: " - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Odstranit všechny štítky]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Rotovat po směru hodinových ručiček (doprava)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Rotovat proti směru hodinových ručiček (doleva)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nové jméno alba" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Titulek" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Přidat štítek" - -#: ../../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/photos.php:1521 -msgid "Private photo" -msgstr "Soukromé fotografie" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Veřejné fotografie" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Aktuální fotografie" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Příspěvek byl vytvořen" - -#: ../../mod/follow.php:21 -msgid "You already added this contact." -msgstr "Již jste si tento kontakt přidali." - -#: ../../mod/follow.php:103 -msgid "Contact added" -msgstr "Kontakt přidán" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Přesunout účet" - -#: ../../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/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." - -#: ../../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/uimport.php:70 -msgid "Account file" -msgstr "Soubor s účtem" - -#: ../../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\"" - -#: ../../mod/invite.php:27 +#: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "Celkový limit pozvánek byl překročen" -#: ../../mod/invite.php:49 +#: mod/invite.php:49 #, php-format msgid "%s : Not a valid email address." msgstr "%s : není platná e-mailová adresa." -#: ../../mod/invite.php:73 +#: mod/invite.php:73 msgid "Please join us on Friendica" msgstr "Prosím přidejte se k nám na Friendice" -#: ../../mod/invite.php:84 +#: 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/invite.php:89 +#: mod/invite.php:89 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Doručení zprávy se nezdařilo." -#: ../../mod/invite.php:93 +#: mod/invite.php:93 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -6349,11 +5422,11 @@ msgstr[0] "%d zpráva odeslána." msgstr[1] "%d zprávy odeslány." msgstr[2] "%d zprávy odeslány." -#: ../../mod/invite.php:112 +#: mod/invite.php:112 msgid "You have no more invitations available" msgstr "Nemáte k dispozici žádné další pozvánky" -#: ../../mod/invite.php:120 +#: mod/invite.php:120 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -6361,14 +5434,14 @@ msgid "" " 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/invite.php:122 +#: mod/invite.php:122 #, php-format 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." -#: ../../mod/invite.php:123 +#: mod/invite.php:123 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -6377,1587 +5450,2628 @@ msgid "" "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/invite.php:126 +#: 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." -#: ../../mod/invite.php:132 +#: mod/invite.php:132 msgid "Send invitations" msgstr "Poslat pozvánky" -#: ../../mod/invite.php:133 +#: mod/invite.php:133 msgid "Enter email addresses, one per line:" msgstr "Zadejte e-mailové adresy, jednu na řádek:" -#: ../../mod/invite.php:135 +#: 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íť." -#: ../../mod/invite.php:137 +#: 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/invite.php:137 +#: 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:" -#: ../../mod/invite.php:139 +#: 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" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Přístup odmítnut" +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Fotogalerie kontaktu" -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nenalezen žádný platný účet." +#: mod/photos.php:84 include/identity.php:651 +msgid "Photo Albums" +msgstr "Fotoalba" -#: ../../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." +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Aktuální fotografie" -#: ../../mod/lostpass.php:42 +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Nahrát nové fotografie" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "Kontakt byl zablokován" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album nenalezeno." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Smazat album" + +#: mod/photos.php:220 +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/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Smazat fotografii" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Opravdu chcete smazat tuto fotografii?" + +#: mod/photos.php:684 +#, 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/photos.php:684 +msgid "a photo" +msgstr "fotografie" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Soubor obrázku je prázdný." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Není vybrána žádná fotografie" + +#: mod/photos.php:1114 +#, 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/photos.php:1149 +msgid "Upload Photos" +msgstr "Nahrání fotografií " + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Název nového alba: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "nebo stávající název alba: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Nezobrazovat stav pro tento upload" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Oprávnění:" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Soukromé Fotografie" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Veřejné Fotografie" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Edituj album" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Zobrazit nejprve nejnovější:" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Zobrazit nejprve nejstarší:" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Zobraz fotografii" + +#: mod/photos.php:1314 +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/photos.php:1316 +msgid "Photo not available" +msgstr "Fotografie není k dispozici" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Zobrazit obrázek" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Editovat fotografii" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Použít jako profilovou fotografii" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Zobrazit v plné velikosti" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Štítky: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Odstranit všechny štítky]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Nové jméno alba" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Titulek" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Přidat štítek" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Neotáčet" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Rotovat po směru hodinových ručiček (doprava)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Rotovat proti směru hodinových ručiček (doleva)" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Soukromé fotografie" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Veřejné fotografie" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Sdílet" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Nerozšířeně" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Účet schválen." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrace zrušena pro %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Přihlaste se, prosím." + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Přesunout účet" + +#: 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/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." + +#: 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/uimport.php:70 +msgid "Account file" +msgstr "Soubor s účtem" + +#: 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\"" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Položka není k dispozici." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Položka nebyla nalezena." + +#: boot.php:763 +msgid "Delete this item?" +msgstr "Odstranit tuto položku?" + +#: boot.php:766 +msgid "show fewer" +msgstr "zobrazit méně" + +#: boot.php:1140 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." + +#: boot.php:1247 +msgid "Create a New Account" +msgstr "Vytvořit nový účet" + +#: boot.php:1272 include/nav.php:73 +msgid "Logout" +msgstr "Odhlásit se" + +#: boot.php:1275 +msgid "Nickname or Email address: " +msgstr "Přezdívka nebo e-mailová adresa:" + +#: boot.php:1276 +msgid "Password: " +msgstr "Heslo: " + +#: boot.php:1277 +msgid "Remember me" +msgstr "Pamatuj si mne" + +#: boot.php:1280 +msgid "Or login using OpenID: " +msgstr "Nebo přihlášení pomocí OpenID: " + +#: boot.php:1286 +msgid "Forgot your password?" +msgstr "Zapomněli jste své heslo?" + +#: boot.php:1289 +msgid "Website Terms of Service" +msgstr "Podmínky použití serveru" + +#: boot.php:1290 +msgid "terms of service" +msgstr "podmínky použití" + +#: boot.php:1292 +msgid "Website Privacy Policy" +msgstr "Pravidla ochrany soukromí serveru" + +#: boot.php:1293 +msgid "privacy policy" +msgstr "Ochrana soukromí" + +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Tento záznam byl editován" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "ignorovat vlákno" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "přestat ignorovat vlákno" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "přepnout stav Ignorování" + +#: object/Item.php:214 +msgid "ignored" +msgstr "ignorován" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Kategorie:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Vyplněn pod:" + +#: object/Item.php:331 +msgid "via" +msgstr "přes" + +#: 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 "\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." + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Chybová zpráva je\n[pre]%s[/pre]" + +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Při vytváření databázových tabulek došlo k chybám." + +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Při provádění databázových změn došlo k chybám." + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Odhlášen." + +#: include/auth.php:128 include/user.php:75 +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ě. " + +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Chybová zpráva byla:" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Přidat nový kontakt" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Zadejte adresu nebo umístění webu" + +#: 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" + +#: 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" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Nalézt lidi" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Zadejte jméno nebo zájmy" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Připojit / Následovat" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Příklady: Robert Morgenstein, rybaření" + +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Podobné zájmy" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Náhodný Profil" + +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Pozvat přátele" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Sítě" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Všechny sítě" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "Uložené složky" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Všechno" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorie" + +#: include/features.php:23 +msgid "General Features" +msgstr "Obecné funkčnosti" + +#: include/features.php:25 +msgid "Multiple Profiles" +msgstr "Vícenásobné profily" + +#: include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Schopnost vytvořit vícenásobné profily" + +#: include/features.php:30 +msgid "Post Composition Features" +msgstr "Nastavení vytváření příspěvků" + +#: include/features.php:31 +msgid "Richtext Editor" +msgstr "Richtext Editor" + +#: include/features.php:31 +msgid "Enable richtext editor" +msgstr "Povolit richtext editor" + +#: include/features.php:32 +msgid "Post Preview" +msgstr "Náhled příspěvku" + +#: 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" + +#: include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Automaticky zmíněná Fóra" + +#: include/features.php:33 +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ě" + +#: include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Síťové postranní widgety" + +#: include/features.php:39 +msgid "Search by Date" +msgstr "Vyhledávat 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" + +#: include/features.php:40 +msgid "Group Filter" +msgstr "Skupinový Filtr" + +#: 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" + +#: include/features.php:41 +msgid "Network Filter" +msgstr "Síťový Filtr" + +#: 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ě" + +#: include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Uložit kritéria vyhledávání pro znovupoužití" + +#: include/features.php:47 +msgid "Network Tabs" +msgstr "Síťové záložky" + +#: include/features.php:48 +msgid "Network Personal Tab" +msgstr "Osobní síťový záložka " + +#: 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 " + +#: include/features.php:49 +msgid "Network New Tab" +msgstr "Nová záložka síť" + +#: 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)" + +#: include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "záložka Síťové sdílené odkazy " + +#: 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ě" + +#: include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Nástroje Příspěvků/Komentářů" + +#: include/features.php:56 +msgid "Multiple Deletion" +msgstr "Násobné mazání" + +#: include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Označit a smazat více " + +#: include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Editovat Odeslané příspěvky" + +#: 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í" + +#: include/features.php:58 +msgid "Tagging" +msgstr "Štítkování" + +#: 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" + +#: include/features.php:59 +msgid "Post Categories" +msgstr "Kategorie příspěvků" + +#: include/features.php:59 +msgid "Add categories to your posts" +msgstr "Přidat kategorie k Vašim příspěvkům" + +#: include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Možnost řadit příspěvky do složek" + +#: include/features.php:61 +msgid "Dislike Posts" +msgstr "Označit příspěvky jako neoblíbené" + +#: include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" + +#: include/features.php:62 +msgid "Star Posts" +msgstr "Příspěvky s hvězdou" + +#: 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" + +#: include/features.php:63 +msgid "Mute Post Notifications" +msgstr "Utlumit upozornění na přísvěvky" + +#: include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "Možnost stlumit upozornění pro vlákno" + +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "Chybí URL adresa." + +#: include/follow.php:102 +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." + +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." + +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." + +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Autor nebo jméno nenalezeno" + +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Této adrese neodpovídá žádné URL prohlížeče." + +#: include/follow.php:129 +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." + +#: include/follow.php:130 +msgid "Use mailto: in front of address to force email check." +msgstr "Použite mailo: před adresou k vynucení emailové kontroly." + +#: include/follow.php:136 +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." + +#: include/follow.php:146 +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í." + +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "Nepodařilo se získat kontaktní informace." + +#: include/follow.php:302 +msgid "following" +msgstr "následující" + +#: 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." + +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Defaultní soukromá skrupina pro nové kontakty." + +#: include/group.php:226 +msgid "Everybody" +msgstr "Všichni" + +#: include/group.php:249 +msgid "edit" +msgstr "editovat" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Editovat skupinu" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Vytvořit novou skupinu" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Kontakty, které nejsou v žádné skupině" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Různé" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:256 +msgid "never" +msgstr "nikdy" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "méně než před sekundou" + +#: include/datetime.php:272 +msgid "year" +msgstr "rok" + +#: include/datetime.php:272 +msgid "years" +msgstr "let" + +#: include/datetime.php:273 +msgid "month" +msgstr "měsíc" + +#: include/datetime.php:273 +msgid "months" +msgstr "měsíců" + +#: include/datetime.php:274 +msgid "week" +msgstr "týdnem" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "týdny" + +#: include/datetime.php:275 +msgid "day" +msgstr "den" + +#: include/datetime.php:275 +msgid "days" +msgstr "dnů" + +#: include/datetime.php:276 +msgid "hour" +msgstr "hodina" + +#: include/datetime.php:276 +msgid "hours" +msgstr "hodin" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minuta" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minut" + +#: include/datetime.php:278 +msgid "second" +msgstr "sekunda" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "sekund" + +#: include/datetime.php:287 +#, php-format +msgid "%1$d %2$s ago" +msgstr "před %1$d %2$s" + +#: include/datetime.php:459 include/items.php:2431 +#, php-format +msgid "%s's birthday" +msgstr "%s má narozeniny" + +#: include/datetime.php:460 include/items.php:2432 +#, php-format +msgid "Happy Birthday %s" +msgstr "Veselé narozeniny %s" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Požadovaný účet není dostupný." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "Upravit profil" + +#: include/identity.php:220 +msgid "Message" +msgstr "Zpráva" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profily" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Spravovat/upravit profily" + +#: include/identity.php:341 +msgid "Network:" +msgstr "Síť:" + +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "d. F" + +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "[Dnes]" + +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "Připomínka narozenin" + +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "Narozeniny tento týden:" + +#: include/identity.php:493 +msgid "[No description]" +msgstr "[Žádný popis]" + +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "Připomenutí událostí" + +#: include/identity.php:518 +msgid "Events this week:" +msgstr "Události tohoto týdne:" + +#: include/identity.php:545 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:546 +msgid "j F" +msgstr "j F" + +#: include/identity.php:553 +msgid "Birthday:" +msgstr "Narozeniny:" + +#: include/identity.php:557 +msgid "Age:" +msgstr "Věk:" + +#: include/identity.php:566 +#, php-format +msgid "for %1$d %2$s" +msgstr "pro %1$d %2$s" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "Náboženství:" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "Koníčky/zájmy:" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "Kontaktní informace a sociální sítě:" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "Hudební vkus:" + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "Knihy, literatura:" + +#: include/identity.php:596 +msgid "Television:" +msgstr "Televize:" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/tanec/kultura/zábava:" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "Láska/romance" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "Práce/zaměstnání:" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "Škola/vzdělávání:" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "Stav" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "Statusové zprávy a příspěvky " + +#: include/identity.php:643 +msgid "Profile Details" +msgstr "Detaily profilu" + +#: include/identity.php:656 include/identity.php:659 include/nav.php:79 +msgid "Videos" +msgstr "Videa" + +#: include/identity.php:670 +msgid "Events and Calendar" +msgstr "Události a kalendář" + +#: include/identity.php:678 +msgid "Only You Can See This" +msgstr "Toto můžete vidět jen Vy" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Poslat příspěvek na e-mail" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "show" +msgstr "zobrazit" + +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "nikdy nezobrazit" + +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[bez předmětu]" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "následování zastaveno" + +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" +msgstr "Šťouchnout" + +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" +msgstr "Zobrazit Status" + +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "Zobrazit Profil" + +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "Zobrazit Fotky" + +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "Zobrazit Příspěvky sítě" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "Editovat Kontakty" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Odstranit kontakt" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "Poslat soukromou zprávu" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Vítejte " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Prosím nahrejte profilovou fotografii" + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Vítejte zpět " + +#: include/security.php:375 +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." + +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2032 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "událost" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s šťouchnul %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "příspěvek/položka" + +#: include/conversation.php:291 +#, 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" + +#: include/conversation.php:771 +msgid "remove" +msgstr "odstranit" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Smazat vybrané položky" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Následovat vlákno" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s se to líbí." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s se to nelíbí." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d lidem se to líbí" + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d lidem se to nelíbí" + +#: include/conversation.php:965 +msgid "and" +msgstr "a" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr ", a %d dalších lidí" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s se to líbí." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s se to nelíbí." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Viditelné pro všechny" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Prosím zadejte URL adresu videa:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Prosím zadejte URL adresu zvukového záznamu:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Štítek:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Kde právě jste?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Smazat položku(y)?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "oprávnění" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Zveřejnit na Groups" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Zveřejnit na Groups" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Soukromý příspěvek" + +#: include/network.php:959 +msgid "view full size" +msgstr "zobrazit v plné velikosti" + +#: include/text.php:299 +msgid "newer" +msgstr "novější" + +#: include/text.php:301 +msgid "older" +msgstr "starší" + +#: include/text.php:306 +msgid "prev" +msgstr "předchozí" + +#: include/text.php:308 +msgid "first" +msgstr "první" + +#: include/text.php:340 +msgid "last" +msgstr "poslední" + +#: include/text.php:343 +msgid "next" +msgstr "další" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "Načítání více záznamů..." + +#: include/text.php:399 +msgid "The end" +msgstr "Konec" + +#: include/text.php:890 +msgid "No contacts" +msgstr "Žádné kontakty" + +#: include/text.php:905 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktů" +msgstr[2] "%d kontaktů" + +#: include/text.php:1003 include/nav.php:122 +msgid "Full Text" +msgstr "Celý text" + +#: include/text.php:1004 include/nav.php:123 +msgid "Tags" +msgstr "Štítky:" + +#: include/text.php:1008 include/nav.php:127 +msgid "Forums" +msgstr "Fóra" + +#: include/text.php:1058 +msgid "poke" +msgstr "šťouchnout" + +#: include/text.php:1058 +msgid "poked" +msgstr "šťouchnut" + +#: include/text.php:1059 +msgid "ping" +msgstr "cinknout" + +#: include/text.php:1059 +msgid "pinged" +msgstr "cinkut" + +#: include/text.php:1060 +msgid "prod" +msgstr "pobídnout" + +#: include/text.php:1060 +msgid "prodded" +msgstr "pobídnut" + +#: include/text.php:1061 +msgid "slap" +msgstr "dát facku" + +#: include/text.php:1061 +msgid "slapped" +msgstr "být uhozen" + +#: include/text.php:1062 +msgid "finger" +msgstr "osahávat" + +#: include/text.php:1062 +msgid "fingered" +msgstr "osaháván" + +#: include/text.php:1063 +msgid "rebuff" +msgstr "odmítnout" + +#: include/text.php:1063 +msgid "rebuffed" +msgstr "odmítnut" + +#: include/text.php:1077 +msgid "happy" +msgstr "šťasný" + +#: include/text.php:1078 +msgid "sad" +msgstr "smutný" + +#: include/text.php:1079 +msgid "mellow" +msgstr "jemný" + +#: include/text.php:1080 +msgid "tired" +msgstr "unavený" + +#: include/text.php:1081 +msgid "perky" +msgstr "emergický" + +#: include/text.php:1082 +msgid "angry" +msgstr "nazlobený" + +#: include/text.php:1083 +msgid "stupified" +msgstr "otupen" + +#: include/text.php:1084 +msgid "puzzled" +msgstr "popletený" + +#: include/text.php:1085 +msgid "interested" +msgstr "zajímavý" + +#: include/text.php:1086 +msgid "bitter" +msgstr "hořký" + +#: include/text.php:1087 +msgid "cheerful" +msgstr "radnostný" + +#: include/text.php:1088 +msgid "alive" +msgstr "naživu" + +#: include/text.php:1089 +msgid "annoyed" +msgstr "otráven" + +#: include/text.php:1090 +msgid "anxious" +msgstr "znepokojený" + +#: include/text.php:1091 +msgid "cranky" +msgstr "mrzutý" + +#: include/text.php:1092 +msgid "disturbed" +msgstr "vyrušen" + +#: include/text.php:1093 +msgid "frustrated" +msgstr "frustrovaný" + +#: include/text.php:1094 +msgid "motivated" +msgstr "motivovaný" + +#: include/text.php:1095 +msgid "relaxed" +msgstr "uvolněný" + +#: include/text.php:1096 +msgid "surprised" +msgstr "překvapený" + +#: include/text.php:1266 +msgid "Monday" +msgstr "Pondělí" + +#: include/text.php:1266 +msgid "Tuesday" +msgstr "Úterý" + +#: include/text.php:1266 +msgid "Wednesday" +msgstr "Středa" + +#: include/text.php:1266 +msgid "Thursday" +msgstr "Čtvrtek" + +#: include/text.php:1266 +msgid "Friday" +msgstr "Pátek" + +#: include/text.php:1266 +msgid "Saturday" +msgstr "Sobota" + +#: include/text.php:1266 +msgid "Sunday" +msgstr "Neděle" + +#: include/text.php:1270 +msgid "January" +msgstr "Ledna" + +#: include/text.php:1270 +msgid "February" +msgstr "Února" + +#: include/text.php:1270 +msgid "March" +msgstr "Března" + +#: include/text.php:1270 +msgid "April" +msgstr "Dubna" + +#: include/text.php:1270 +msgid "May" +msgstr "Května" + +#: include/text.php:1270 +msgid "June" +msgstr "Června" + +#: include/text.php:1270 +msgid "July" +msgstr "Července" + +#: include/text.php:1270 +msgid "August" +msgstr "Srpna" + +#: include/text.php:1270 +msgid "September" +msgstr "Září" + +#: include/text.php:1270 +msgid "October" +msgstr "Října" + +#: include/text.php:1270 +msgid "November" +msgstr "Listopadu" + +#: include/text.php:1270 +msgid "December" +msgstr "Prosinec" + +#: include/text.php:1492 +msgid "bytes" +msgstr "bytů" + +#: include/text.php:1524 include/text.php:1536 +msgid "Click to open/close" +msgstr "Klikněte pro otevření/zavření" + +#: include/text.php:1710 +msgid "View on separate page" +msgstr "Zobrazit na separátní stránce" + +#: include/text.php:1711 +msgid "view on separate page" +msgstr "Zobrazit na separátní stránce" + +#: include/text.php:1768 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "standardní" + +#: include/text.php:1780 +msgid "Select an alternate language" +msgstr "Vyběr alternativního jazyka" + +#: include/text.php:2036 +msgid "activity" +msgstr "aktivita" + +#: include/text.php:2039 +msgid "post" +msgstr "příspěvek" + +#: include/text.php:2207 +msgid "Item filed" +msgstr "Položka vyplněna" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Obrázek/fotografie" + +#: include/bbcode.php:556 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:590 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s napsal následující příspěvek" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 napsal:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Šifrovaný obsah" + +#: include/notifier.php:830 include/delivery.php:456 +msgid "(no subject)" +msgstr "(Bez předmětu)" + +#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 +msgid "noreply" +msgstr "neodpovídat" + +#: 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'" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Neznámé | Nezařazeno" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Okamžitě blokovat " + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "pochybný, spammer, self-makerter" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Znám ho ale, ale bez rozhodnutí" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, pravděpodobně neškodný" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Renomovaný, má mou důvěru" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Týdenně" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Měsíčně" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora konektor" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr " na Last.fm" + +#: include/bb2diaspora.php:154 include/event.php:22 +msgid "Starts:" +msgstr "Začíná:" + +#: include/bb2diaspora.php:162 include/event.php:32 +msgid "Finishes:" +msgstr "Končí:" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Klikněte zde pro aktualizaci." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Tato akce překročí limit nastavené Vaším předplatným." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Tato akce není v rámci Vašeho předplatného dostupná." + +#: include/nav.php:73 +msgid "End this session" +msgstr "Konec této relace" + +#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Vaše příspěvky a konverzace" + +#: include/nav.php:77 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Vaše profilová stránka" + +#: include/nav.php:78 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Vaše fotky" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "Vaše videa" + +#: include/nav.php:80 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Vaše události" + +#: include/nav.php:81 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Osobní poznámky" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Vaše osobní poznámky" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Přihlásit se" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Domácí stránka" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Vytvořit účet" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Nápověda a dokumentace" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Aplikace" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Doplňkové aplikace, nástroje, hry" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Hledání na stránkách tohoto webu" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Konverzace na tomto webu" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Konverzace v síti" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Adresář" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Adresář" + +#: include/nav.php:143 +msgid "Information" +msgstr "Informace" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informace o této instanci Friendica" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Konverzace od Vašich přátel" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Síťový Reset" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Načíst stránku Síť bez filtrů" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Žádosti přátel" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Zobrazit všechny upozornění" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Označit všechny upozornění systému jako přečtené" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Soukromá pošta" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "Doručená pošta" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Odeslaná pošta" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Spravovat" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Spravovat jiné stránky" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Nastavení účtu" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Spravovat/Editovat Profily" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Spravovat/upravit přátelé a kontakty" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Nastavení webu a konfigurace" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigace" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Mapa webu" + +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1141 include/api.php:1143 +msgid "User not found." +msgstr "Uživatel nenalezen" + +#: include/api.php:795 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." + +#: include/api.php:814 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." + +#: include/api.php:833 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut." + +#: include/api.php:1350 +msgid "There is no status with this id." +msgstr "Není tu žádný status s tímto id." + +#: include/api.php:1424 +msgid "There is no conversation with this id." +msgstr "Nemáme žádnou konverzaci s tímto id." + +#: include/api.php:1703 +msgid "Invalid item." +msgstr "Neplatná položka." + +#: include/api.php:1713 +msgid "Invalid action. " +msgstr "Neplatná akce" + +#: include/api.php:1721 +msgid "DB error" +msgstr "DB chyba" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Pozvánka je vyžadována." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Pozvánka nemohla být ověřena." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Neplatný odkaz OpenID" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Zadejte prosím požadované informace." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Použijte prosím kratší jméno." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Jméno je příliš krátké." + +#: include/user.php:113 +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í)." + +#: include/user.php:118 +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." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Neplatná e-mailová adresa." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Tento e-mail nelze použít." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\"." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Přezdívka je již registrována. Prosím vyberte jinou." + +#: include/user.php:156 +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." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." + +#: include/user.php:265 +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." + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Přátelé" + +#: include/user.php:385 #, 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 "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti." +"\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/lostpass.php:53 +#: include/user.php:389 #, 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" +"\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\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" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Na %s bylo zažádáno o resetování hesla" - -#: ../../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." - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Vaše heslo bylo na Vaše přání resetováno." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Někdo Vám napsal na Vaši profilovou stránku" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Uložte si nebo zkopírujte nové heslo - a pak" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "klikněte zde pro přihlášení" - -#: ../../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í)." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" "\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" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" +"\t\tPlease take a few moments to review the other account settings on that page.\n" "\n" -"\t\t\t\tYour login details are as follows:\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\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" +"\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\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" +"\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 "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s." -#: ../../mod/lostpass.php:147 +#: include/diaspora.php:717 +msgid "Sharing notification from Diaspora network" +msgstr "Sdílení oznámení ze sítě Diaspora" + +#: include/diaspora.php:2560 +msgid "Attachments:" +msgstr "Přílohy:" + +#: include/items.php:4852 +msgid "Do you really want to delete this item?" +msgstr "Opravdu chcete smazat tuto položku?" + +#: include/items.php:5127 +msgid "Archives" +msgstr "Archív" + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Muž" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Žena" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "V současné době muž" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "V současné době žena" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Většinou muž" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Většinou žena" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexuál" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodit" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutrál" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nespecifikováno" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Jiné" + +#: include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nerozhodnuto" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Muži" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Ženy" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbička" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Bez preferencí" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuál" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexuál" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "panic/panna" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetišista" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Hodně" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nesexuální" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Svobodný" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Osamnělý" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Dostupný" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nedostupný" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Zamilovaný" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Zabouchnutý" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Seznamující se" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Nevěrný" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Závislý na sexu" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Přátelé / výhody" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ležérní" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Zadaný" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Ženatý/vdaná" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Pomyslně ženatý/vdaná" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partneři" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Žijící ve společné domácnosti" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Zvykové právo" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Šťastný" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nehledající" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Zrazen" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Odloučený" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Nestálý" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Rozvedený(á)" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Pomyslně rozvedený" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Ovdovělý(á)" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Nejistý" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Je to složité" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Nezajímá" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Zeptej se mě" + +#: include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica Notifikace" + +#: include/enotify.php:21 +msgid "Thank You," +msgstr "Děkujeme, " + +#: include/enotify.php:23 #, php-format -msgid "Your password has been changed at %s" -msgstr "Vaše heslo bylo změněno na %s" +msgid "%s Administrator" +msgstr "%s Administrátor" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Zapomněli jste heslo?" - -#: ../../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." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Přezdívka nebo e-mail: " - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Reset" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Zdrojový text (bbcode):" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Zdrojový vstup: " - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Vstupní data (ve formátu Diaspora): " - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/p.php:9 -msgid "Not Extended" -msgstr "Nerozšířeně" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Štítek odstraněn" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Odebrat štítek položky" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Vyberte štítek k odebrání: " - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Odstranit můj účet" - -#: ../../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." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Prosím, zadejte své heslo pro ověření:" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Neplatný identifikátor profilu." - -#: ../../mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor viditelnosti profilu " - -#: ../../mod/profperm.php:115 -msgid "Visible To" -msgstr "Viditelný pro" - -#: ../../mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Shoda profilu" - -#: ../../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/match.php:62 -msgid "is interested in:" -msgstr "zajímá se o:" - -#: ../../mod/events.php:68 ../../mod/events.php:70 -msgid "Event title and start time are required." -msgstr "Název události a datum začátku jsou vyžadovány." - -#: ../../mod/events.php:303 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:325 -msgid "Edit event" -msgstr "Editovat událost" - -#: ../../mod/events.php:383 -msgid "Create New Event" -msgstr "Vytvořit novou událost" - -#: ../../mod/events.php:384 -msgid "Previous" -msgstr "Předchozí" - -#: ../../mod/events.php:385 ../../mod/install.php:207 -msgid "Next" -msgstr "Dále" - -#: ../../mod/events.php:458 -msgid "hour:minute" -msgstr "hodina:minuta" - -#: ../../mod/events.php:468 -msgid "Event details" -msgstr "Detaily události" - -#: ../../mod/events.php:469 +#: include/enotify.php:64 #, 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." +msgid "%s " +msgstr "%s " -#: ../../mod/events.php:471 -msgid "Event Starts:" -msgstr "Událost začíná:" - -#: ../../mod/events.php:471 ../../mod/events.php:485 -msgid "Required" -msgstr "Vyžadováno" - -#: ../../mod/events.php:474 -msgid "Finish date/time is not known or not relevant" -msgstr "Datum/čas konce není zadán nebo není relevantní" - -#: ../../mod/events.php:476 -msgid "Event Finishes:" -msgstr "Akce končí:" - -#: ../../mod/events.php:479 -msgid "Adjust for viewer timezone" -msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" - -#: ../../mod/events.php:481 -msgid "Description:" -msgstr "Popis:" - -#: ../../mod/events.php:485 -msgid "Title:" -msgstr "Název:" - -#: ../../mod/events.php:487 -msgid "Share this event" -msgstr "Sdílet tuto událost" - -#: ../../mod/ping.php:210 ../../mod/ping.php:234 -msgid "{0} wants to be your friend" -msgstr "{0} chce být Vaším přítelem" - -#: ../../mod/ping.php:215 ../../mod/ping.php:239 -msgid "{0} sent you a message" -msgstr "{0} vám poslal zprávu" - -#: ../../mod/ping.php:220 ../../mod/ping.php:244 -msgid "{0} requested registration" -msgstr "{0} požaduje registraci" - -#: ../../mod/ping.php:250 +#: include/enotify.php:78 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} komentoval příspěvek uživatele %s" +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" -#: ../../mod/ping.php:255 +#: include/enotify.php:80 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} má rád příspěvek uživatele %s" +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/ping.php:260 +#: include/enotify.php:81 #, php-format -msgid "{0} disliked %s's post" -msgstr "{0} nemá rád příspěvek uživatele %s" +msgid "%1$s sent you %2$s." +msgstr "%1$s Vám poslal %2$s." -#: ../../mod/ping.php:265 +#: include/enotify.php:81 +msgid "a private message" +msgstr "soukromá zpráva" + +#: include/enotify.php:82 #, php-format -msgid "{0} is now friends with %s" -msgstr "{0} se skamarádil s %s" +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/ping.php:270 -msgid "{0} posted" -msgstr "{0} zasláno" - -#: ../../mod/ping.php:275 +#: include/enotify.php:134 #, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} označen %s' příspěvek s #%s" +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" -#: ../../mod/ping.php:281 -msgid "{0} mentioned you in a post" -msgstr "{0} vás zmínil v příspěvku" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Nálada" - -#: ../../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/search.php:174 ../../mod/community.php:62 -#: ../../mod/community.php:71 -msgid "No results." -msgstr "Žádné výsledky." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Nepodařilo se najít kontaktní informace." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Opravdu chcete smazat tuto zprávu?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Zpráva odstraněna." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Konverzace odstraněna." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Žádné zprávy." - -#: ../../mod/message.php:378 +#: include/enotify.php:141 #, php-format -msgid "Unknown sender - %s" -msgstr "Neznámý odesilatel - %s" +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/message.php:381 +#: include/enotify.php:149 #, php-format -msgid "You and %s" -msgstr "Vy a %s" +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/message.php:384 +#: include/enotify.php:159 #, php-format -msgid "%s and You" -msgstr "%s a Vy" +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Odstranit konverzaci" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D M R - g:i A" - -#: ../../mod/message.php:411 +#: include/enotify.php:160 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d zpráva" -msgstr[1] "%d zprávy" -msgstr[2] "%d zpráv" +msgid "%s commented on an item/conversation you have been following." +msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Zpráva není k dispozici." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Smazat zprávu" - -#: ../../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." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Poslat odpověď" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Není k dispozici." - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profil nenalezen" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil smazán." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nový profil vytvořen." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil není možné naklonovat." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Jméno profilu je povinné." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Rodinný Stav" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Romatický partner" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Libí se mi" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Nelibí se mi" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Práce/Zaměstnání" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Náboženství" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Politické přesvědčení" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Pohlaví" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Sexuální orientace" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Domácí stránka" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Zájmy" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adresa" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Lokace" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profil aktualizován." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " a " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "veřejný profil" - -#: ../../mod/profiles.php:579 +#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 +#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s změnil %2$s na “%3$s”" +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/profiles.php:580 +#: include/enotify.php:170 #, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Navštivte %2$s uživatele %1$s" +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" -#: ../../mod/profiles.php:583 +#: include/enotify.php:172 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s aktualizoval %2$s, změnou %3$s." +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/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "Skrýt kontakty a přátele:" - -#: ../../mod/profiles.php:663 -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/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Upravit podrobnosti profilu " - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Změna Profilové fotky" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Zobrazit tento profil" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Vytvořit nový profil pomocí tohoto nastavení" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Klonovat tento profil" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Smazat tento profil" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Základní informace" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Profilový obrázek" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Nastavení" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Statusové informace" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Dodatečné informace" - -#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Nahrát profilovou fotografii" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Jméno profilu:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Vaše celé jméno:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Název / Popis:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Vaše pohlaví:" - -#: ../../mod/profiles.php:704 +#: include/enotify.php:174 #, php-format -msgid "Birthday (%s):" -msgstr "Narozeniny uživatele (%s):" +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/profiles.php:705 -msgid "Street Address:" -msgstr "Ulice:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Město:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "PSČ:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Země:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Region / stát:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Rodinný stav:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Kdo: (pokud je možné)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Od [data]:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Odkaz na domovskou stránku:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Náboženské přesvědčení:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Veřejná klíčová slova:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Soukromá klíčová slova:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Příklad: fishing photography software" - -#: ../../mod/profiles.php:724 -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/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Řekněte nám něco o sobě ..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Koníčky/zájmy" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Kontaktní informace a sociální sítě" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Hudební vkus" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Knihy, literatura" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televize" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Film/tanec/kultura/zábava" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Láska/romantika" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Práce/zaměstnání" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Škola/vzdělání" - -#: ../../mod/profiles.php:740 -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." - -#: ../../mod/profiles.php:750 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Věk: " - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Upravit / Spravovat profily" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Komunikační server - Nastavení" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Nelze se připojit k databázi." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Nelze vytvořit tabulku." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Vaše databáze Friendica byla nainstalována." - -#: ../../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." - -#: ../../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\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Testování systému" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Otestovat znovu" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Databázové spojení" - -#: ../../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/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/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/install.php:234 -msgid "Database Server Name" -msgstr "Jméno databázového serveru" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Přihlašovací jméno k databázi" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Heslo k databázovému účtu " - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Jméno databáze" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Emailová adresa administrátora webu" - -#: ../../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í." - -#: ../../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/install.php:267 -msgid "Site settings" -msgstr "Nastavení webu" - -#: ../../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/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/install.php:326 -msgid "PHP executable path" -msgstr "Cesta k \"PHP executable\"" - -#: ../../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/install.php:331 -msgid "Command line PHP" -msgstr "Příkazový řádek PHP" - -#: ../../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/install.php:341 -msgid "Found PHP version: " -msgstr "Nalezena PHP verze:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: ../../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/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/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" - -#: ../../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/install.php:381 -msgid "Generate encryption keys" -msgstr "Generovat kriptovací klíče" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP modul" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP modul" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP modul" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP modul" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP modul" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul" - -#: ../../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/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." - -#: ../../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/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." - -#: ../../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/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/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/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/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/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php je editovatelné" - -#: ../../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/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/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/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/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 je nastaven pro zápis" - -#: ../../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/install.php:474 -msgid "Url rewrite is working" -msgstr "Url rewrite je funkční." - -#: ../../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/install.php:523 -msgid "

    What next

    " -msgstr "

    Co dál

    " - -#: ../../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/help.php:31 -msgid "Help:" -msgstr "Nápověda:" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Nastavení kontaktu změněno" - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Aktualizace kontaktu selhala." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Opravit nastavení kontaktu" - -#: ../../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." - -#: ../../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." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Návrat k editoru kontaktu" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "Žádné zrcadlení" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "Zrcadlit pro přeposlané příspěvky" - -#: ../../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:168 -msgid "Refetch contact data" -msgstr "Znovu načíst data kontaktu" - -#: ../../mod/crepair.php:170 -msgid "Account Nickname" -msgstr "Přezdívka účtu" - -#: ../../mod/crepair.php:171 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" - -#: ../../mod/crepair.php:172 -msgid "Account URL" -msgstr "URL adresa účtu" - -#: ../../mod/crepair.php:173 -msgid "Friend Request URL" -msgstr "Žádost o přátelství URL" - -#: ../../mod/crepair.php:174 -msgid "Friend Confirm URL" -msgstr "URL adresa potvrzení přátelství" - -#: ../../mod/crepair.php:175 -msgid "Notification Endpoint URL" -msgstr "Notifikační URL adresa" - -#: ../../mod/crepair.php:176 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL adresa" - -#: ../../mod/crepair.php:177 -msgid "New photo from this URL" -msgstr "Nové foto z této URL adresy" - -#: ../../mod/crepair.php:178 -msgid "Remote Self" -msgstr "Remote Self" - -#: ../../mod/crepair.php:180 -msgid "Mirror postings from this contact" -msgstr "Zrcadlení správ od tohoto kontaktu" - -#: ../../mod/crepair.php:180 -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." - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Vítejte na Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Seznam doporučení pro nového člena" - -#: ../../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." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Začínáme" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Prohlídka Friendica " - -#: ../../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." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Navštivte své nastavení" - -#: ../../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." - -#: ../../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." - -#: ../../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í." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editujte Váš profil" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "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." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profilová klíčová slova" - -#: ../../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í." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Probíhá pokus o připojení" - -#: ../../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." - -#: ../../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." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importování emaiů" - -#: ../../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" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Navštivte Vaši stránku s kontakty" - -#: ../../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." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Navštivte lokální adresář Friendica" - -#: ../../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." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Nalezení nových lidí" - -#: ../../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." - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Seskupte si své kontakty" - -#: ../../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íť." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Proč nejsou mé příspěvky veřejné?" - -#: ../../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" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Získání nápovědy" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Navštivte sekci nápovědy" - -#: ../../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í." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Šťouchanec" - -#: ../../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/poke.php:194 -msgid "Recipient" -msgstr "Příjemce" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Vyberte, co si přejete příjemci udělat" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Změnit tento příspěvek na soukromý" - -#: ../../mod/display.php:498 -msgid "Item has been removed." -msgstr "Položka byla odstraněna." - -#: ../../mod/subthread.php:103 +#: include/enotify.php:185 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s následuje %3$s uživatele %2$s" +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Upozornění] %s Vás označil" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: include/enotify.php:186 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s vítá %2$s" +msgid "%1$s tagged you at %2$s" +msgstr "%1$s Vás označil na %2$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." - -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." - -#: ../../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:" - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Potvrzení úspěšně dokončena." - -#: ../../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:" - -#: ../../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." - -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Žádost o propojení selhala nebo byla zrušena." - -#: ../../mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Nelze nastavit fotografii kontaktu." - -#: ../../mod/dfrn_confirm.php:572 +#: include/enotify.php:187 #, php-format -msgid "No user record found for '%s' " -msgstr "Pro '%s' nenalezen žádný uživatelský záznam " +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]Vás označil[/url]." -#: ../../mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." - -#: ../../mod/dfrn_confirm.php:593 -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." - -#: ../../mod/dfrn_confirm.php:614 -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." - -#: ../../mod/dfrn_confirm.php:628 +#: include/enotify.php:198 #, 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." +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" -#: ../../mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." - -#: ../../mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." - -#: ../../mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Nelze aktualizovat Váš profil v našem systému" - -#: ../../mod/dfrn_confirm.php:798 +#: include/enotify.php:199 #, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se připojil k %2$s" +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s nasdílel nový příspěvek na %2$s" -#: ../../mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Nelze nalézt původní příspěvek." +#: include/enotify.php:200 +#, 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/item.php:346 -msgid "Empty post discarded." -msgstr "Prázdný příspěvek odstraněn." +#: include/enotify.php:212 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" -#: ../../mod/item.php:839 -msgid "System error. Post not saved." -msgstr "Chyba systému. Příspěvek nebyl uložen." +#: include/enotify.php:213 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s Vás šťouchnul na %2$s" -#: ../../mod/item.php:965 +#: include/enotify.php:214 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." + +#: include/enotify.php:229 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" + +#: include/enotify.php:230 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s označil Váš příspěvek na %2$s" + +#: include/enotify.php:231 +#, 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:242 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Upozornění] Obdrženo přestavení" + +#: include/enotify.php:243 +#, 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" + +#: include/enotify.php:244 +#, 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." + +#: include/enotify.php:247 include/enotify.php:289 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Můžete navštívit jejich profil na %s" + +#: include/enotify.php:249 +#, 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:257 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí" + +#: include/enotify.php:258 include/enotify.php:259 +#, 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" + +#: include/enotify.php:265 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Upozornění] Máte nového následovníka" + +#: include/enotify.php:266 include/enotify.php:267 +#, 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:280 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" + +#: include/enotify.php:281 +#, 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" + +#: include/enotify.php:282 #, 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." +"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/item.php:967 +#: include/enotify.php:287 +msgid "Name:" +msgstr "Jméno:" + +#: include/enotify.php:288 +msgid "Photo:" +msgstr "Foto:" + +#: include/enotify.php:291 #, php-format -msgid "You may visit them online at %s" -msgstr "Můžete je navštívit online na adrese %s" +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/item.php:968 +#: include/enotify.php:299 include/enotify.php:312 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Upozornění] Spojení akceptováno" + +#: include/enotify.php:300 include/enotify.php:313 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" + +#: include/enotify.php:301 include/enotify.php:314 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]." + +#: include/enotify.php:304 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." +"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/item.php:972 +#: include/enotify.php:307 include/enotify.php:321 #, php-format -msgid "%s posted an update." -msgstr "%s poslal aktualizaci." +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/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: include/enotify.php:317 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Nepodařilo se snížit velikost obrázku [%s]." - -#: ../../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ě." +"'%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/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Obrázek nelze zpracovat " - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Nahrát soubor:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Vybrat profil:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Nahrát" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "přeskočit tento krok " - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "Vybrat fotografii z Vašich fotoalb" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Oříznout obrázek" - -#: ../../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í." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Editace dokončena" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Obrázek byl úspěšně nahrán." - -#: ../../mod/allfriends.php:34 +#: include/enotify.php:319 #, php-format -msgid "Friends of %s" -msgstr "Přátelé uživatele %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Žádní přátelé k zobrazení" - -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Nalézt na tomto webu" - -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Adresář serveru" - -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Pohlaví: " - -#: ../../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/localtime.php:24 -msgid "Time Conversion" -msgstr "Časová konverze" - -#: ../../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" +"'%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/localtime.php:30 +#: include/enotify.php:332 +msgid "[Friendica System:Notify] registration request" +msgstr "[Systém Friendica :Upozornění] registrační požadavek" + +#: include/enotify.php:333 #, php-format -msgid "UTC time: %s" -msgstr "UTC čas: %s" +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/localtime.php:33 +#: include/enotify.php:334 #, php-format -msgid "Current timezone: %s" -msgstr "Aktuální časové pásmo: %s" +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/localtime.php:36 +#: include/enotify.php:337 #, php-format -msgid "Converted localtime: %s" -msgstr "Převedený lokální čas : %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/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Prosím, vyberte své časové pásmo:" +#: include/enotify.php:340 +#, 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/oembed.php:223 +msgid "Embedded content" +msgstr "vložený obsah" + +#: include/oembed.php:232 +msgid "Embedding disabled" +msgstr "Vkládání zakázáno" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Chyba dekódování uživatelského účtu" + +#: 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?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Chyba! Nelze ověřit přezdívku" + +#: 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!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Chyba vytváření uživatele" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Chyba vytváření uživatelského účtu" + +#: include/uimport.php:222 +#, 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:292 +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" + +#: index.php:441 +msgid "toggle mobile" +msgstr "přepnout mobil" + +#: 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)" + +#: 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." + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Nastavení šířku grafické šablony" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Barevné schéma" + +#: 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." + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Nastavit barevné schéma" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Zarovnání" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Vlevo" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Uprostřed" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Velikost písma u příspěvků" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Velikost písma textů" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Nastav rozlišení pro prostřední sloupec" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Nastavení barevného schematu" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Nastavit přiblížení pro Earth Layer" + +#: 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" + +#: 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" + +#: 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" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Komunitní profily" + +#: 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 ?" + +#: 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" + +#: 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" + +#: 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é" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Poslední fotografie" + +#: 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í" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Vaše kontakty" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Vaše osobní fotky" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokální Adresář" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Nastavit faktor přiblížení pro Earth Layers" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Zobrazit/skrýt boxy na pravém sloupci:" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Nastavit styl" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "zelená nula" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "fialová nula" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "velikonoční zajíček" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "tmavá nula" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "komiksová" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "flákač" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variace" diff --git a/view/cs/strings.php b/view/cs/strings.php index 57bb382ea..fe02c92af 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -5,961 +5,6 @@ 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["default"] = "standardní"; -$a->strings["greenzero"] = "zelená nula"; -$a->strings["purplezero"] = "fialová nula"; -$a->strings["easterbunny"] = "velikonoční zajíček"; -$a->strings["darkzero"] = "tmavá nula"; -$a->strings["comix"] = "komiksová"; -$a->strings["slackr"] = "flákač"; -$a->strings["Variations"] = "Variace"; -$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ášeni 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["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["About:"] = "O mě:"; -$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["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["Group Name: "] = "Název skupiny: "; -$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["%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["Daily posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; -$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["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["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["Conversations on the network"] = "Konverzace v síti"; -$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["%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["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["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["Loading more entries..."] = "Načítání více záznamů..."; -$a->strings["The end"] = "Konec"; -$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["Save"] = "Uložit"; -$a->strings["poke"] = "šťouchnout"; -$a->strings["poked"] = "šťouchnut"; -$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["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["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\$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."] = "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3\$s\n\t\t\tpřihlašovací jméno:\t%1\$s\n\t\t\theslo:\t%5\$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %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 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["Invalid request identifier."] = "Neplatný identifikátor požadavku."; -$a->strings["Discard"] = "Odstranit"; -$a->strings["Ignore"] = "Ignorovat"; -$a->strings["System"] = "Systém"; -$a->strings["Personal"] = "Osobní"; -$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"; -$a->strings["Claims to be known to you: "] = "Vaši údajní známí: "; -$a->strings["yes"] = "ano"; -$a->strings["no"] = "ne"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "; -$a->strings["Friend"] = "Přítel"; -$a->strings["Sharer"] = "Sdílené"; -$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["%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"; -$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek"; -$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'"; -$a->strings["No more network notifications."] = "Žádné další síťové upozornění."; -$a->strings["Network Notifications"] = "Upozornění Sítě"; -$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; -$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"] = "Upozornění na vstupní straně"; -$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["General Social Media Settings"] = "General Social Media nastavení"; -$a->strings["Disable intelligent shortening"] = "Vypnout inteligentní zkracování"; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek"; -$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["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí."; -$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["Activate desktop notifications"] = "Aktivovat upozornění na desktopu"; -$a->strings["Note: This is an experimental feature, as being not supported by each browser"] = "Poznámka: Jedná se o experimentální funkci, protože není podporovaná všemi prohlížeči"; -$a->strings["You will now receive desktop notifications!"] = "Nyní obdržíte notifikace na desktopu!"; -$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily"; -$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části."; -$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", @@ -969,6 +14,7 @@ $a->strings["Could not access contact record."] = "Nelze získat přístup k zá $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["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"; @@ -976,6 +22,8 @@ $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["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"; @@ -986,11 +34,17 @@ $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["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"; @@ -1003,6 +57,7 @@ $a->strings["Disabled"] = "Zakázáno"; $a->strings["Fetch information"] = "Načítat informace"; $a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova"; $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"; @@ -1019,13 +74,16 @@ $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["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"] = "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\""; +$a->strings["Profile URL"] = "URL profilu"; $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"; @@ -1037,125 +95,335 @@ $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["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["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 - obnovte stránku 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 your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
    login: %s
    heslo: %s

    Své heslo můžete změnit po přihlášení."; -$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["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["Item not found"] = "Položka nenalezena"; -$a->strings["Edit post"] = "Upravit příspěvek"; -$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["Confirm"] = "Potvrdit"; -$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["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["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 %s"] = "Obrázek překročil limit velikosti %s"; +$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["- select -"] = "- vyber -"; +$a->strings["Save"] = "Uložit"; +$a->strings["You already added this contact."] = "Již jste si tento kontakt přidali."; $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["No"] = "Ne"; $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["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 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["Do you really want to delete this video?"] = "Opravdu chcete smazat toto video?"; +$a->strings["Delete Video"] = "Odstranit video"; +$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["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["link"] = "odkaz"; +$a->strings["Invalid request."] = "Neplatný požadavek."; +$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."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."; +$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["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["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["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"; +$a->strings["Claims to be known to you: "] = "Vaši údajní známí: "; +$a->strings["yes"] = "ano"; +$a->strings["no"] = "ne"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "; +$a->strings["Friend"] = "Přítel"; +$a->strings["Sharer"] = "Sdílené"; +$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["Location:"] = "Místo:"; +$a->strings["About:"] = "O mě:"; +$a->strings["Tags:"] = "Štítky:"; +$a->strings["Gender:"] = "Pohlaví:"; +$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"; +$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek"; +$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'"; +$a->strings["No more network notifications."] = "Žádné další síťové upozornění."; +$a->strings["Network Notifications"] = "Upozornění Sítě"; +$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; +$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"] = "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["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["Refetch contact data"] = "Znovu načíst data kontaktu"; +$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["Login"] = "Přihlásit se"; +$a->strings["The post was created"] = "Příspěvek byl vytvořen"; +$a->strings["Access denied."] = "Přístup odmítnut"; +$a->strings["People Search - %s"] = "Vyhledávání lidí - %s"; +$a->strings["Connect"] = "Spojit"; +$a->strings["No matches"] = "Žádné shody"; +$a->strings["Photos"] = "Fotografie"; +$a->strings["Files"] = "Soubory"; +$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; $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["Inspect Queue"] = "Proskoumat frontu"; $a->strings["Logs"] = "Logy"; $a->strings["probe address"] = "vyzkoušet adresu"; $a->strings["check webfinger"] = "vyzkoušet webfinger"; +$a->strings["Admin"] = "Administrace"; $a->strings["Plugin Features"] = "Funkčnosti rozšíření"; $a->strings["diagnostics"] = "diagnostika"; $a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení"; +$a->strings["Administration"] = "Administrace"; +$a->strings["ID"] = "Identifikátor"; +$a->strings["Recipient Name"] = "Jméno příjemce"; +$a->strings["Recipient Profile"] = "Profil píjemce"; +$a->strings["Created"] = "Vytvořeno"; +$a->strings["Last Tried"] = "Naposled vyzkoušeno"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; $a->strings["Normal Account"] = "Normální účet"; $a->strings["Soapbox Account"] = "Soapbox účet"; $a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity"; @@ -1163,7 +431,6 @@ $a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním $a->strings["Blog Account"] = "Účet Blogu"; $a->strings["Private Forum"] = "Soukromé fórum"; $a->strings["Message queues"] = "Fronty zpráv"; -$a->strings["Administration"] = "Administrace"; $a->strings["Summary"] = "Shrnutí"; $a->strings["Registered users"] = "Registrovaní uživatelé"; $a->strings["Pending registrations"] = "Čekající registrace"; @@ -1171,10 +438,21 @@ $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["No community page"] = "Komunitní stránka neexistuje"; $a->strings["Public postings from users of this site"] = "Počet veřejných příspěvků od uživatele na této stránce"; $a->strings["Global community page"] = "Globální komunitní stránka"; $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["Users, Global Contacts"] = "Uživatelé, Všechny kontakty"; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = "Jeden měsíc"; +$a->strings["Three months"] = "Tři měsíce"; +$a->strings["Half a year"] = "Půl roku"; +$a->strings["One year"] = "Jeden rok"; $a->strings["Multi user instance"] = "Více uživatelská instance"; $a->strings["Closed"] = "Uzavřeno"; $a->strings["Requires approval"] = "Vyžaduje schválení"; @@ -1182,9 +460,12 @@ $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["Auto Discovered Contact Directory"] = ""; $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"; @@ -1194,7 +475,7 @@ $a->strings["Banner/Logo"] = "Banner/logo"; $a->strings["Shortcut icon"] = "Ikona zkratky"; $a->strings["Touch icon"] = "Dotyková ikona"; $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."; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; $a->strings["System language"] = "Systémový jazyk"; $a->strings["System theme"] = "Grafická šablona systému "; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings"; @@ -1279,6 +560,16 @@ $a->strings["Maximum Load Average"] = "Maximální průměrné zatížení"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"; $a->strings["Maximum Load Average (Frontend)"] = "Maximální průměrné zatížení (Frontend)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximální zatížení systému předtím, než frontend ukončí službu - defaultně 50"; +$a->strings["Periodical check of global contacts"] = "Pravidelně ověřování globálních kontaktů"; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Discover contacts from other servers"] = "Objevit kontakty z ostatních serverů"; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = "Hledat v lokálním adresáři"; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = "Zveřejnit informace o serveru"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; $a->strings["Use MySQL full text engine"] = "Použít fulltextový vyhledávací stroj MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"; $a->strings["Suppress Language"] = "Potlačit Jazyk"; @@ -1286,13 +577,17 @@ $a->strings["Suppress language information in meta information about a posting." $a->strings["Suppress Tags"] = "Potlačit štítky"; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Potlačit zobrazení listu hastagů na konci zprávy."; $a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti"; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách"; $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."] = "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."; $a->strings["Maximum numbers of comments per post"] = "Maximální počet komentářů k příspěvku"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."; $a->strings["Path for lock file"] = "Cesta k souboru zámku"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; $a->strings["Temp path"] = "Cesta k dočasným souborům"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; $a->strings["Base path to installation"] = "Základní cesta k instalaci"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; $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["Enable old style pager"] = "Aktivovat \"old style\" stránkování "; @@ -1300,6 +595,11 @@ $a->strings["The old style pager has page numbers but slows down massively the p $a->strings["Only search in tags"] = "Hledat pouze ve štítkách"; $a->strings["On large systems the text search can slow down the system extremely."] = "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."; $a->strings["New base url"] = "Nová výchozí url adresa"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = "RINO Šifrování"; +$a->strings["Encryption layer between nodes."] = "Šifrovací vrstva mezi nódy."; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; $a->strings["Update has been marked successful"] = "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"; @@ -1315,6 +615,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."] = "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1\$s\n\t\t\tpřihlašovací jméno:\t\t%2\$s\n\t\t\theslo:\t\t%3\$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %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", @@ -1333,6 +634,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"; @@ -1342,6 +644,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"; @@ -1370,14 +673,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["Search Results For: %s"] = "Výsledky hledání pro: %s"; $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"; @@ -1397,145 +696,23 @@ $a->strings["Warning: This group contains %s member from an insecure network."] $a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."; $a->strings["No such group"] = "Žádná taková skupina"; $a->strings["Group is empty"] = "Skupina je prázdná"; -$a->strings["Group: "] = "Skupina: "; -$a->strings["Contact: "] = "Kontakt: "; +$a->strings["Group: %s"] = "Skupina: %s"; +$a->strings["Contact: %s"] = "Kontakt: %s"; $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["The post was created"] = "Příspěvek byl vytvořen"; -$a->strings["You already added this contact."] = "Již jste si tento kontakt přidali."; -$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."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."; -$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["Not Extended"] = "Nerozšířeně"; -$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 can not end before it has started."] = "Událost nemůže končit dříve, než začala."; $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"; -$a->strings["hour:minute"] = "hodina:minuta"; $a->strings["Event details"] = "Detaily události"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány."; +$a->strings["Starting date and Title are required."] = "Počáteční datum a Název jsou vyžadovány."; $a->strings["Event Starts:"] = "Událost začíná:"; $a->strings["Required"] = "Vyžadováno"; $a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní"; @@ -1544,118 +721,59 @@ $a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživa $a->strings["Description:"] = "Popis:"; $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["Preview"] = "Náhled"; +$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["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."; $a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica byla nainstalována."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "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."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Databáze se již používá."; $a->strings["System check"] = "Testování systému"; $a->strings["Check again"] = "Otestovat znovu"; $a->strings["Database connection"] = "Databázové spojení"; @@ -1711,114 +829,1040 @@ $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["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["Refetch contact data"] = "Znovu načíst data 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["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["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["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 %s"] = "Velikost souboru přesáhla limit %s"; +$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["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["General Social Media Settings"] = "General Social Media nastavení"; +$a->strings["Disable intelligent shortening"] = "Vypnout inteligentní zkracování"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek"; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["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["GNU Social (OStatus)"] = "GNU Social (OStatus)"; +$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["Theme settings"] = "Nastavení téma"; +$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["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."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí."; +$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 '%s' or '%s'."] = "Vaše Identity adresa je \"%s\" nebo \"%s\"."; +$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["Activate desktop notifications"] = "Aktivovat upozornění na desktopu"; +$a->strings["Show desktop popup on new notifications"] = "Zobrazit dektopové zprávy nových upozornění."; +$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily"; +$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části."; +$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["Confirm"] = "Potvrdit"; +$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["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."] = ""; +$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["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["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."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:
    login: %s
    heslo: %s

    Své heslo můžete změnit po přihlášení."; +$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["Leave empty for an auto generated password."] = "Ponechte prázdné pro automatické vygenerovaní hesla."; +$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["Items tagged with: %s"] = "Položky označené s: %s"; +$a->strings["Search results for: %s"] = "Výsledky hledání pro: %s"; +$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["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Domácí stránka:"; $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 :"] = "Narozeniny:"; +$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["the bugtracker at github"] = ""; +$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["Contact Photos"] = "Fotogalerie kontaktu"; +$a->strings["Photo Albums"] = "Fotoalba"; +$a->strings["Recent Photos"] = "Aktuální fotografie"; +$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 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["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["Do not rotate"] = "Neotáčet"; +$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["Private photo"] = "Soukromé fotografie"; +$a->strings["Public photo"] = "Veřejné fotografie"; +$a->strings["Share"] = "Sdílet"; +$a->strings["Not Extended"] = "Nerozšířeně"; +$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["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["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["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "nikdy"; +$a->strings["less than a second ago"] = "méně než před sekundou"; +$a->strings["year"] = "rok"; +$a->strings["years"] = "let"; +$a->strings["month"] = "měsíc"; +$a->strings["months"] = "měsíců"; +$a->strings["week"] = "týdnem"; +$a->strings["weeks"] = "týdny"; +$a->strings["day"] = "den"; +$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["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["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["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["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["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["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["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["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["Loading more entries..."] = "Načítání více záznamů..."; +$a->strings["The end"] = "Konec"; +$a->strings["No contacts"] = "Žádné kontakty"; +$a->strings["%d Contact"] = array( + 0 => "%d kontakt", + 1 => "%d kontaktů", + 2 => "%d kontaktů", +); +$a->strings["Full Text"] = "Celý text"; +$a->strings["Tags"] = "Štítky:"; +$a->strings["Forums"] = "Fóra"; +$a->strings["poke"] = "šťouchnout"; +$a->strings["poked"] = "šťouchnut"; +$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["View on separate page"] = "Zobrazit na separátní stránce"; +$a->strings["view on separate page"] = "Zobrazit na separátní stránce"; +$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["Redmatrix"] = "Redmatrix"; +$a->strings[" on Last.fm"] = " na Last.fm"; +$a->strings["Starts:"] = "Začíná:"; +$a->strings["Finishes:"] = "Končí:"; +$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["Conversations on the network"] = "Konverzace v síti"; +$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."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."; +$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 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 \"_\"."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\"."; +$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."] = "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3\$s\n\t\t\tpřihlašovací jméno:\t%1\$s\n\t\t\theslo:\t%5\$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %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 accepted 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["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"] = "zelená nula"; +$a->strings["purplezero"] = "fialová nula"; +$a->strings["easterbunny"] = "velikonoční zajíček"; +$a->strings["darkzero"] = "tmavá nula"; +$a->strings["comix"] = "komiksová"; +$a->strings["slackr"] = "flákač"; +$a->strings["Variations"] = "Variace"; diff --git a/view/de/messages.po b/view/de/messages.po index befe76bf0..e1d3d54f8 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -18,6 +18,7 @@ # marmor , 2012 # Martin Schmitt , 2012 # Matthias Moritz , 2012 +# Oliver , 2015 # Oliver , 2012 # Sennewood , 2013 # Sennewood , 2012-2013 @@ -30,2868 +31,16 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-30 08:43+0200\n" -"PO-Revision-Date: 2015-06-30 07:40+0000\n" -"Last-Translator: bavatar \n" -"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" +"POT-Creation-Date: 2015-09-01 07:09+0200\n" +"PO-Revision-Date: 2015-09-16 17:08+0000\n" +"Last-Translator: Abrax \n" +"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." - -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 -msgid "Private Message" -msgstr "Private Nachricht" - -#: object/Item.php:121 mod/settings.php:683 mod/content.php:730 -msgid "Edit" -msgstr "Bearbeiten" - -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 -msgid "Select" -msgstr "Auswählen" - -#: object/Item.php:131 mod/admin.php:1017 mod/photos.php:1673 -#: mod/contacts.php:760 mod/settings.php:684 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 -msgid "Delete" -msgstr "Löschen" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "markieren" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "Markierung entfernen" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "markiert" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: object/Item.php:214 -msgid "ignored" -msgstr "Ignoriert" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "mag ich" - -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "mag ich nicht" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "Weitersagen" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "Teilen" - -#: object/Item.php:319 include/conversation.php:665 -msgid "Categories:" -msgstr "Kategorien:" - -#: object/Item.php:320 include/conversation.php:666 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: object/Item.php:329 object/Item.php:330 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." - -#: object/Item.php:331 mod/content.php:856 -msgid "to" -msgstr "zu" - -#: object/Item.php:332 -msgid "via" -msgstr "via" - -#: object/Item.php:333 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: object/Item.php:334 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: object/Item.php:343 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: object/Item.php:364 object/Item.php:680 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:754 -msgid "Comment" -msgstr "Kommentar" - -#: object/Item.php:367 mod/message.php:334 mod/message.php:565 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Bitte warten" - -#: object/Item.php:390 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: object/Item.php:392 object/Item.php:405 mod/content.php:607 -#: include/text.php:2004 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" - -#: object/Item.php:393 mod/content.php:608 boot.php:755 include/items.php:5133 -#: include/contact_widgets.php:205 -msgid "show more" -msgstr "mehr anzeigen" - -#: object/Item.php:678 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 -msgid "This is you" -msgstr "Das bist Du" - -#: object/Item.php:681 mod/fsuggest.php:107 mod/message.php:335 -#: mod/message.php:564 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:564 -#: mod/invite.php:140 mod/profiles.php:682 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 -msgid "Submit" -msgstr "Senden" - -#: object/Item.php:682 mod/content.php:713 -msgid "Bold" -msgstr "Fett" - -#: object/Item.php:683 mod/content.php:714 -msgid "Italic" -msgstr "Kursiv" - -#: object/Item.php:684 mod/content.php:715 -msgid "Underline" -msgstr "Unterstrichen" - -#: object/Item.php:685 mod/content.php:716 -msgid "Quote" -msgstr "Zitat" - -#: object/Item.php:686 mod/content.php:717 -msgid "Code" -msgstr "Code" - -#: object/Item.php:687 mod/content.php:718 -msgid "Image" -msgstr "Bild" - -#: object/Item.php:688 mod/content.php:719 -msgid "Link" -msgstr "Link" - -#: object/Item.php:689 mod/content.php:720 -msgid "Video" -msgstr "Video" - -#: object/Item.php:690 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 -msgid "Preview" -msgstr "Vorschau" - -#: index.php:225 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." - -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Zugriff verweigert" - -#: index.php:382 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:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:66 -#: mod/api.php:26 mod/api.php:31 mod/photos.php:156 mod/photos.php:1072 -#: mod/register.php:42 mod/attach.php:33 mod/contacts.php:322 mod/follow.php:9 -#: mod/follow.php:42 mod/follow.php:81 mod/uimport.php:23 mod/allfriends.php:9 -#: mod/invite.php:15 mod/invite.php:101 mod/settings.php:20 -#: mod/settings.php:107 mod/settings.php:608 mod/display.php:508 -#: mod/profiles.php:165 mod/profiles.php:614 mod/wall_attach.php:55 -#: mod/suggest.php:58 mod/manage.php:96 mod/delegate.php:12 -#: mod/viewcontacts.php:24 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/group.php:19 -#: mod/regmod.php:110 mod/item.php:170 mod/item.php:186 mod/mood.php:114 -#: mod/network.php:4 mod/crepair.php:120 include/items.php:5022 -msgid "Permission denied." -msgstr "Zugriff verweigert." - -#: index.php:441 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" - -#: 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 "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" - -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kontaktvorschlag gesendet." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." - -#: 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/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/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/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/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: 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/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: 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/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: 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/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/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Du hast Dich hier bereits vorgestellt." - -#: 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/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: mod/dfrn_request.php:507 include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." - -#: 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/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Bestätigen" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4236 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:89 mod/display.php:223 mod/community.php:18 -#: mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: mod/dfrn_request.php:819 -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/dfrn_request.php:839 -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/dfrn_request.php:842 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: mod/dfrn_request.php:843 -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/dfrn_request.php:844 mod/follow.php:56 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/dfrn_request.php:845 mod/follow.php:57 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s Dich?" - -#: mod/dfrn_request.php:845 mod/api.php:106 mod/register.php:234 -#: mod/follow.php:57 mod/settings.php:1035 mod/settings.php:1041 -#: mod/settings.php:1049 mod/settings.php:1053 mod/settings.php:1058 -#: mod/settings.php:1064 mod/settings.php:1070 mod/settings.php:1076 -#: mod/settings.php:1104 mod/settings.php:1105 mod/settings.php:1106 -#: mod/settings.php:1107 mod/settings.php:1108 mod/profiles.php:657 -#: mod/profiles.php:661 -msgid "No" -msgstr "Nein" - -#: mod/dfrn_request.php:845 mod/message.php:209 mod/api.php:105 -#: mod/register.php:233 mod/contacts.php:413 mod/follow.php:57 -#: mod/settings.php:1035 mod/settings.php:1041 mod/settings.php:1049 -#: mod/settings.php:1053 mod/settings.php:1058 mod/settings.php:1064 -#: mod/settings.php:1070 mod/settings.php:1076 mod/settings.php:1104 -#: mod/settings.php:1105 mod/settings.php:1106 mod/settings.php:1107 -#: mod/settings.php:1108 mod/profiles.php:657 mod/profiles.php:660 -#: mod/suggest.php:29 include/items.php:4854 -msgid "Yes" -msgstr "Ja" - -#: mod/dfrn_request.php:849 mod/follow.php:58 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: mod/dfrn_request.php:851 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:852 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:853 mod/settings.php:761 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/dfrn_request.php:854 -#, 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/dfrn_request.php:855 mod/follow.php:64 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/dfrn_request.php:858 mod/follow.php:67 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: mod/dfrn_request.php:859 mod/message.php:212 mod/editpost.php:148 -#: mod/fbrowser.php:81 mod/fbrowser.php:116 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:416 mod/videos.php:121 -#: mod/follow.php:68 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:622 -#: mod/settings.php:648 mod/suggest.php:32 include/items.php:4857 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "Abbrechen" - -#: mod/files.php:156 mod/videos.php:373 include/text.php:1429 -msgid "View Video" -msgstr "Video ansehen" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: mod/notifications.php:35 mod/notifications.php:165 -#: mod/notifications.php:215 -msgid "Discard" -msgstr "Verwerfen" - -#: mod/notifications.php:51 mod/notifications.php:164 -#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591 -#: mod/contacts.php:758 -msgid "Ignore" -msgstr "Ignorieren" - -#: mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: mod/notifications.php:83 include/nav.php:145 -msgid "Network" -msgstr "Netzwerk" - -#: mod/notifications.php:88 mod/network.php:373 -msgid "Personal" -msgstr "Persönlich" - -#: mod/notifications.php:93 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:148 -msgid "Home" -msgstr "Pinnwand" - -#: mod/notifications.php:98 include/nav.php:153 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: mod/notifications.php:149 mod/notifications.php:199 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" - -#: mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" - -#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt von anderen" - -#: mod/notifications.php:158 mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: mod/notifications.php:158 mod/notifications.php:209 -msgid "if applicable" -msgstr "falls anwendbar" - -#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015 -msgid "Approve" -msgstr "Genehmigen" - -#: mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Behauptet Dich zu kennen: " - -#: mod/notifications.php:181 -msgid "yes" -msgstr "ja" - -#: mod/notifications.php:181 -msgid "no" -msgstr "nein" - -#: mod/notifications.php:182 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php:185 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php:193 -msgid "Friend" -msgstr "Freund" - -#: mod/notifications.php:194 -msgid "Sharer" -msgstr "Teilenden" - -#: mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" - -#: mod/notifications.php:200 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: mod/notifications.php:221 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: mod/notifications.php:224 include/nav.php:156 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: mod/notifications.php:262 mod/notifications.php:391 -#: mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "%s mag %ss Beitrag" - -#: mod/notifications.php:272 mod/notifications.php:401 -#: mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mag %ss Beitrag nicht" - -#: mod/notifications.php:287 mod/notifications.php:416 -#: mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ist jetzt mit %s befreundet" - -#: mod/notifications.php:294 mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" - -#: mod/notifications.php:295 mod/notifications.php:424 -#: mod/notifications.php:517 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hat %ss Beitrag kommentiert" - -#: mod/notifications.php:310 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." - -#: mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" - -#: mod/notifications.php:340 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Keine weiteren Systembenachrichtigungen." - -#: mod/notifications.php:344 mod/notify.php:76 -msgid "System Notifications" -msgstr "Systembenachrichtigungen" - -#: mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" - -#: mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: mod/notifications.php:524 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" - -#: mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2000 -#: include/diaspora.php:2106 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "Foto" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2106 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "Status" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2122 -#: include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" - -#: 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" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: 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." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Themeneinstellungen aktualisiert." - -#: mod/admin.php:104 mod/admin.php:627 -msgid "Site" -msgstr "Seite" - -#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023 -msgid "Users" -msgstr "Nutzer" - -#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62 -msgid "Plugins" -msgstr "Plugins" - -#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367 -msgid "Themes" -msgstr "Themen" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "DB Updates" - -#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454 -msgid "Logs" -msgstr "Protokolle" - -#: mod/admin.php:124 -msgid "probe address" -msgstr "Adresse untersuchen" - -#: mod/admin.php:125 -msgid "check webfinger" -msgstr "Webfinger überprüfen" - -#: mod/admin.php:130 include/nav.php:185 -msgid "Admin" -msgstr "Administration" - -#: mod/admin.php:131 -msgid "Plugin Features" -msgstr "Plugin Features" - -#: mod/admin.php:133 -msgid "diagnostics" -msgstr "Diagnose" - -#: mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Nutzeranmeldungen die auf Bestätigung warten" - -#: mod/admin.php:169 mod/admin.php:1062 mod/admin.php:1275 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4813 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." - -#: mod/admin.php:193 mod/admin.php:961 -msgid "Normal Account" -msgstr "Normales Konto" - -#: mod/admin.php:194 mod/admin.php:962 -msgid "Soapbox Account" -msgstr "Marktschreier-Konto" - -#: mod/admin.php:195 mod/admin.php:963 -msgid "Community/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: mod/admin.php:196 mod/admin.php:964 -msgid "Automatic Friend Account" -msgstr "Automatisches Freundekonto" - -#: mod/admin.php:197 -msgid "Blog Account" -msgstr "Blog-Konto" - -#: mod/admin.php:198 -msgid "Private Forum" -msgstr "Privates Forum" - -#: mod/admin.php:217 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111 -#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453 -msgid "Administration" -msgstr "Administration" - -#: mod/admin.php:223 -msgid "Summary" -msgstr "Zusammenfassung" - -#: mod/admin.php:225 -msgid "Registered users" -msgstr "Registrierte Nutzer" - -#: mod/admin.php:227 -msgid "Pending registrations" -msgstr "Anstehende Anmeldungen" - -#: mod/admin.php:228 -msgid "Version" -msgstr "Version" - -#: mod/admin.php:232 -msgid "Active plugins" -msgstr "Aktive Plugins" - -#: mod/admin.php:255 -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:524 -msgid "Site settings updated." -msgstr "Seiteneinstellungen aktualisiert." - -#: mod/admin.php:553 mod/settings.php:853 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Theme für mobile Geräte verwenden." - -#: mod/admin.php:570 -msgid "No community page" -msgstr "Keine Gemeinschaftsseite" - -#: mod/admin.php:571 -msgid "Public postings from users of this site" -msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" - -#: mod/admin.php:572 -msgid "Global community page" -msgstr "Globale Gemeinschaftsseite" - -#: mod/admin.php:577 mod/contacts.php:498 -msgid "Never" -msgstr "Niemals" - -#: mod/admin.php:578 -msgid "At post arrival" -msgstr "Beim Empfang von Nachrichten" - -#: mod/admin.php:579 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "immer wieder" - -#: mod/admin.php:580 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" - -#: mod/admin.php:581 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: mod/admin.php:582 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" - -#: mod/admin.php:587 -msgid "Multi user instance" -msgstr "Mehrbenutzer Instanz" - -#: mod/admin.php:610 -msgid "Closed" -msgstr "Geschlossen" - -#: mod/admin.php:611 -msgid "Requires approval" -msgstr "Bedarf der Zustimmung" - -#: mod/admin.php:612 -msgid "Open" -msgstr "Offen" - -#: mod/admin.php:616 -msgid "No SSL policy, links will track page SSL state" -msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" - -#: mod/admin.php:617 -msgid "Force all links to use SSL" -msgstr "SSL für alle Links erzwingen" - -#: mod/admin.php:618 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" - -#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 -#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 -#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1136 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: mod/admin.php:629 mod/register.php:255 -msgid "Registration" -msgstr "Registrierung" - -#: mod/admin.php:630 -msgid "File upload" -msgstr "Datei hochladen" - -#: mod/admin.php:631 -msgid "Policies" -msgstr "Regeln" - -#: mod/admin.php:632 -msgid "Advanced" -msgstr "Erweitert" - -#: mod/admin.php:633 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:634 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." - -#: mod/admin.php:637 -msgid "Site name" -msgstr "Seitenname" - -#: mod/admin.php:638 -msgid "Host name" -msgstr "Host Name" - -#: mod/admin.php:639 -msgid "Sender Email" -msgstr "Absender für Emails" - -#: mod/admin.php:640 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:641 -msgid "Shortcut icon" -msgstr "Shortcut Icon" - -#: mod/admin.php:642 -msgid "Touch icon" -msgstr "Touch Icon" - -#: mod/admin.php:643 -msgid "Additional Info" -msgstr "Zusätzliche Informationen" - -#: mod/admin.php:643 -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/admin.php:644 -msgid "System language" -msgstr "Systemsprache" - -#: mod/admin.php:645 -msgid "System theme" -msgstr "Systemweites Theme" - -#: mod/admin.php:645 -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/admin.php:646 -msgid "Mobile system theme" -msgstr "Systemweites mobiles Theme" - -#: mod/admin.php:646 -msgid "Theme for mobile devices" -msgstr "Thema für mobile Geräte" - -#: mod/admin.php:647 -msgid "SSL link policy" -msgstr "Regeln für SSL Links" - -#: mod/admin.php:647 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" - -#: mod/admin.php:648 -msgid "Force SSL" -msgstr "Erzwinge SSL" - -#: mod/admin.php:648 -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." - -#: mod/admin.php:649 -msgid "Old style 'Share'" -msgstr "Altes \"Teilen\" Element" - -#: mod/admin.php:649 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." - -#: mod/admin.php:650 -msgid "Hide help entry from navigation menu" -msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" - -#: mod/admin.php:650 -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." - -#: mod/admin.php:651 -msgid "Single user instance" -msgstr "Ein-Nutzer Instanz" - -#: mod/admin.php:651 -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/admin.php:652 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: mod/admin.php:652 -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." - -#: mod/admin.php:653 -msgid "Maximum image length" -msgstr "Maximale Bildlänge" - -#: mod/admin.php:653 -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:654 -msgid "JPEG image quality" -msgstr "Qualität des JPEG Bildes" - -#: mod/admin.php:654 -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." - -#: mod/admin.php:656 -msgid "Register policy" -msgstr "Registrierungsmethode" - -#: mod/admin.php:657 -msgid "Maximum Daily Registrations" -msgstr "Maximum täglicher Registrierungen" - -#: mod/admin.php:657 -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/admin.php:658 -msgid "Register text" -msgstr "Registrierungstext" - -#: mod/admin.php:658 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." - -#: mod/admin.php:659 -msgid "Accounts abandoned after x days" -msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" - -#: mod/admin.php:659 -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/admin.php:660 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: mod/admin.php:660 -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/admin.php:661 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: mod/admin.php:661 -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/admin.php:662 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: mod/admin.php:662 -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/admin.php:663 -msgid "Force publish" -msgstr "Erzwinge Veröffentlichung" - -#: mod/admin.php:663 -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/admin.php:664 -msgid "Global directory update URL" -msgstr "URL für Updates beim weltweiten Verzeichnis" - -#: mod/admin.php:664 -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/admin.php:665 -msgid "Allow threaded items" -msgstr "Erlaube Threads in Diskussionen" - -#: mod/admin.php:665 -msgid "Allow infinite level threading for items on this site." -msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." - -#: mod/admin.php:666 -msgid "Private posts by default for new users" -msgstr "Private Beiträge als Standard für neue Nutzer" - -#: mod/admin.php:666 -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/admin.php:667 -msgid "Don't include post content in email notifications" -msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" - -#: mod/admin.php:667 -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/admin.php:668 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." - -#: mod/admin.php:668 -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/admin.php:669 -msgid "Don't embed private images in posts" -msgstr "Private Bilder nicht in Beiträgen einbetten." - -#: mod/admin.php:669 -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/admin.php:670 -msgid "Allow Users to set remote_self" -msgstr "Nutzern erlauben das remote_self Flag zu setzen" - -#: mod/admin.php:670 -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/admin.php:671 -msgid "Block multiple registrations" -msgstr "Unterbinde Mehrfachregistrierung" - -#: mod/admin.php:671 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." - -#: mod/admin.php:672 -msgid "OpenID support" -msgstr "OpenID Unterstützung" - -#: mod/admin.php:672 -msgid "OpenID support for registration and logins." -msgstr "OpenID-Unterstützung für Registrierung und Login." - -#: mod/admin.php:673 -msgid "Fullname check" -msgstr "Namen auf Vollständigkeit überprüfen" - -#: mod/admin.php:673 -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/admin.php:674 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Reguläre Ausdrücke" - -#: mod/admin.php:674 -msgid "Use PHP UTF8 regular expressions" -msgstr "PHP UTF8 Ausdrücke verwenden" - -#: mod/admin.php:675 -msgid "Community Page Style" -msgstr "Art der Gemeinschaftsseite" - -#: mod/admin.php:675 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen." - -#: mod/admin.php:676 -msgid "Posts per user on community page" -msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" - -#: mod/admin.php:676 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt." - -#: mod/admin.php:677 -msgid "Enable OStatus support" -msgstr "OStatus Unterstützung aktivieren" - -#: mod/admin.php:677 -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." - -#: mod/admin.php:678 -msgid "OStatus conversation completion interval" -msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" - -#: mod/admin.php:678 -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/admin.php:679 -msgid "Enable Diaspora support" -msgstr "Diaspora-Support aktivieren" - -#: mod/admin.php:679 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Verwende die eingebaute Diaspora-Verknüpfung." - -#: mod/admin.php:680 -msgid "Only allow Friendica contacts" -msgstr "Nur Friendica-Kontakte erlauben" - -#: mod/admin.php:680 -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/admin.php:681 -msgid "Verify SSL" -msgstr "SSL Überprüfen" - -#: mod/admin.php:681 -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." - -#: mod/admin.php:682 -msgid "Proxy user" -msgstr "Proxy Nutzer" - -#: mod/admin.php:683 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: mod/admin.php:684 -msgid "Network timeout" -msgstr "Netzwerk Wartezeit" - -#: mod/admin.php:684 -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/admin.php:685 -msgid "Delivery interval" -msgstr "Zustellungsintervall" - -#: mod/admin.php:685 -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." - -#: mod/admin.php:686 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: mod/admin.php:686 -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." - -#: mod/admin.php:687 -msgid "Maximum Load Average" -msgstr "Maximum Load Average" - -#: mod/admin.php:687 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" - -#: mod/admin.php:688 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum Load Average (Frontend)" - -#: mod/admin.php:688 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." - -#: mod/admin.php:690 -msgid "Use MySQL full text engine" -msgstr "Nutze MySQL full text engine" - -#: mod/admin.php:690 -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." - -#: mod/admin.php:691 -msgid "Suppress Language" -msgstr "Sprachinformation unterdrücken" - -#: mod/admin.php:691 -msgid "Suppress language information in meta information about a posting." -msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." - -#: mod/admin.php:692 -msgid "Suppress Tags" -msgstr "Tags Unterdrücken" - -#: mod/admin.php:692 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." - -#: mod/admin.php:693 -msgid "Path to item cache" -msgstr "Pfad zum Eintrag Cache" - -#: mod/admin.php:694 -msgid "Cache duration in seconds" -msgstr "Cache-Dauer in Sekunden" - -#: mod/admin.php:694 -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." - -#: mod/admin.php:695 -msgid "Maximum numbers of comments per post" -msgstr "Maximale Anzahl von Kommentaren pro Beitrag" - -#: mod/admin.php:695 -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." - -#: mod/admin.php:696 -msgid "Path for lock file" -msgstr "Pfad für die Sperrdatei" - -#: mod/admin.php:697 -msgid "Temp path" -msgstr "Temp Pfad" - -#: mod/admin.php:698 -msgid "Base path to installation" -msgstr "Basis-Pfad zur Installation" - -#: mod/admin.php:699 -msgid "Disable picture proxy" -msgstr "Bilder Proxy deaktivieren" - -#: mod/admin.php:699 -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." - -#: mod/admin.php:700 -msgid "Enable old style pager" -msgstr "Den Old-Style Pager aktiviren" - -#: mod/admin.php:700 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." - -#: mod/admin.php:701 -msgid "Only search in tags" -msgstr "Nur in Tags suchen" - -#: mod/admin.php:701 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." - -#: mod/admin.php:703 -msgid "New base url" -msgstr "Neue Basis-URL" - -#: mod/admin.php:705 -msgid "RINO Encryption" -msgstr "RINO Verschlüsselung" - -#: mod/admin.php:705 -msgid "Encryption layer between nodes." -msgstr "Verschlüsselung zwischen Friendica Instanzen" - -#: mod/admin.php:723 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: mod/admin.php:731 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." - -#: mod/admin.php:734 -#, 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" - -#: mod/admin.php:746 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" - -#: mod/admin.php:749 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s war erfolgreich." - -#: mod/admin.php:753 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." - -#: mod/admin.php:755 -#, 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." - -#: mod/admin.php:774 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Updates." - -#: mod/admin.php:775 -msgid "Check database structure" -msgstr "Datenbank Struktur überprüfen" - -#: mod/admin.php:780 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Updates" - -#: mod/admin.php:781 -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." - -#: mod/admin.php:782 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" - -#: mod/admin.php:783 -msgid "Attempt to execute this update step automatically" -msgstr "Versuchen, diesen Schritt automatisch auszuführen" - -#: mod/admin.php:815 -#, 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." - -#: mod/admin.php:818 -#, 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 "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\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\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." - -#: mod/admin.php:850 include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" - -#: mod/admin.php:862 -#, 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" - -#: mod/admin.php:869 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" - -#: mod/admin.php:908 -#, php-format -msgid "User '%s' deleted" -msgstr "Nutzer '%s' gelöscht" - -#: mod/admin.php:916 -#, php-format -msgid "User '%s' unblocked" -msgstr "Nutzer '%s' entsperrt" - -#: mod/admin.php:916 -#, php-format -msgid "User '%s' blocked" -msgstr "Nutzer '%s' gesperrt" - -#: mod/admin.php:1009 -msgid "Add User" -msgstr "Nutzer hinzufügen" - -#: mod/admin.php:1010 -msgid "select all" -msgstr "Alle auswählen" - -#: mod/admin.php:1011 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: mod/admin.php:1012 -msgid "User waiting for permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" - -#: mod/admin.php:1013 -msgid "Request date" -msgstr "Anfragedatum" - -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 -#: mod/settings.php:623 mod/settings.php:649 mod/crepair.php:170 -msgid "Name" -msgstr "Name" - -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "E-Mail" - -#: mod/admin.php:1014 -msgid "No registrations." -msgstr "Keine Neuanmeldungen." - -#: mod/admin.php:1016 -msgid "Deny" -msgstr "Verwehren" - -#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 -msgid "Block" -msgstr "Sperren" - -#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 -msgid "Unblock" -msgstr "Entsperren" - -#: mod/admin.php:1020 -msgid "Site admin" -msgstr "Seitenadministrator" - -#: mod/admin.php:1021 -msgid "Account expired" -msgstr "Account ist abgelaufen" - -#: mod/admin.php:1024 -msgid "New User" -msgstr "Neuer Nutzer" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Register date" -msgstr "Anmeldedatum" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Last item" -msgstr "Letzter Beitrag" - -#: mod/admin.php:1025 -msgid "Deleted since" -msgstr "Gelöscht seit" - -#: mod/admin.php:1026 mod/settings.php:41 -msgid "Account" -msgstr "Nutzerkonto" - -#: mod/admin.php:1028 -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?" - -#: mod/admin.php:1029 -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?" - -#: mod/admin.php:1039 -msgid "Name of the new user." -msgstr "Name des neuen Nutzers" - -#: mod/admin.php:1040 -msgid "Nickname" -msgstr "Spitzname" - -#: mod/admin.php:1040 -msgid "Nickname of the new user." -msgstr "Spitznamen für den neuen Nutzer" - -#: mod/admin.php:1041 -msgid "Email address of the new user." -msgstr "Email Adresse des neuen Nutzers" - -#: mod/admin.php:1074 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deaktiviert." - -#: mod/admin.php:1078 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s aktiviert." - -#: mod/admin.php:1088 mod/admin.php:1304 -msgid "Disable" -msgstr "Ausschalten" - -#: mod/admin.php:1090 mod/admin.php:1306 -msgid "Enable" -msgstr "Einschalten" - -#: mod/admin.php:1113 mod/admin.php:1334 -msgid "Toggle" -msgstr "Umschalten" - -#: mod/admin.php:1114 mod/admin.php:1335 mod/newmember.php:22 -#: mod/settings.php:90 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:173 -msgid "Settings" -msgstr "Einstellungen" - -#: mod/admin.php:1121 mod/admin.php:1344 -msgid "Author: " -msgstr "Autor:" - -#: mod/admin.php:1122 mod/admin.php:1345 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: mod/admin.php:1264 -msgid "No themes found." -msgstr "Keine Themen gefunden." - -#: mod/admin.php:1326 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: mod/admin.php:1372 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: mod/admin.php:1373 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: mod/admin.php:1400 -msgid "Log settings updated." -msgstr "Protokolleinstellungen aktualisiert." - -#: mod/admin.php:1456 -msgid "Clear" -msgstr "löschen" - -#: mod/admin.php:1462 -msgid "Enable Debugging" -msgstr "Protokoll führen" - -#: mod/admin.php:1463 -msgid "Log file" -msgstr "Protokolldatei" - -#: mod/admin.php:1463 -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:1464 -msgid "Log level" -msgstr "Protokoll-Level" - -#: mod/admin.php:1513 mod/contacts.php:587 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: mod/admin.php:1514 include/acl_selectors.php:347 -msgid "Close" -msgstr "Schließen" - -#: mod/admin.php:1520 -msgid "FTP Host" -msgstr "FTP Host" - -#: mod/admin.php:1521 -msgid "FTP Path" -msgstr "FTP Pfad" - -#: mod/admin.php:1522 -msgid "FTP User" -msgstr "FTP Nutzername" - -#: mod/admin.php:1523 -msgid "FTP Password" -msgstr "FTP Passwort" - -#: mod/message.php:9 include/nav.php:165 -msgid "New Message" -msgstr "Neue Nachricht" - -#: mod/message.php:63 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:70 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/message.php:73 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: mod/message.php:76 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: mod/message.php:182 include/nav.php:162 -msgid "Messages" -msgstr "Nachrichten" - -#: mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Möchtest Du wirklich diese Nachricht löschen?" - -#: mod/message.php:227 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: mod/message.php:258 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: 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:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" - -#: mod/message.php:319 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144 -msgid "To:" -msgstr "An:" - -#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/message.php:329 mod/message.php:558 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: mod/message.php:332 mod/message.php:562 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: mod/message.php:371 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" - -#: mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s und Du" - -#: mod/message.php:405 mod/message.php:546 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: mod/message.php:450 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: mod/message.php:520 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: 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." - -#: mod/message.php:552 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Beitrag bearbeiten" - -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:978 -msgid "Save" -msgstr "Speichern" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "Bild hochladen" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "Weblink" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "Video-Link" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "Audio-Link" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "Ort setzen" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "Ort löschen" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Titel setzen" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:626 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: 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." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: 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." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: mod/dfrn_confirm.php:487 include/diaspora.php:622 -#: include/conversation.php:172 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: mod/dfrn_confirm.php:593 -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." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." - -#: mod/dfrn_confirm.php:628 -#, 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." - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l, F j" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: mod/events.php:361 include/text.php:1679 include/text.php:1689 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:663 include/nav.php:80 -msgid "Events" -msgstr "Veranstaltungen" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Vorherige" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Nächste" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:503 mod/directory.php:152 include/event.php:42 -#: include/identity.php:268 include/bb2diaspora.php:161 -msgid "Location:" -msgstr "Ort:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: mod/fbrowser.php:25 view/theme/diabook/theme.php:126 -#: include/identity.php:646 include/nav.php:78 -msgid "Photos" -msgstr "Bilder" - -#: mod/fbrowser.php:113 -msgid "Files" -msgstr "Dateien" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: 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/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: 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/nogroup.php:40 mod/contacts.php:573 mod/contacts.php:797 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" - -#: mod/nogroup.php:41 mod/contacts.php:798 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: mod/friendica.php:62 -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/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: mod/friendica.php:65 -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/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: 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/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bitte gib Dein Passwort zur Verifikation ein:" - -#: mod/wall_upload.php:122 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" - -#: mod/wall_upload.php:144 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: mod/wall_upload.php:169 mod/wall_upload.php:178 mod/wall_upload.php:185 -#: mod/item.php:486 include/message.php:144 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" - -#: mod/wall_upload.php:172 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" - -#: 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/api.php:89 -msgid "Please login to continue." -msgstr "Bitte melde Dich an um fortzufahren." - -#: 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/tagger.php:95 include/conversation.php:265 -#, 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/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: mod/photos.php:84 include/identity.php:649 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "jeder" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 -#: mod/profile_photo.php:88 mod/profile_photo.php:204 -#: mod/profile_photo.php:296 mod/profile_photo.php:305 -#: view/theme/diabook/theme.php:500 include/user.php:335 include/user.php:342 -#: include/user.php:349 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Berechtigungen" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1171 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1172 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Nicht rotieren" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Privates Foto" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Teilen" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" - -#: 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/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 "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/register.php:105 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: 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/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/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/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/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: 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/register.php:252 -msgid "Your invitation ID: " -msgstr "ID Deiner Einladung: " - -#: mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " - -#: mod/register.php:264 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " - -#: 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 "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/register.php:266 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: mod/register.php:269 boot.php:1238 include/nav.php:109 -msgid "Register" -msgstr "Registrieren" - -#: mod/register.php:275 mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importiere Dein Profil auf diese Friendica Instanz" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." - -#: 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 gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." - -#: 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 E-Mail 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" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: 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." - -#: mod/lostpass.php:109 boot.php:1277 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort - und dann" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "hier klicken, um Dich anzumelden" - -#: 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." - -#: 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 in eines, das Du Dir leicht merken kannst)." - -#: 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 "\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." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hast Du Dein Passwort vergessen?" - -#: 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." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Zurücksetzen" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: 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/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Hilfe:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Hilfe" - #: mod/contacts.php:114 #, php-format msgid "%d contact edited." @@ -2911,6 +60,31 @@ msgstr "Konnte das ausgewählte Profil nicht finden." msgid "Contact updated." msgstr "Kontakt aktualisiert." +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + +#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 +#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 +#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5023 index.php:382 +msgid "Permission denied." +msgstr "Zugriff verweigert." + #: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" @@ -2935,10 +109,30 @@ msgstr "Kontakt wurde archiviert" msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: mod/contacts.php:411 mod/contacts.php:754 +#: mod/contacts.php:411 mod/contacts.php:767 msgid "Do you really want to delete this contact?" msgstr "Möchtest Du wirklich diesen Kontakt löschen?" +#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 +#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 +#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 +#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 +#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 +#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/api.php:105 include/items.php:4855 +msgid "Yes" +msgstr "Ja" + +#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 +#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 +#: include/items.php:4858 +msgid "Cancel" +msgstr "Abbrechen" + #: mod/contacts.php:428 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." @@ -2962,6 +156,10 @@ msgstr "%s teilt mit Dir" msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." +#: mod/contacts.php:498 mod/admin.php:618 +msgid "Never" +msgstr "Niemals" + #: mod/contacts.php:502 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" @@ -2990,336 +188,362 @@ msgstr[1] "%d gemeinsame Kontakte" msgid "View all contacts" msgstr "Alle Kontakte anzeigen" +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1083 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1082 +msgid "Block" +msgstr "Sperren" + #: mod/contacts.php:524 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 msgid "Unignore" msgstr "Ignorieren aufheben" -#: mod/contacts.php:530 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/contacts.php:531 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: mod/contacts.php:534 mod/contacts.php:759 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: mod/contacts.php:534 mod/contacts.php:759 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Archive" msgstr "Archivieren" -#: mod/contacts.php:537 +#: mod/contacts.php:539 msgid "Toggle Archive status" msgstr "Archiviert-Status ein-/ausschalten" -#: mod/contacts.php:540 +#: mod/contacts.php:543 msgid "Repair" msgstr "Reparieren" -#: mod/contacts.php:543 +#: mod/contacts.php:546 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: mod/contacts.php:549 +#: mod/contacts.php:553 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: mod/contacts.php:552 +#: mod/contacts.php:556 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: mod/contacts.php:553 +#: mod/contacts.php:557 mod/admin.php:627 msgid "Disabled" msgstr "Deaktiviert" -#: mod/contacts.php:553 +#: mod/contacts.php:557 msgid "Fetch information" msgstr "Beziehe Information" -#: mod/contacts.php:553 +#: mod/contacts.php:557 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: mod/contacts.php:562 +#: mod/contacts.php:566 msgid "Contact Editor" msgstr "Kontakt Editor" -#: mod/contacts.php:565 +#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:511 mod/content.php:712 mod/install.php:250 +#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 +#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 +#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 +#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 +#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Senden" + +#: mod/contacts.php:569 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: mod/contacts.php:566 +#: mod/contacts.php:570 #, 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:567 +#: mod/contacts.php:571 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: mod/contacts.php:568 +#: mod/contacts.php:572 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: mod/contacts.php:574 +#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: mod/contacts.php:578 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: mod/contacts.php:575 +#: mod/contacts.php:579 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: mod/contacts.php:576 +#: mod/contacts.php:580 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: mod/contacts.php:577 +#: mod/contacts.php:581 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: mod/contacts.php:579 +#: mod/contacts.php:583 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: mod/contacts.php:583 +#: mod/contacts.php:587 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: mod/contacts.php:585 +#: mod/contacts.php:589 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: mod/contacts.php:594 +#: mod/contacts.php:591 mod/admin.php:1584 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: mod/contacts.php:598 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: mod/contacts.php:595 +#: mod/contacts.php:599 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: mod/contacts.php:596 +#: mod/contacts.php:600 msgid "Currently archived" msgstr "Momentan archiviert" -#: mod/contacts.php:597 +#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt vor andere" + +#: mod/contacts.php:601 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:598 +#: mod/contacts.php:602 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: mod/contacts.php:598 +#: mod/contacts.php:602 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: mod/contacts.php:601 +#: mod/contacts.php:605 msgid "Blacklisted keywords" msgstr "Blacklistete Schlüsselworte " -#: mod/contacts.php:601 +#: mod/contacts.php:605 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: mod/contacts.php:652 +#: mod/contacts.php:612 +msgid "Profile URL" +msgstr "Profil URL" + +#: mod/contacts.php:658 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: mod/contacts.php:655 +#: mod/contacts.php:661 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: mod/contacts.php:658 mod/group.php:192 +#: mod/contacts.php:665 mod/group.php:192 msgid "All Contacts" msgstr "Alle Kontakte" -#: mod/contacts.php:661 +#: mod/contacts.php:668 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:664 +#: mod/contacts.php:672 msgid "Unblocked" msgstr "Ungeblockt" -#: mod/contacts.php:667 +#: mod/contacts.php:675 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: mod/contacts.php:671 +#: mod/contacts.php:680 msgid "Blocked" msgstr "Geblockt" -#: mod/contacts.php:674 +#: mod/contacts.php:683 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: mod/contacts.php:678 +#: mod/contacts.php:688 msgid "Ignored" msgstr "Ignoriert" -#: mod/contacts.php:681 +#: mod/contacts.php:691 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: mod/contacts.php:685 +#: mod/contacts.php:696 msgid "Archived" msgstr "Archiviert" -#: mod/contacts.php:688 +#: mod/contacts.php:699 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: mod/contacts.php:692 +#: mod/contacts.php:704 msgid "Hidden" msgstr "Verborgen" -#: mod/contacts.php:695 +#: mod/contacts.php:707 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: mod/contacts.php:745 view/theme/diabook/theme.php:125 include/nav.php:178 +#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 +#: include/nav.php:186 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Kontakte" -#: mod/contacts.php:749 +#: mod/contacts.php:762 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: mod/contacts.php:750 mod/directory.php:63 +#: mod/contacts.php:763 mod/directory.php:63 msgid "Finding: " msgstr "Funde: " -#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Finde" -#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647 +#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Aktualisierungen" -#: mod/contacts.php:773 +#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 +#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 +msgid "Delete" +msgstr "Löschen" + +#: mod/contacts.php:786 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: mod/contacts.php:777 +#: mod/contacts.php:790 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: mod/contacts.php:781 +#: mod/contacts.php:794 msgid "you are a fan of" msgstr "Du bist Fan von" -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Möchtest Du dieses Video wirklich löschen?" +#: mod/contacts.php:811 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Video Löschen" +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: mod/follow.php:24 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:106 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: mod/bookmarklet.php:12 boot.php:1263 include/nav.php:92 -msgid "Login" -msgstr "Anmeldung" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Der Beitrag wurde angelegt" - -#: 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 +#: mod/manage.php:107 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." +"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/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/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." -#: 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/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Zugriff verweigert" -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 +#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Sichtbar für" -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Entfernen" +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 +#: mod/notice.php:15 include/items.php:4814 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/directory.php:35 mod/photos.php:942 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: mod/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -3352,6 +576,12 @@ msgid "" " 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." +#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 +#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Einstellungen" + #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Gehe zu deinen Einstellungen" @@ -3371,13 +601,7 @@ msgid "" "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." -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:529 include/identity.php:610 include/identity.php:639 -#: include/nav.php:77 -msgid "Profile" -msgstr "Profil" - -#: mod/newmember.php:36 mod/profiles.php:695 mod/profile_photo.php:244 +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" @@ -3516,1392 +740,31 @@ msgid "" " features and resources." msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." -#: mod/search.php:21 mod/network.php:187 -msgid "Remove term" -msgstr "Begriff entfernen" +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: mod/search.php:30 mod/network.php:196 include/features.php:42 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" - -#: mod/search.php:99 include/text.php:977 include/nav.php:119 -msgid "Search" -msgstr "Suche" - -#: mod/search.php:174 mod/community.php:62 mod/community.php:71 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: mod/search.php:180 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge markiert mit: %s" - -#: mod/search.php:182 -#, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" - -#: 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/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." - -#: 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/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" - -#: mod/invite.php:120 -#, php-format +#: mod/openid.php:53 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." +"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." -#: mod/invite.php:122 -#, 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." - -#: 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/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/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" - -#: 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." - -#: 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/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:" - -#: 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" - -#: mod/settings.php:46 -msgid "Additional features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:51 -msgid "Display" -msgstr "Anzeige" - -#: mod/settings.php:57 mod/settings.php:805 -msgid "Social Networks" -msgstr "Soziale Netzwerke" - -#: mod/settings.php:67 include/nav.php:171 -msgid "Delegations" -msgstr "Delegationen" - -#: mod/settings.php:72 -msgid "Connected apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:77 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" - -#: mod/settings.php:82 -msgid "Remove account" -msgstr "Konto löschen" - -#: mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: mod/settings.php:245 -msgid "Failed to connect with email account using the settings provided." -msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." - -#: mod/settings.php:250 -msgid "Email settings updated." -msgstr "E-Mail Einstellungen bearbeitet." - -#: mod/settings.php:265 -msgid "Features updated" -msgstr "Features aktualisiert" - -#: mod/settings.php:328 -msgid "Relocate message has been send to your contacts" -msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." - -#: mod/settings.php:342 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: mod/settings.php:347 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." - -#: mod/settings.php:355 -msgid "Wrong password." -msgstr "Falsches Passwort." - -#: mod/settings.php:366 -msgid "Password changed." -msgstr "Passwort geändert." - -#: mod/settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: mod/settings.php:435 -msgid " Please use a shorter name." -msgstr " Bitte verwende einen kürzeren Namen." - -#: mod/settings.php:437 -msgid " Name too short." -msgstr " Name ist zu kurz." - -#: mod/settings.php:446 -msgid "Wrong Password" -msgstr "Falsches Passwort" - -#: mod/settings.php:451 -msgid " Not valid email." -msgstr " Keine gültige E-Mail." - -#: mod/settings.php:457 -msgid " Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: mod/settings.php:513 -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:517 -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:547 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 -msgid "Add application" -msgstr "Programm hinzufügen" - -#: mod/settings.php:624 mod/settings.php:650 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:625 mod/settings.php:651 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:626 mod/settings.php:652 -msgid "Redirect" -msgstr "Umleiten" - -#: mod/settings.php:627 mod/settings.php:653 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:638 -msgid "You can't edit this application." -msgstr "Du kannst dieses Programm nicht bearbeiten." - -#: mod/settings.php:681 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:685 -msgid "Client key starts with" -msgstr "Anwenderschlüssel beginnt mit" - -#: mod/settings.php:686 -msgid "No name" -msgstr "Kein Name" - -#: mod/settings.php:687 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: mod/settings.php:699 -msgid "No Plugin settings configured" -msgstr "Keine Plugin-Einstellungen konfiguriert" - -#: mod/settings.php:707 -msgid "Plugin Settings" -msgstr "Plugin-Einstellungen" - -#: mod/settings.php:721 -msgid "Off" -msgstr "Aus" - -#: mod/settings.php:721 -msgid "On" -msgstr "An" - -#: mod/settings.php:729 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:739 mod/settings.php:743 -msgid "General Social Media Settings" -msgstr "Allgemeine Einstellungen zu Sozialen Medien" - -#: mod/settings.php:749 -msgid "Disable intelligent shortening" -msgstr "Intelligentes Link kürzen ausschalten" - -#: mod/settings.php:751 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." - -#: mod/settings.php:761 mod/settings.php:762 -#, 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:761 mod/settings.php:762 -msgid "enabled" -msgstr "eingeschaltet" - -#: mod/settings.php:761 mod/settings.php:762 -msgid "disabled" -msgstr "ausgeschaltet" - -#: mod/settings.php:762 -msgid "StatusNet" -msgstr "StatusNet" - -#: mod/settings.php:798 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: mod/settings.php:810 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: mod/settings.php:811 -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:812 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail Check" - -#: mod/settings.php:814 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" - -#: mod/settings.php:815 -msgid "IMAP port:" -msgstr "IMAP-Port:" - -#: mod/settings.php:816 -msgid "Security:" -msgstr "Sicherheit:" - -#: mod/settings.php:816 mod/settings.php:821 -msgid "None" -msgstr "Keine" - -#: mod/settings.php:817 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" - -#: mod/settings.php:818 -msgid "Email password:" -msgstr "E-Mail-Passwort:" - -#: mod/settings.php:819 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: mod/settings.php:820 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: mod/settings.php:821 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: mod/settings.php:821 -msgid "Mark as seen" -msgstr "Als gelesen markieren" - -#: mod/settings.php:821 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: mod/settings.php:822 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: mod/settings.php:903 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: mod/settings.php:909 mod/settings.php:924 -msgid "Display Theme:" -msgstr "Theme:" - -#: mod/settings.php:910 -msgid "Mobile Theme:" -msgstr "Mobiles Theme" - -#: mod/settings.php:911 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: mod/settings.php:911 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimal 10 Sekunden, kein Maximum" - -#: mod/settings.php:912 -msgid "Number of items to display per page:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " - -#: mod/settings.php:912 mod/settings.php:913 -msgid "Maximum of 100 items" -msgstr "Maximal 100 Beiträge" - -#: mod/settings.php:913 -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:914 -msgid "Don't show emoticons" -msgstr "Keine Smilies anzeigen" - -#: mod/settings.php:915 -msgid "Don't show notices" -msgstr "Info-Popups nicht anzeigen" - -#: mod/settings.php:916 -msgid "Infinite scroll" -msgstr "Endloses Scrollen" - -#: mod/settings.php:917 -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:994 -msgid "User Types" -msgstr "Nutzer Art" - -#: mod/settings.php:995 -msgid "Community Types" -msgstr "Gemeinschafts Art" - -#: mod/settings.php:996 -msgid "Normal Account Page" -msgstr "Normales Konto" - -#: mod/settings.php:997 -msgid "This account is a normal personal profile" -msgstr "Dieses Konto ist ein normales persönliches Profil" - -#: mod/settings.php:1000 -msgid "Soapbox Page" -msgstr "Marktschreier-Konto" - -#: mod/settings.php:1001 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" - -#: mod/settings.php:1004 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: mod/settings.php:1005 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" - -#: mod/settings.php:1008 -msgid "Automatic Friend Page" -msgstr "Automatische Freunde Seite" - -#: mod/settings.php:1009 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" - -#: mod/settings.php:1012 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" - -#: mod/settings.php:1013 -msgid "Private forum - approved members only" -msgstr "Privates Forum, nur für Mitglieder" - -#: mod/settings.php:1025 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1025 -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:1035 -msgid "Publish your default profile in your local site directory?" -msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" - -#: mod/settings.php:1041 -msgid "Publish your default profile in the global social directory?" -msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" - -#: mod/settings.php:1049 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" - -#: mod/settings.php:1053 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" - -#: mod/settings.php:1053 -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:1058 -msgid "Allow friends to post to your profile page?" -msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" - -#: mod/settings.php:1064 -msgid "Allow friends to tag your posts?" -msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" - -#: mod/settings.php:1070 -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:1076 -msgid "Permit unknown people to send you private mail?" -msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" - -#: mod/settings.php:1084 -msgid "Profile is not published." -msgstr "Profil ist nicht veröffentlicht." - -#: mod/settings.php:1087 mod/profile_photo.php:248 -msgid "or" -msgstr "oder" - -#: mod/settings.php:1092 -msgid "Your Identity Address is" -msgstr "Die Adresse Deines Profils lautet:" - -#: mod/settings.php:1101 -msgid "Automatically expire posts after this many days:" -msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" - -#: mod/settings.php:1101 -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:1102 -msgid "Advanced expiration settings" -msgstr "Erweiterte Verfallseinstellungen" - -#: mod/settings.php:1103 -msgid "Advanced Expiration" -msgstr "Erweitertes Verfallen" - -#: mod/settings.php:1104 -msgid "Expire posts:" -msgstr "Beiträge verfallen lassen:" - -#: mod/settings.php:1105 -msgid "Expire personal notes:" -msgstr "Persönliche Notizen verfallen lassen:" - -#: mod/settings.php:1106 -msgid "Expire starred posts:" -msgstr "Markierte Beiträge verfallen lassen:" - -#: mod/settings.php:1107 -msgid "Expire photos:" -msgstr "Fotos verfallen lassen:" - -#: mod/settings.php:1108 -msgid "Only expire posts by others:" -msgstr "Nur Beiträge anderer verfallen:" - -#: mod/settings.php:1134 -msgid "Account Settings" -msgstr "Kontoeinstellungen" - -#: mod/settings.php:1142 -msgid "Password Settings" -msgstr "Passwort-Einstellungen" - -#: mod/settings.php:1143 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: mod/settings.php:1144 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: mod/settings.php:1144 -msgid "Leave password fields blank unless changing" -msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" - -#: mod/settings.php:1145 -msgid "Current Password:" -msgstr "Aktuelles Passwort:" - -#: mod/settings.php:1145 mod/settings.php:1146 -msgid "Your current password to confirm the changes" -msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" - -#: mod/settings.php:1146 -msgid "Password:" -msgstr "Passwort:" - -#: mod/settings.php:1150 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: mod/settings.php:1151 include/identity.php:538 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: mod/settings.php:1152 -msgid "Email Address:" -msgstr "E-Mail-Adresse:" - -#: mod/settings.php:1153 -msgid "Your Timezone:" -msgstr "Deine Zeitzone:" - -#: mod/settings.php:1154 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: mod/settings.php:1155 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: mod/settings.php:1158 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Privatsphäre-Einstellungen" - -#: mod/settings.php:1160 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" - -#: mod/settings.php:1160 mod/settings.php:1190 -msgid "(to prevent spam abuse)" -msgstr "(um SPAM zu vermeiden)" - -#: mod/settings.php:1161 -msgid "Default Post Permissions" -msgstr "Standard-Zugriffsrechte für Beiträge" - -#: mod/settings.php:1162 -msgid "(click to open/close)" -msgstr "(klicke zum öffnen/schließen)" - -#: mod/settings.php:1173 -msgid "Default Private Post" -msgstr "Privater Standardbeitrag" - -#: mod/settings.php:1174 -msgid "Default Public Post" -msgstr "Öffentlicher Standardbeitrag" - -#: mod/settings.php:1178 -msgid "Default Permissions for New Posts" -msgstr "Standardberechtigungen für neue Beiträge" - -#: mod/settings.php:1190 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" - -#: mod/settings.php:1193 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: mod/settings.php:1194 -msgid "By default post a status message when:" -msgstr "Standardmäßig eine Statusnachricht posten, wenn:" - -#: mod/settings.php:1195 -msgid "accepting a friend request" -msgstr "– Du eine Kontaktanfrage akzeptierst" - -#: mod/settings.php:1196 -msgid "joining a forum/community" -msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" - -#: mod/settings.php:1197 -msgid "making an interesting profile change" -msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" - -#: mod/settings.php:1198 -msgid "Send a notification email when:" -msgstr "Benachrichtigungs-E-Mail senden wenn:" - -#: mod/settings.php:1199 -msgid "You receive an introduction" -msgstr "– Du eine Kontaktanfrage erhältst" - -#: mod/settings.php:1200 -msgid "Your introductions are confirmed" -msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" - -#: mod/settings.php:1201 -msgid "Someone writes on your profile wall" -msgstr "– jemand etwas auf Deine Pinnwand schreibt" - -#: mod/settings.php:1202 -msgid "Someone writes a followup comment" -msgstr "– jemand auch einen Kommentar verfasst" - -#: mod/settings.php:1203 -msgid "You receive a private message" -msgstr "– Du eine private Nachricht erhältst" - -#: mod/settings.php:1204 -msgid "You receive a friend suggestion" -msgstr "– Du eine Empfehlung erhältst" - -#: mod/settings.php:1205 -msgid "You are tagged in a post" -msgstr "– Du in einem Beitrag erwähnt wirst" - -#: mod/settings.php:1206 -msgid "You are poked/prodded/etc. in a post" -msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" - -#: mod/settings.php:1208 -msgid "Activate desktop notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1208 -msgid "Show desktop popup on new notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1210 -msgid "Text-only notification emails" -msgstr "Benachrichtigungs E-Mail als Rein-Text." - -#: mod/settings.php:1212 -msgid "Send text only notification emails, without the html part" -msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" - -#: mod/settings.php:1214 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" - -#: mod/settings.php:1215 -msgid "Change the behaviour of this account for special situations" -msgstr "Verhalten dieses Kontos in bestimmten Situationen:" - -#: mod/settings.php:1218 -msgid "Relocate" -msgstr "Umziehen" - -#: mod/settings.php:1219 -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:1220 -msgid "Resend relocate message to contacts" -msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." - -#: mod/dirfind.php:27 -#, php-format -msgid "People Search - %s" -msgstr "Personensuche - %s" - -#: mod/dirfind.php:62 mod/match.php:73 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Neues Profil angelegt." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil nicht zum Duplizieren verfügbar." - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "Familienstand" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Romanze" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "Likes" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "Dislikes" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Arbeit / Beschäftigung" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Religion" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Geschlecht" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Sexuelle Vorlieben" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Webseite" - -#: mod/profiles.php:375 mod/profiles.php:694 -msgid "Interests" -msgstr "Interessen" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Adresse" - -#: mod/profiles.php:386 mod/profiles.php:690 -msgid "Location" -msgstr "Wohnort" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: mod/profiles.php:564 -msgid " and " -msgstr " und " - -#: mod/profiles.php:572 -msgid "public profile" -msgstr "öffentliches Profil" - -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s geändert auf “%3$s”" - -#: mod/profiles.php:576 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " – %1$ss %2$s besuchen" - -#: mod/profiles.php:579 -#, 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/profiles.php:654 -msgid "Hide contacts and friends:" -msgstr "Kontakte und Freunde verbergen" - -#: mod/profiles.php:659 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" - -#: mod/profiles.php:681 -msgid "Edit Profile Details" -msgstr "Profil bearbeiten" - -#: mod/profiles.php:683 -msgid "Change Profile Photo" -msgstr "Profilbild ändern" - -#: mod/profiles.php:684 -msgid "View this profile" -msgstr "Dieses Profil anzeigen" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen verwenden" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "Dieses Profil duplizieren" - -#: mod/profiles.php:687 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" - -#: mod/profiles.php:688 -msgid "Basic information" -msgstr "Grundinformationen" - -#: mod/profiles.php:689 -msgid "Profile picture" -msgstr "Profilbild" - -#: mod/profiles.php:691 -msgid "Preferences" -msgstr "Vorlieben" - -#: mod/profiles.php:692 -msgid "Status information" -msgstr "Status Informationen" - -#: mod/profiles.php:693 -msgid "Additional information" -msgstr "Zusätzliche Informationen" - -#: mod/profiles.php:696 -msgid "Profile Name:" -msgstr "Profilname:" - -#: mod/profiles.php:697 -msgid "Your Full Name:" -msgstr "Dein kompletter Name:" - -#: mod/profiles.php:698 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" - -#: mod/profiles.php:699 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: mod/profiles.php:700 -msgid "Birthday :" -msgstr "Geburtstag :" - -#: mod/profiles.php:701 -msgid "Street Address:" -msgstr "Adresse:" - -#: mod/profiles.php:702 -msgid "Locality/City:" -msgstr "Wohnort:" - -#: mod/profiles.php:703 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" - -#: mod/profiles.php:704 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:705 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: mod/profiles.php:706 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" - -#: mod/profiles.php:707 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" - -#: mod/profiles.php:708 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:709 -msgid "Since [date]:" -msgstr "Seit [Datum]:" - -#: mod/profiles.php:710 include/identity.php:569 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" - -#: mod/profiles.php:711 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" - -#: mod/profiles.php:712 include/identity.php:573 -msgid "Hometown:" -msgstr "Heimatort:" - -#: mod/profiles.php:713 include/identity.php:577 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: mod/profiles.php:714 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: mod/profiles.php:715 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" - -#: mod/profiles.php:716 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" - -#: mod/profiles.php:717 include/identity.php:585 -msgid "Likes:" -msgstr "Likes:" - -#: mod/profiles.php:718 include/identity.php:587 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: mod/profiles.php:719 -msgid "Example: fishing photography software" -msgstr "Beispiel: Fischen Fotografie Software" - -#: mod/profiles.php:720 -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/profiles.php:721 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" - -#: mod/profiles.php:722 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein bisschen von Dir …" - -#: mod/profiles.php:723 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" - -#: mod/profiles.php:724 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" - -#: mod/profiles.php:725 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: mod/profiles.php:726 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: mod/profiles.php:727 -msgid "Television" -msgstr "Fernsehen" - -#: mod/profiles.php:728 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" - -#: mod/profiles.php:729 -msgid "Love/romance" -msgstr "Liebe/Romantik" - -#: mod/profiles.php:730 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" - -#: mod/profiles.php:731 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: mod/profiles.php:736 -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." - -#: mod/profiles.php:746 mod/directory.php:129 -msgid "Age: " -msgstr "Alter: " - -#: mod/profiles.php:799 -msgid "Edit/Manage Profiles" -msgstr "Bearbeite/Verwalte Profile" - -#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: mod/profiles.php:801 include/identity.php:232 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" - -#: mod/profiles.php:812 include/identity.php:242 -msgid "Profile Image" -msgstr "Profilbild" - -#: mod/profiles.php:814 include/identity.php:245 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: mod/profiles.php:815 include/identity.php:246 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: mod/share.php:38 -msgid "link" -msgstr "Link" - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Account exportieren" - -#: 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 "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exportieren" - -#: 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 "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/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:129 -#: include/nav.php:131 -msgid "Community" -msgstr "Gemeinschaft" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" - -#: 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 %s" -msgstr "Die Datei ist größer als das erlaubte Limit von %s" - -#: mod/wall_attach.php:122 mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Sichtbar für" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest Du wirklich diese Empfehlung löschen?" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/suggest.php:76 -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/suggest.php:92 mod/match.php:65 include/identity.php:188 -#: include/contact_widgets.php:10 -msgid "Connect" -msgstr "Verbinden" - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: 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/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" - -#: 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/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: mod/delegate.php:130 include/nav.php:171 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: 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/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Hinzufügen" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Keine Einträge." - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: mod/viewcontacts.php:78 include/text.php:899 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: mod/notes.php:44 include/identity.php:670 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Anstupsen" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Empfänger" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst Du mit dem Empfänger machen:" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Geschlecht:" - -#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 -msgid "Gender:" -msgstr "Geschlecht:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Status:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 -msgid "About:" -msgstr "Über:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:139 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zeitumrechnung" - -#: 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/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC Zeit: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuelle Zeitzone: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umgerechnete lokale Zeit: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Bitte wähle Deine Zeitzone:" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." #: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 +#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Profilbilder" + #: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 #: mod/profile_photo.php:308 #, php-format @@ -4918,6 +781,15 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildgröße überschreitet das Limit von %s" + +#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." + #: mod/profile_photo.php:242 msgid "Upload File:" msgstr "Datei hochladen:" @@ -4930,6 +802,10 @@ msgstr "Profil auswählen:" msgid "Upload" msgstr "Hochladen" +#: mod/profile_photo.php:248 +msgid "or" +msgstr "oder" + #: mod/profile_photo.php:248 msgid "skip this step" msgstr "diesen Schritt überspringen" @@ -4954,6 +830,2618 @@ msgstr "Bearbeitung abgeschlossen" msgid "Image uploaded successfully." msgstr "Bild erfolgreich hochgeladen." +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2034 include/diaspora.php:2127 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "Foto" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "Status" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Entfernen" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Speichern" + +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: mod/follow.php:58 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: mod/follow.php:59 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s Dich?" + +#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 +#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 +#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 +#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "Nein" + +#: mod/follow.php:60 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: mod/follow.php:66 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: mod/follow.php:69 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/follow.php:108 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." + +#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 +#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." + +#: mod/item.php:989 +#, 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." + +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" + +#: mod/item.php:992 +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." + +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." + +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: mod/group.php:190 +msgid "Members" +msgstr "Mitglieder" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." + +#: 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." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: 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." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:634 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." + +#: mod/dfrn_confirm.php:593 +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." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." + +#: mod/dfrn_confirm.php:628 +#, 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." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Möchtest Du dieses Video wirklich löschen?" + +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Video Löschen" + +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" + +#: mod/videos.php:298 mod/photos.php:1053 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Video ansehen" + +#: mod/videos.php:380 mod/photos.php:1827 +msgid "View Album" +msgstr "Album betrachten" + +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kontaktvorschlag gesendet." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" + +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Ungültige Anfrage" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." + +#: 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 gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." + +#: 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 E-Mail 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" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" + +#: 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." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort - und dann" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "hier klicken, um Dich anzumelden" + +#: 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." + +#: 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 in eines, das Du Dir leicht merken kannst)." + +#: 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 "\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." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hast Du Dein Passwort vergessen?" + +#: 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." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Zurücksetzen" + +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" + +#: 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" + +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" + +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Verwerfen" + +#: mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Netzwerk" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Persönlich" + +#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Pinnwand" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Kontaktanfragen" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "falls anwendbar" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 +msgid "Approve" +msgstr "Genehmigen" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Behauptet Dich zu kennen: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:191 +msgid "no" +msgstr "nein" + +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Freund" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Teilenden" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Neuer Bewunderer" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "Ort:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:581 +msgid "About:" +msgstr "Über:" + +#: mod/notifications.php:224 include/identity.php:575 +msgid "Tags:" +msgstr "Tags" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:540 +msgid "Gender:" +msgstr "Geschlecht:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mag %ss Beitrag nicht" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ist jetzt mit %s befreundet" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hat %ss Beitrag kommentiert" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Originaltext:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Originaltext (Diaspora Format): " + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Neue Nachricht" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Nachrichten" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Möchtest Du wirklich diese Nachricht löschen?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "An:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Betreff:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: mod/message.php:335 mod/message.php:566 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Bitte warten" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s und Du" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: mod/message.php:549 +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." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Antwort senden" + +#: 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]" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Kein Spiegeln" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Kontaktdaten neu laden" + +#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 +#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 +#: mod/settings.php:660 +msgid "Name" +msgstr "Name" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Konto-Spitzname" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "Konto-URL" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Anmeldung" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Der Beitrag wurde angelegt" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Personensuche - %s" + +#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Verbinden" + +#: mod/dirfind.php:139 mod/match.php:73 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Bilder" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "Dateien" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" + +#: mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Themeneinstellungen aktualisiert." + +#: mod/admin.php:104 mod/admin.php:682 +msgid "Site" +msgstr "Seite" + +#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 +msgid "Users" +msgstr "Nutzer" + +#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 +msgid "Themes" +msgstr "Themen" + +#: mod/admin.php:108 +msgid "DB updates" +msgstr "DB Updates" + +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Warteschlange Inspizieren" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 +msgid "Logs" +msgstr "Protokolle" + +#: mod/admin.php:125 +msgid "probe address" +msgstr "Adresse untersuchen" + +#: mod/admin.php:126 +msgid "check webfinger" +msgstr "Webfinger überprüfen" + +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Administration" + +#: mod/admin.php:132 +msgid "Plugin Features" +msgstr "Plugin Features" + +#: mod/admin.php:134 +msgid "diagnostics" +msgstr "Diagnose" + +#: mod/admin.php:135 +msgid "User registrations waiting for confirmation" +msgstr "Nutzeranmeldungen die auf Bestätigung warten" + +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 +#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 +#: mod/admin.php:1524 +msgid "Administration" +msgstr "Administration" + +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Empfänger Name" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Empfänger Profil" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Erstellt" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Zuletzt versucht" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden." + +#: mod/admin.php:220 mod/admin.php:1025 +msgid "Normal Account" +msgstr "Normales Konto" + +#: mod/admin.php:221 mod/admin.php:1026 +msgid "Soapbox Account" +msgstr "Marktschreier-Konto" + +#: mod/admin.php:222 mod/admin.php:1027 +msgid "Community/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: mod/admin.php:223 mod/admin.php:1028 +msgid "Automatic Friend Account" +msgstr "Automatisches Freundekonto" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Blog-Konto" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Privates Forum" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "Zusammenfassung" + +#: mod/admin.php:252 +msgid "Registered users" +msgstr "Registrierte Nutzer" + +#: mod/admin.php:254 +msgid "Pending registrations" +msgstr "Anstehende Anmeldungen" + +#: mod/admin.php:255 +msgid "Version" +msgstr "Version" + +#: mod/admin.php:260 +msgid "Active plugins" +msgstr "Aktive Plugins" + +#: mod/admin.php:283 +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:565 +msgid "Site settings updated." +msgstr "Seiteneinstellungen aktualisiert." + +#: mod/admin.php:594 mod/settings.php:883 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + +#: mod/admin.php:611 +msgid "No community page" +msgstr "Keine Gemeinschaftsseite" + +#: mod/admin.php:612 +msgid "Public postings from users of this site" +msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" + +#: mod/admin.php:613 +msgid "Global community page" +msgstr "Globale Gemeinschaftsseite" + +#: mod/admin.php:619 +msgid "At post arrival" +msgstr "Beim Empfang von Nachrichten" + +#: mod/admin.php:620 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "immer wieder" + +#: mod/admin.php:621 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" + +#: mod/admin.php:622 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: mod/admin.php:623 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" + +#: mod/admin.php:629 +msgid "Users, Global Contacts" +msgstr "Nutzer, globale Kontakte" + +#: mod/admin.php:630 +msgid "Users, Global Contacts/fallback" +msgstr "Nutzer, globale Kontakte / Fallback" + +#: mod/admin.php:634 +msgid "One month" +msgstr "ein Monat" + +#: mod/admin.php:635 +msgid "Three months" +msgstr "drei Monate" + +#: mod/admin.php:636 +msgid "Half a year" +msgstr "ein halbes Jahr" + +#: mod/admin.php:637 +msgid "One year" +msgstr "ein Jahr" + +#: mod/admin.php:642 +msgid "Multi user instance" +msgstr "Mehrbenutzer Instanz" + +#: mod/admin.php:665 +msgid "Closed" +msgstr "Geschlossen" + +#: mod/admin.php:666 +msgid "Requires approval" +msgstr "Bedarf der Zustimmung" + +#: mod/admin.php:667 +msgid "Open" +msgstr "Offen" + +#: mod/admin.php:671 +msgid "No SSL policy, links will track page SSL state" +msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" + +#: mod/admin.php:672 +msgid "Force all links to use SSL" +msgstr "SSL für alle Links erzwingen" + +#: mod/admin.php:673 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" + +#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 +#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: mod/admin.php:684 mod/register.php:260 +msgid "Registration" +msgstr "Registrierung" + +#: mod/admin.php:685 +msgid "File upload" +msgstr "Datei hochladen" + +#: mod/admin.php:686 +msgid "Policies" +msgstr "Regeln" + +#: mod/admin.php:687 +msgid "Advanced" +msgstr "Erweitert" + +#: mod/admin.php:688 +msgid "Auto Discovered Contact Directory" +msgstr "Automatisch ein Kontaktverzeichnis erstellen" + +#: mod/admin.php:689 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:690 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." + +#: mod/admin.php:693 +msgid "Site name" +msgstr "Seitenname" + +#: mod/admin.php:694 +msgid "Host name" +msgstr "Host Name" + +#: mod/admin.php:695 +msgid "Sender Email" +msgstr "Absender für Emails" + +#: mod/admin.php:695 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll." + +#: mod/admin.php:696 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:697 +msgid "Shortcut icon" +msgstr "Shortcut Icon" + +#: mod/admin.php:697 +msgid "Link to an icon that will be used for browsers." +msgstr "Link zu einem Icon, das Browser verwenden werden." + +#: mod/admin.php:698 +msgid "Touch icon" +msgstr "Touch Icon" + +#: mod/admin.php:698 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen." + +#: mod/admin.php:699 +msgid "Additional Info" +msgstr "Zusätzliche Informationen" + +#: mod/admin.php:699 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden." + +#: mod/admin.php:700 +msgid "System language" +msgstr "Systemsprache" + +#: mod/admin.php:701 +msgid "System theme" +msgstr "Systemweites Theme" + +#: mod/admin.php:701 +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/admin.php:702 +msgid "Mobile system theme" +msgstr "Systemweites mobiles Theme" + +#: mod/admin.php:702 +msgid "Theme for mobile devices" +msgstr "Thema für mobile Geräte" + +#: mod/admin.php:703 +msgid "SSL link policy" +msgstr "Regeln für SSL Links" + +#: mod/admin.php:703 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" + +#: mod/admin.php:704 +msgid "Force SSL" +msgstr "Erzwinge SSL" + +#: mod/admin.php:704 +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." + +#: mod/admin.php:705 +msgid "Old style 'Share'" +msgstr "Altes \"Teilen\" Element" + +#: mod/admin.php:705 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." + +#: mod/admin.php:706 +msgid "Hide help entry from navigation menu" +msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" + +#: mod/admin.php:706 +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." + +#: mod/admin.php:707 +msgid "Single user instance" +msgstr "Ein-Nutzer Instanz" + +#: mod/admin.php:707 +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/admin.php:708 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: mod/admin.php:708 +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." + +#: mod/admin.php:709 +msgid "Maximum image length" +msgstr "Maximale Bildlänge" + +#: mod/admin.php:709 +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:710 +msgid "JPEG image quality" +msgstr "Qualität des JPEG Bildes" + +#: mod/admin.php:710 +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." + +#: mod/admin.php:712 +msgid "Register policy" +msgstr "Registrierungsmethode" + +#: mod/admin.php:713 +msgid "Maximum Daily Registrations" +msgstr "Maximum täglicher Registrierungen" + +#: mod/admin.php:713 +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/admin.php:714 +msgid "Register text" +msgstr "Registrierungstext" + +#: mod/admin.php:714 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." + +#: mod/admin.php:715 +msgid "Accounts abandoned after x days" +msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" + +#: mod/admin.php:715 +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/admin.php:716 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: mod/admin.php:716 +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/admin.php:717 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: mod/admin.php:717 +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/admin.php:718 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: mod/admin.php:718 +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/admin.php:719 +msgid "Force publish" +msgstr "Erzwinge Veröffentlichung" + +#: mod/admin.php:719 +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/admin.php:720 +msgid "Global directory update URL" +msgstr "URL für Updates beim weltweiten Verzeichnis" + +#: mod/admin.php:720 +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/admin.php:721 +msgid "Allow threaded items" +msgstr "Erlaube Threads in Diskussionen" + +#: mod/admin.php:721 +msgid "Allow infinite level threading for items on this site." +msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." + +#: mod/admin.php:722 +msgid "Private posts by default for new users" +msgstr "Private Beiträge als Standard für neue Nutzer" + +#: mod/admin.php:722 +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/admin.php:723 +msgid "Don't include post content in email notifications" +msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" + +#: mod/admin.php:723 +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/admin.php:724 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." + +#: mod/admin.php:724 +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/admin.php:725 +msgid "Don't embed private images in posts" +msgstr "Private Bilder nicht in Beiträgen einbetten." + +#: mod/admin.php:725 +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/admin.php:726 +msgid "Allow Users to set remote_self" +msgstr "Nutzern erlauben das remote_self Flag zu setzen" + +#: mod/admin.php:726 +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/admin.php:727 +msgid "Block multiple registrations" +msgstr "Unterbinde Mehrfachregistrierung" + +#: mod/admin.php:727 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." + +#: mod/admin.php:728 +msgid "OpenID support" +msgstr "OpenID Unterstützung" + +#: mod/admin.php:728 +msgid "OpenID support for registration and logins." +msgstr "OpenID-Unterstützung für Registrierung und Login." + +#: mod/admin.php:729 +msgid "Fullname check" +msgstr "Namen auf Vollständigkeit überprüfen" + +#: mod/admin.php:729 +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/admin.php:730 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Reguläre Ausdrücke" + +#: mod/admin.php:730 +msgid "Use PHP UTF8 regular expressions" +msgstr "PHP UTF8 Ausdrücke verwenden" + +#: mod/admin.php:731 +msgid "Community Page Style" +msgstr "Art der Gemeinschaftsseite" + +#: mod/admin.php:731 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen." + +#: mod/admin.php:732 +msgid "Posts per user on community page" +msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" + +#: mod/admin.php:732 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt." + +#: mod/admin.php:733 +msgid "Enable OStatus support" +msgstr "OStatus Unterstützung aktivieren" + +#: mod/admin.php:733 +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." + +#: mod/admin.php:734 +msgid "OStatus conversation completion interval" +msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" + +#: mod/admin.php:734 +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/admin.php:735 +msgid "Enable Diaspora support" +msgstr "Diaspora Unterstützung aktivieren" + +#: mod/admin.php:735 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Verwende die eingebaute Diaspora-Verknüpfung." + +#: mod/admin.php:736 +msgid "Only allow Friendica contacts" +msgstr "Nur Friendica-Kontakte erlauben" + +#: mod/admin.php:736 +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/admin.php:737 +msgid "Verify SSL" +msgstr "SSL Überprüfen" + +#: mod/admin.php:737 +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." + +#: mod/admin.php:738 +msgid "Proxy user" +msgstr "Proxy Nutzer" + +#: mod/admin.php:739 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: mod/admin.php:740 +msgid "Network timeout" +msgstr "Netzwerk Wartezeit" + +#: mod/admin.php:740 +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/admin.php:741 +msgid "Delivery interval" +msgstr "Zustellungsintervall" + +#: mod/admin.php:741 +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." + +#: mod/admin.php:742 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: mod/admin.php:742 +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." + +#: mod/admin.php:743 +msgid "Maximum Load Average" +msgstr "Maximum Load Average" + +#: mod/admin.php:743 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" + +#: mod/admin.php:744 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum Load Average (Frontend)" + +#: mod/admin.php:744 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." + +#: mod/admin.php:746 +msgid "Periodical check of global contacts" +msgstr "Regelmäßig globale Kontakte überprüfen" + +#: mod/admin.php:746 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft." + +#: mod/admin.php:747 +msgid "Discover contacts from other servers" +msgstr "Neue Kontakte auf anderen Servern entdecken" + +#: mod/admin.php:747 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." + +#: mod/admin.php:748 +msgid "Timeframe for fetching global contacts" +msgstr "Zeitfenster für globale Kontakte" + +#: mod/admin.php:748 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden." + +#: mod/admin.php:749 +msgid "Search the local directory" +msgstr "Lokales Verzeichnis durchsuchen" + +#: mod/admin.php:749 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird." + +#: mod/admin.php:751 +msgid "Publish server information" +msgstr "Server Informationen veröffentlichen" + +#: mod/admin.php:751 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte the-federation.info aufrufen." + +#: mod/admin.php:753 +msgid "Use MySQL full text engine" +msgstr "Nutze MySQL full text engine" + +#: mod/admin.php:753 +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." + +#: mod/admin.php:754 +msgid "Suppress Language" +msgstr "Sprachinformation unterdrücken" + +#: mod/admin.php:754 +msgid "Suppress language information in meta information about a posting." +msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." + +#: mod/admin.php:755 +msgid "Suppress Tags" +msgstr "Tags Unterdrücken" + +#: mod/admin.php:755 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." + +#: mod/admin.php:756 +msgid "Path to item cache" +msgstr "Pfad zum Eintrag Cache" + +#: mod/admin.php:756 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." + +#: mod/admin.php:757 +msgid "Cache duration in seconds" +msgstr "Cache-Dauer in Sekunden" + +#: mod/admin.php:757 +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." + +#: mod/admin.php:758 +msgid "Maximum numbers of comments per post" +msgstr "Maximale Anzahl von Kommentaren pro Beitrag" + +#: mod/admin.php:758 +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." + +#: mod/admin.php:759 +msgid "Path for lock file" +msgstr "Pfad für die Sperrdatei" + +#: mod/admin.php:759 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." + +#: mod/admin.php:760 +msgid "Temp path" +msgstr "Temp Pfad" + +#: mod/admin.php:760 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." + +#: mod/admin.php:761 +msgid "Base path to installation" +msgstr "Basis-Pfad zur Installation" + +#: mod/admin.php:761 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." + +#: mod/admin.php:762 +msgid "Disable picture proxy" +msgstr "Bilder Proxy deaktivieren" + +#: mod/admin.php:762 +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 Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." + +#: mod/admin.php:763 +msgid "Enable old style pager" +msgstr "Den Old-Style Pager aktiviren" + +#: mod/admin.php:763 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." + +#: mod/admin.php:764 +msgid "Only search in tags" +msgstr "Nur in Tags suchen" + +#: mod/admin.php:764 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." + +#: mod/admin.php:766 +msgid "New base url" +msgstr "Neue Basis-URL" + +#: mod/admin.php:766 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen." + +#: mod/admin.php:768 +msgid "RINO Encryption" +msgstr "RINO Verschlüsselung" + +#: mod/admin.php:768 +msgid "Encryption layer between nodes." +msgstr "Verschlüsselung zwischen Friendica Instanzen" + +#: mod/admin.php:769 +msgid "Embedly API key" +msgstr "Embedly API Schlüssel" + +#: mod/admin.php:769 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." + +#: mod/admin.php:787 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: mod/admin.php:795 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." + +#: mod/admin.php:798 +#, 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" + +#: mod/admin.php:810 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" + +#: mod/admin.php:813 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s war erfolgreich." + +#: mod/admin.php:817 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." + +#: mod/admin.php:819 +#, 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." + +#: mod/admin.php:838 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Updates." + +#: mod/admin.php:839 +msgid "Check database structure" +msgstr "Datenbank Struktur überprüfen" + +#: mod/admin.php:844 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Updates" + +#: mod/admin.php:845 +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." + +#: mod/admin.php:846 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" + +#: mod/admin.php:847 +msgid "Attempt to execute this update step automatically" +msgstr "Versuchen, diesen Schritt automatisch auszuführen" + +#: mod/admin.php:879 +#, 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." + +#: mod/admin.php:882 +#, 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 "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\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\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." + +#: mod/admin.php:914 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + +#: mod/admin.php:926 +#, 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" + +#: mod/admin.php:933 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" + +#: mod/admin.php:972 +#, php-format +msgid "User '%s' deleted" +msgstr "Nutzer '%s' gelöscht" + +#: mod/admin.php:980 +#, php-format +msgid "User '%s' unblocked" +msgstr "Nutzer '%s' entsperrt" + +#: mod/admin.php:980 +#, php-format +msgid "User '%s' blocked" +msgstr "Nutzer '%s' gesperrt" + +#: mod/admin.php:1073 +msgid "Add User" +msgstr "Nutzer hinzufügen" + +#: mod/admin.php:1074 +msgid "select all" +msgstr "Alle auswählen" + +#: mod/admin.php:1075 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: mod/admin.php:1076 +msgid "User waiting for permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" + +#: mod/admin.php:1077 +msgid "Request date" +msgstr "Anfragedatum" + +#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "E-Mail" + +#: mod/admin.php:1078 +msgid "No registrations." +msgstr "Keine Neuanmeldungen." + +#: mod/admin.php:1080 +msgid "Deny" +msgstr "Verwehren" + +#: mod/admin.php:1084 +msgid "Site admin" +msgstr "Seitenadministrator" + +#: mod/admin.php:1085 +msgid "Account expired" +msgstr "Account ist abgelaufen" + +#: mod/admin.php:1088 +msgid "New User" +msgstr "Neuer Nutzer" + +#: mod/admin.php:1089 mod/admin.php:1090 +msgid "Register date" +msgstr "Anmeldedatum" + +#: mod/admin.php:1089 mod/admin.php:1090 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: mod/admin.php:1089 mod/admin.php:1090 +msgid "Last item" +msgstr "Letzter Beitrag" + +#: mod/admin.php:1089 +msgid "Deleted since" +msgstr "Gelöscht seit" + +#: mod/admin.php:1090 mod/settings.php:41 +msgid "Account" +msgstr "Nutzerkonto" + +#: mod/admin.php:1092 +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?" + +#: mod/admin.php:1093 +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?" + +#: mod/admin.php:1103 +msgid "Name of the new user." +msgstr "Name des neuen Nutzers" + +#: mod/admin.php:1104 +msgid "Nickname" +msgstr "Spitzname" + +#: mod/admin.php:1104 +msgid "Nickname of the new user." +msgstr "Spitznamen für den neuen Nutzer" + +#: mod/admin.php:1105 +msgid "Email address of the new user." +msgstr "Email Adresse des neuen Nutzers" + +#: mod/admin.php:1138 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s deaktiviert." + +#: mod/admin.php:1142 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s aktiviert." + +#: mod/admin.php:1152 mod/admin.php:1375 +msgid "Disable" +msgstr "Ausschalten" + +#: mod/admin.php:1154 mod/admin.php:1377 +msgid "Enable" +msgstr "Einschalten" + +#: mod/admin.php:1177 mod/admin.php:1405 +msgid "Toggle" +msgstr "Umschalten" + +#: mod/admin.php:1185 mod/admin.php:1415 +msgid "Author: " +msgstr "Autor:" + +#: mod/admin.php:1186 mod/admin.php:1416 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: mod/admin.php:1335 +msgid "No themes found." +msgstr "Keine Themen gefunden." + +#: mod/admin.php:1397 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: mod/admin.php:1443 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: mod/admin.php:1444 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: mod/admin.php:1471 +msgid "Log settings updated." +msgstr "Protokolleinstellungen aktualisiert." + +#: mod/admin.php:1527 +msgid "Clear" +msgstr "löschen" + +#: mod/admin.php:1533 +msgid "Enable Debugging" +msgstr "Protokoll führen" + +#: mod/admin.php:1534 +msgid "Log file" +msgstr "Protokolldatei" + +#: mod/admin.php:1534 +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:1535 +msgid "Log level" +msgstr "Protokoll-Level" + +#: mod/admin.php:1585 include/acl_selectors.php:347 +msgid "Close" +msgstr "Schließen" + +#: mod/admin.php:1591 +msgid "FTP Host" +msgstr "FTP Host" + +#: mod/admin.php:1592 +msgid "FTP Path" +msgstr "FTP Pfad" + +#: mod/admin.php:1593 +msgid "FTP User" +msgstr "FTP Nutzername" + +#: mod/admin.php:1594 +msgid "FTP Password" +msgstr "FTP Passwort" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/network.php:187 mod/search.php:25 +msgid "Remove term" +msgstr "Begriff entfernen" + +#: mod/network.php:196 mod/search.php:34 include/features.php:42 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "hinzufügen" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um Dich geht" + +#: mod/network.php:385 +msgid "New" +msgstr "Neue" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Geteilte Links" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Interessante Links" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Markierte" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: mod/network.php:466 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." + +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." + +#: mod/network.php:532 mod/content.php:119 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: mod/network.php:549 mod/content.php:130 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: mod/network.php:560 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "Gruppe: %s" + +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "Kontakt: %s" + +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." + +#: mod/network.php:587 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." + +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Freunde von %s" + +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l, F j" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: mod/events.php:396 include/identity.php:667 include/nav.php:80 +#: view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Veranstaltungen" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Vorherige" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Nächste" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Benötigt" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Beschreibung" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: object/Item.php:689 include/conversation.php:1089 +msgid "Preview" +msgstr "Vorschau" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 +#: object/Item.php:130 include/conversation.php:612 +msgid "Select" +msgstr "Auswählen" + +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." + +#: mod/content.php:483 mod/content.php:866 object/Item.php:342 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: mod/content.php:605 object/Item.php:389 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" + +#: mod/content.php:607 object/Item.php:391 object/Item.php:404 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" + +#: mod/content.php:608 boot.php:765 object/Item.php:392 +#: include/contact_widgets.php:205 include/items.php:5134 +msgid "show more" +msgstr "mehr anzeigen" + +#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Private Nachricht" + +#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" + +#: mod/content.php:686 object/Item.php:232 +msgid "like" +msgstr "mag ich" + +#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Ich mag das nicht (toggle)" + +#: mod/content.php:687 object/Item.php:233 +msgid "dislike" +msgstr "mag ich nicht" + +#: mod/content.php:689 object/Item.php:235 +msgid "Share this" +msgstr "Weitersagen" + +#: mod/content.php:689 object/Item.php:235 +msgid "share" +msgstr "Teilen" + +#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 object/Item.php:677 +msgid "This is you" +msgstr "Das bist Du" + +#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 +#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 +msgid "Comment" +msgstr "Kommentar" + +#: mod/content.php:713 object/Item.php:681 +msgid "Bold" +msgstr "Fett" + +#: mod/content.php:714 object/Item.php:682 +msgid "Italic" +msgstr "Kursiv" + +#: mod/content.php:715 object/Item.php:683 +msgid "Underline" +msgstr "Unterstrichen" + +#: mod/content.php:716 object/Item.php:684 +msgid "Quote" +msgstr "Zitat" + +#: mod/content.php:717 object/Item.php:685 +msgid "Code" +msgstr "Code" + +#: mod/content.php:718 object/Item.php:686 +msgid "Image" +msgstr "Bild" + +#: mod/content.php:719 object/Item.php:687 +msgid "Link" +msgstr "Link" + +#: mod/content.php:720 object/Item.php:688 +msgid "Video" +msgstr "Video" + +#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 +msgid "Edit" +msgstr "Bearbeiten" + +#: mod/content.php:755 object/Item.php:196 +msgid "add star" +msgstr "markieren" + +#: mod/content.php:756 object/Item.php:197 +msgid "remove star" +msgstr "Markierung entfernen" + +#: mod/content.php:757 object/Item.php:198 +msgid "toggle star status" +msgstr "Markierung umschalten" + +#: mod/content.php:760 object/Item.php:201 +msgid "starred" +msgstr "markiert" + +#: mod/content.php:761 object/Item.php:221 +msgid "add tag" +msgstr "Tag hinzufügen" + +#: mod/content.php:765 object/Item.php:134 +msgid "save to folder" +msgstr "In Ordner speichern" + +#: mod/content.php:856 object/Item.php:330 +msgid "to" +msgstr "zu" + +#: mod/content.php:857 object/Item.php:332 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: mod/content.php:858 object/Item.php:333 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: 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/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Bitte gib Dein Passwort zur Verifikation ein:" + #: mod/install.php:119 msgid "Friendica Communications Server - Setup" msgstr "Friendica-Server für soziale Netzwerke – Setup" @@ -5248,83 +3736,68 @@ msgid "" "poller." msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." -#: mod/p.php:9 -msgid "Not Extended" -msgstr "Nicht erweitert." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Gruppeneditor" - -#: mod/group.php:190 -msgid "Members" -msgstr "Mitglieder" - -#: mod/content.php:119 mod/network.php:526 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: mod/content.php:130 mod/network.php:543 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: mod/content.php:135 mod/network.php:554 +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format -msgid "Group: %s" -msgstr "Gruppe: %s" +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:499 include/conversation.php:689 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte Deinen Heimatort nicht bestimmen." -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Konto freigegeben." +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." -#: mod/regmod.php:92 +#: mod/wallmessage.php:143 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" +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/regmod.php:104 -msgid "Please login." -msgstr "Bitte melde Dich an." +#: mod/help.php:31 +msgid "Help:" +msgstr "Hilfe:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Hilfe" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: mod/help.php:45 index.php:272 +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:83 +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:83 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Die Datei ist größer als das erlaubte Limit von %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." #: mod/match.php:13 msgid "Profile Match" @@ -5338,40 +3811,1044 @@ msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schl msgid "is interested in:" msgstr "ist interessiert an:" -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." +#: mod/share.php:38 +msgid "link" +msgstr "Link" -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." +#: mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Gemeinschaft" -#: mod/item.php:989 +#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: mod/settings.php:34 mod/photos.php:102 +msgid "everybody" +msgstr "jeder" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Zusätzliche Features" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Anzeige" + +#: mod/settings.php:60 mod/settings.php:835 +msgid "Social Networks" +msgstr "Soziale Netzwerke" + +#: mod/settings.php:72 include/nav.php:179 +msgid "Delegations" +msgstr "Delegationen" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Persönliche Daten exportieren" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Konto löschen" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "E-Mail Einstellungen bearbeitet." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Features aktualisiert" + +#: mod/settings.php:339 +msgid "Relocate message has been send to your contacts" +msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." + +#: mod/settings.php:353 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." + +#: mod/settings.php:358 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." + +#: mod/settings.php:366 +msgid "Wrong password." +msgstr "Falsches Passwort." + +#: mod/settings.php:377 +msgid "Password changed." +msgstr "Passwort geändert." + +#: mod/settings.php:379 +msgid "Password update failed. Please try again." +msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." + +#: mod/settings.php:446 +msgid " Please use a shorter name." +msgstr " Bitte verwende einen kürzeren Namen." + +#: mod/settings.php:448 +msgid " Name too short." +msgstr " Name ist zu kurz." + +#: mod/settings.php:457 +msgid "Wrong Password" +msgstr "Falsches Passwort" + +#: mod/settings.php:462 +msgid " Not valid email." +msgstr " Keine gültige E-Mail." + +#: mod/settings.php:468 +msgid " Cannot change to that email." +msgstr "Ändern der E-Mail nicht möglich. " + +#: mod/settings.php:524 +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:528 +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:558 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 +msgid "Add application" +msgstr "Programm hinzufügen" + +#: mod/settings.php:635 mod/settings.php:661 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:636 mod/settings.php:662 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:637 mod/settings.php:663 +msgid "Redirect" +msgstr "Umleiten" + +#: mod/settings.php:638 mod/settings.php:664 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:649 +msgid "You can't edit this application." +msgstr "Du kannst dieses Programm nicht bearbeiten." + +#: mod/settings.php:692 +msgid "Connected Apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:696 +msgid "Client key starts with" +msgstr "Anwenderschlüssel beginnt mit" + +#: mod/settings.php:697 +msgid "No name" +msgstr "Kein Name" + +#: mod/settings.php:698 +msgid "Remove authorization" +msgstr "Autorisierung entziehen" + +#: mod/settings.php:710 +msgid "No Plugin settings configured" +msgstr "Keine Plugin-Einstellungen konfiguriert" + +#: mod/settings.php:718 +msgid "Plugin Settings" +msgstr "Plugin-Einstellungen" + +#: mod/settings.php:732 +msgid "Off" +msgstr "Aus" + +#: mod/settings.php:732 +msgid "On" +msgstr "An" + +#: mod/settings.php:740 +msgid "Additional Features" +msgstr "Zusätzliche Features" + +#: mod/settings.php:750 mod/settings.php:754 +msgid "General Social Media Settings" +msgstr "Allgemeine Einstellungen zu Sozialen Medien" + +#: mod/settings.php:760 +msgid "Disable intelligent shortening" +msgstr "Intelligentes Link kürzen ausschalten" + +#: mod/settings.php:762 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." + +#: mod/settings.php:768 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" + +#: mod/settings.php:770 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." + +#: mod/settings.php:791 mod/settings.php:792 +#, 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:791 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:791 mod/settings.php:792 +msgid "enabled" +msgstr "eingeschaltet" + +#: mod/settings.php:791 mod/settings.php:792 +msgid "disabled" +msgstr "ausgeschaltet" + +#: mod/settings.php:792 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:828 +msgid "Email access is disabled on this site." +msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." + +#: mod/settings.php:840 +msgid "Email/Mailbox Setup" +msgstr "E-Mail/Postfach-Einstellungen" + +#: mod/settings.php:841 +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:842 +msgid "Last successful email check:" +msgstr "Letzter erfolgreicher E-Mail Check" + +#: mod/settings.php:844 +msgid "IMAP server name:" +msgstr "IMAP-Server-Name:" + +#: mod/settings.php:845 +msgid "IMAP port:" +msgstr "IMAP-Port:" + +#: mod/settings.php:846 +msgid "Security:" +msgstr "Sicherheit:" + +#: mod/settings.php:846 mod/settings.php:851 +msgid "None" +msgstr "Keine" + +#: mod/settings.php:847 +msgid "Email login name:" +msgstr "E-Mail-Login-Name:" + +#: mod/settings.php:848 +msgid "Email password:" +msgstr "E-Mail-Passwort:" + +#: mod/settings.php:849 +msgid "Reply-to address:" +msgstr "Reply-to Adresse:" + +#: mod/settings.php:850 +msgid "Send public posts to all email contacts:" +msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" + +#: mod/settings.php:851 +msgid "Action after import:" +msgstr "Aktion nach Import:" + +#: mod/settings.php:851 +msgid "Mark as seen" +msgstr "Als gelesen markieren" + +#: mod/settings.php:851 +msgid "Move to folder" +msgstr "In einen Ordner verschieben" + +#: mod/settings.php:852 +msgid "Move to folder:" +msgstr "In diesen Ordner verschieben:" + +#: mod/settings.php:933 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: mod/settings.php:939 mod/settings.php:955 +msgid "Display Theme:" +msgstr "Theme:" + +#: mod/settings.php:940 +msgid "Mobile Theme:" +msgstr "Mobiles Theme" + +#: mod/settings.php:941 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: mod/settings.php:941 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimal 10 Sekunden, kein Maximum" + +#: mod/settings.php:942 +msgid "Number of items to display per page:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " + +#: mod/settings.php:942 mod/settings.php:943 +msgid "Maximum of 100 items" +msgstr "Maximal 100 Beiträge" + +#: mod/settings.php:943 +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:944 +msgid "Don't show emoticons" +msgstr "Keine Smilies anzeigen" + +#: mod/settings.php:945 +msgid "Don't show notices" +msgstr "Info-Popups nicht anzeigen" + +#: mod/settings.php:946 +msgid "Infinite scroll" +msgstr "Endloses Scrollen" + +#: mod/settings.php:947 +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:949 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Themeneinstellungen" + +#: mod/settings.php:1025 +msgid "User Types" +msgstr "Nutzer Art" + +#: mod/settings.php:1026 +msgid "Community Types" +msgstr "Gemeinschafts Art" + +#: mod/settings.php:1027 +msgid "Normal Account Page" +msgstr "Normales Konto" + +#: mod/settings.php:1028 +msgid "This account is a normal personal profile" +msgstr "Dieses Konto ist ein normales persönliches Profil" + +#: mod/settings.php:1031 +msgid "Soapbox Page" +msgstr "Marktschreier-Konto" + +#: mod/settings.php:1032 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" + +#: mod/settings.php:1035 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: mod/settings.php:1036 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" + +#: mod/settings.php:1039 +msgid "Automatic Friend Page" +msgstr "Automatische Freunde Seite" + +#: mod/settings.php:1040 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" + +#: mod/settings.php:1043 +msgid "Private Forum [Experimental]" +msgstr "Privates Forum [Versuchsstadium]" + +#: mod/settings.php:1044 +msgid "Private forum - approved members only" +msgstr "Privates Forum, nur für Mitglieder" + +#: mod/settings.php:1056 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1056 +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:1066 +msgid "Publish your default profile in your local site directory?" +msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" + +#: mod/settings.php:1072 +msgid "Publish your default profile in the global social directory?" +msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" + +#: mod/settings.php:1080 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" + +#: mod/settings.php:1084 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" + +#: mod/settings.php:1084 +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:1089 +msgid "Allow friends to post to your profile page?" +msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" + +#: mod/settings.php:1095 +msgid "Allow friends to tag your posts?" +msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" + +#: mod/settings.php:1101 +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:1107 +msgid "Permit unknown people to send you private mail?" +msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" + +#: mod/settings.php:1115 +msgid "Profile is not published." +msgstr "Profil ist nicht veröffentlicht." + +#: mod/settings.php:1123 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." + +#: mod/settings.php:1130 +msgid "Automatically expire posts after this many days:" +msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" + +#: mod/settings.php:1130 +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:1131 +msgid "Advanced expiration settings" +msgstr "Erweiterte Verfallseinstellungen" + +#: mod/settings.php:1132 +msgid "Advanced Expiration" +msgstr "Erweitertes Verfallen" + +#: mod/settings.php:1133 +msgid "Expire posts:" +msgstr "Beiträge verfallen lassen:" + +#: mod/settings.php:1134 +msgid "Expire personal notes:" +msgstr "Persönliche Notizen verfallen lassen:" + +#: mod/settings.php:1135 +msgid "Expire starred posts:" +msgstr "Markierte Beiträge verfallen lassen:" + +#: mod/settings.php:1136 +msgid "Expire photos:" +msgstr "Fotos verfallen lassen:" + +#: mod/settings.php:1137 +msgid "Only expire posts by others:" +msgstr "Nur Beiträge anderer verfallen:" + +#: mod/settings.php:1163 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: mod/settings.php:1171 +msgid "Password Settings" +msgstr "Passwort-Einstellungen" + +#: mod/settings.php:1172 mod/register.php:271 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: mod/settings.php:1173 mod/register.php:272 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: mod/settings.php:1173 +msgid "Leave password fields blank unless changing" +msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" + +#: mod/settings.php:1174 +msgid "Current Password:" +msgstr "Aktuelles Passwort:" + +#: mod/settings.php:1174 mod/settings.php:1175 +msgid "Your current password to confirm the changes" +msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" + +#: mod/settings.php:1175 +msgid "Password:" +msgstr "Passwort:" + +#: mod/settings.php:1179 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: mod/settings.php:1180 include/identity.php:538 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: mod/settings.php:1181 +msgid "Email Address:" +msgstr "E-Mail-Adresse:" + +#: mod/settings.php:1182 +msgid "Your Timezone:" +msgstr "Deine Zeitzone:" + +#: mod/settings.php:1183 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: mod/settings.php:1184 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: mod/settings.php:1187 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Privatsphäre-Einstellungen" + +#: mod/settings.php:1189 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" + +#: mod/settings.php:1189 mod/settings.php:1219 +msgid "(to prevent spam abuse)" +msgstr "(um SPAM zu vermeiden)" + +#: mod/settings.php:1190 +msgid "Default Post Permissions" +msgstr "Standard-Zugriffsrechte für Beiträge" + +#: mod/settings.php:1191 +msgid "(click to open/close)" +msgstr "(klicke zum öffnen/schließen)" + +#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: mod/settings.php:1202 +msgid "Default Private Post" +msgstr "Privater Standardbeitrag" + +#: mod/settings.php:1203 +msgid "Default Public Post" +msgstr "Öffentlicher Standardbeitrag" + +#: mod/settings.php:1207 +msgid "Default Permissions for New Posts" +msgstr "Standardberechtigungen für neue Beiträge" + +#: mod/settings.php:1219 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" + +#: mod/settings.php:1222 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: mod/settings.php:1223 +msgid "By default post a status message when:" +msgstr "Standardmäßig eine Statusnachricht posten, wenn:" + +#: mod/settings.php:1224 +msgid "accepting a friend request" +msgstr "– Du eine Kontaktanfrage akzeptierst" + +#: mod/settings.php:1225 +msgid "joining a forum/community" +msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" + +#: mod/settings.php:1226 +msgid "making an interesting profile change" +msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" + +#: mod/settings.php:1227 +msgid "Send a notification email when:" +msgstr "Benachrichtigungs-E-Mail senden wenn:" + +#: mod/settings.php:1228 +msgid "You receive an introduction" +msgstr "– Du eine Kontaktanfrage erhältst" + +#: mod/settings.php:1229 +msgid "Your introductions are confirmed" +msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" + +#: mod/settings.php:1230 +msgid "Someone writes on your profile wall" +msgstr "– jemand etwas auf Deine Pinnwand schreibt" + +#: mod/settings.php:1231 +msgid "Someone writes a followup comment" +msgstr "– jemand auch einen Kommentar verfasst" + +#: mod/settings.php:1232 +msgid "You receive a private message" +msgstr "– Du eine private Nachricht erhältst" + +#: mod/settings.php:1233 +msgid "You receive a friend suggestion" +msgstr "– Du eine Empfehlung erhältst" + +#: mod/settings.php:1234 +msgid "You are tagged in a post" +msgstr "– Du in einem Beitrag erwähnt wirst" + +#: mod/settings.php:1235 +msgid "You are poked/prodded/etc. in a post" +msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" + +#: mod/settings.php:1237 +msgid "Activate desktop notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1237 +msgid "Show desktop popup on new notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1239 +msgid "Text-only notification emails" +msgstr "Benachrichtigungs E-Mail als Rein-Text." + +#: mod/settings.php:1241 +msgid "Send text only notification emails, without the html part" +msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" + +#: mod/settings.php:1243 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" + +#: mod/settings.php:1244 +msgid "Change the behaviour of this account for special situations" +msgstr "Verhalten dieses Kontos in bestimmten Situationen:" + +#: mod/settings.php:1247 +msgid "Relocate" +msgstr "Umziehen" + +#: mod/settings.php:1248 +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:1249 +msgid "Resend relocate message to contacts" +msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." + +#: 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/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/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/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/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: 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/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: 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/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: 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/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/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast Dich hier bereits vorgestellt." + +#: 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/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." + +#: 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/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bestätigen" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." + +#: mod/dfrn_request.php:819 +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/dfrn_request.php:840 #, 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." +"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/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" -#: mod/item.php:992 +#: mod/dfrn_request.php:846 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." +"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/item.php:996 +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:857 #, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." +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/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "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/register.php:107 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + +#: mod/register.php:216 +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/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "ID Deiner Einladung: " + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Leer lassen um das Passwort automatisch zu generieren." + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "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/register.php:274 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrieren" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importiere Dein Profil auf diese Friendica Instanz" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" + +#: mod/search.php:100 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Suche" + +#: mod/search.php:198 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge markiert mit: %s" + +#: mod/search.php:200 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: mod/directory.php:129 mod/profiles.php:747 +msgid "Age: " +msgstr "Alter: " + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Geschlecht:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "Status:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + +#: 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/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Hinzufügen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Keine Einträge." + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Account exportieren" + +#: 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 "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exportieren" + +#: 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 "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/mood.php:62 include/conversation.php:226 #, php-format @@ -5386,451 +4863,1073 @@ msgstr "Stimmung" msgid "Set your current mood and tell your friends" msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Suchergebnisse für: %s" +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest Du wirklich diese Empfehlung löschen?" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "hinzufügen" +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" - -#: mod/network.php:364 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: mod/network.php:367 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" - -#: mod/network.php:376 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um Dich geht" - -#: mod/network.php:382 -msgid "New" -msgstr "Neue" - -#: mod/network.php:385 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" - -#: mod/network.php:391 -msgid "Shared Links" -msgstr "Geteilte Links" - -#: mod/network.php:394 -msgid "Interesting Links" -msgstr "Interessante Links" - -#: mod/network.php:400 -msgid "Starred" -msgstr "Markierte" - -#: mod/network.php:403 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" - -#: mod/network.php:460 -#, 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." - -#: mod/network.php:463 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." - -#: mod/network.php:572 -#, php-format -msgid "Contact: %s" -msgstr "Kontakt: %s" - -#: mod/network.php:576 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." - -#: mod/network.php:581 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: mod/crepair.php:142 +#: mod/suggest.php:76 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." +"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/crepair.php:143 +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Neues Profil angelegt." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil nicht zum Duplizieren verfügbar." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Profilname ist erforderlich." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Familienstand" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Romanze" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Likes" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Dislikes" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Arbeit / Beschäftigung" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Religion" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Politische Ansichten" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Geschlecht" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Sexuelle Vorlieben" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Webseite" + +#: mod/profiles.php:375 mod/profiles.php:695 +msgid "Interests" +msgstr "Interessen" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Adresse" + +#: mod/profiles.php:386 mod/profiles.php:691 +msgid "Location" +msgstr "Wohnort" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#: mod/profiles.php:565 +msgid " and " +msgstr " und " + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "öffentliches Profil" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s geändert auf “%3$s”" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " – %1$ss %2$s besuchen" + +#: mod/profiles.php:580 +#, 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/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "Kontakte und Freunde verbergen" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" + +#: mod/profiles.php:682 +msgid "Edit Profile Details" +msgstr "Profil bearbeiten" + +#: mod/profiles.php:684 +msgid "Change Profile Photo" +msgstr "Profilbild ändern" + +#: mod/profiles.php:685 +msgid "View this profile" +msgstr "Dieses Profil anzeigen" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen verwenden" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "Dieses Profil duplizieren" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "Grundinformationen" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "Profilbild" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "Vorlieben" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "Status Informationen" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "Zusätzliche Informationen" + +#: mod/profiles.php:697 +msgid "Profile Name:" +msgstr "Profilname:" + +#: mod/profiles.php:698 +msgid "Your Full Name:" +msgstr "Dein kompletter Name:" + +#: mod/profiles.php:699 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" + +#: mod/profiles.php:700 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "Geburtstag :" + +#: mod/profiles.php:702 +msgid "Street Address:" +msgstr "Adresse:" + +#: mod/profiles.php:703 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: mod/profiles.php:704 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: mod/profiles.php:705 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:706 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: mod/profiles.php:707 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" + +#: mod/profiles.php:708 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" + +#: mod/profiles.php:709 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:710 +msgid "Since [date]:" +msgstr "Seit [Datum]:" + +#: mod/profiles.php:711 include/identity.php:569 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" + +#: mod/profiles.php:712 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: mod/profiles.php:713 include/identity.php:573 +msgid "Hometown:" +msgstr "Heimatort:" + +#: mod/profiles.php:714 include/identity.php:577 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: mod/profiles.php:715 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: mod/profiles.php:716 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: mod/profiles.php:717 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: mod/profiles.php:718 include/identity.php:585 +msgid "Likes:" +msgstr "Likes:" + +#: mod/profiles.php:719 include/identity.php:587 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: mod/profiles.php:720 +msgid "Example: fishing photography software" +msgstr "Beispiel: Fischen Fotografie Software" + +#: mod/profiles.php:721 +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/profiles.php:722 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" + +#: mod/profiles.php:723 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein bisschen von Dir …" + +#: mod/profiles.php:724 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" + +#: mod/profiles.php:725 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" + +#: mod/profiles.php:726 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: mod/profiles.php:727 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: mod/profiles.php:728 +msgid "Television" +msgstr "Fernsehen" + +#: mod/profiles.php:729 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" + +#: mod/profiles.php:730 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: mod/profiles.php:731 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: mod/profiles.php:732 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: mod/profiles.php:737 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." +"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/crepair.php:149 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" +#: mod/profiles.php:800 +msgid "Edit/Manage Profiles" +msgstr "Bearbeite/Verwalte Profile" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Kein Spiegeln" +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Profilbild ändern" -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" +#: mod/profiles.php:802 include/identity.php:232 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" +#: mod/profiles.php:813 include/identity.php:242 +msgid "Profile Image" +msgstr "Profilbild" -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Kontaktdaten neu laden" +#: mod/profiles.php:815 include/identity.php:245 +msgid "visible to everybody" +msgstr "sichtbar für jeden" -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Konto-Spitzname" +#: mod/profiles.php:816 include/identity.php:246 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "Konto-URL" +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Beitrag bearbeiten" -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "Bild hochladen" -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Datei anhängen" -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "Datei anhängen" -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "Weblink" -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Entfernte Konten" +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "Video-Link" -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" -#: mod/crepair.php:181 +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "Audio-Link" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "Ort setzen" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "Ort löschen" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Titel setzen" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: mod/friendica.php:62 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." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "dem Bugtracker auf github" -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" +#: mod/friendica.php:65 +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" -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "Deine Fotos" +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "Deine Ereignisse" +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" + +#: 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/api.php:89 +msgid "Please login to continue." +msgstr "Bitte melde Dich an um fortzufahren." + +#: 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/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: mod/notes.php:44 include/identity.php:675 +msgid "Personal Notes" msgstr "Persönliche Notizen" -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\, H:i" -#: 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 "Foren" +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Zeitumrechnung" -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Community-Profile" +#: 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/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Letzte Nutzer" +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC Zeit: %s" -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Zuletzt gemocht" +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuelle Zeitzone: %s" -#: view/theme/diabook/theme.php:463 include/text.php:1998 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "Veranstaltung" +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umgerechnete lokale Zeit: %s" -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Letzte Fotos" +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Bitte wähle Deine Zeitzone:" -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Freunde finden" +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Anstupsen" -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Empfänger" -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Freunde einladen" +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst Du mit dem Empfänger machen:" -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" +#: 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." -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Verbinde Dienste" +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "nicht zeigen" +#: 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." -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "zeigen" +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" +#: 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." -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/dispy/config.php:72 view/theme/duepuntozero/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Themeneinstellungen" +#: mod/invite.php:122 +#, 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." -#: 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 "Schriftgröße für Beiträge und Kommentare festlegen" +#: 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." -#: 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/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." -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" +#: 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." -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Stil auswählen" +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" +#: 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:" -#: view/theme/duepuntozero/config.php:44 include/text.php:1734 -#: include/user.php:247 -msgid "default" -msgstr "Standard" +#: 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" -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Kontaktbilder" -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" +#: mod/photos.php:84 include/identity.php:651 +msgid "Photo Albums" +msgstr "Fotoalben" -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variationen" +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Album löschen" -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ausrichtung" +#: mod/photos.php:220 +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?" -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Foto löschen" -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Mitte" +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Farbschema" +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" +#: mod/photos.php:684 +msgid "a photo" +msgstr "einem Foto" -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: 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/photos.php:952 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" +#: mod/photos.php:1114 +#, 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." -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "Kontakt löschen" +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Bilder hochladen" -#: boot.php:753 +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Berechtigungen" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Privates Foto" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Teilen" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Nicht erweitert." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Bitte melde Dich an." + +#: 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 "" +"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/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/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" + +#: 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/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." + +#: boot.php:763 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:756 +#: boot.php:766 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1130 +#: boot.php:1140 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1237 +#: boot.php:1247 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1262 include/nav.php:73 +#: boot.php:1272 include/nav.php:73 msgid "Logout" msgstr "Abmelden" -#: boot.php:1265 +#: boot.php:1275 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " -#: boot.php:1266 +#: boot.php:1276 msgid "Password: " msgstr "Passwort: " -#: boot.php:1267 +#: boot.php:1277 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1270 +#: boot.php:1280 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1276 +#: boot.php:1286 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1279 +#: boot.php:1289 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1280 +#: boot.php:1290 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1282 +#: boot.php:1292 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1283 +#: boot.php:1293 msgid "privacy policy" msgstr "Datenschutzerklärung" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "Thread ignorieren" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: object/Item.php:214 +msgid "ignored" +msgstr "Ignoriert" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Kategorien:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: 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." + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" + +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." + +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." + +#: include/auth.php:128 include/user.php:75 +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." + +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: 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 Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Leute finden" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netzwerke" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorien" + #: include/features.php:23 msgid "General Features" msgstr "Allgemeine Features" @@ -5968,10 +6067,6 @@ msgstr "Beitragskategorien" msgid "Add categories to your posts" msgstr "Eigene Beiträge mit Kategorien versehen" -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Beiträge in Ordnern speichern aktivieren" @@ -6000,390 +6095,179 @@ msgstr "Benachrichtigungen für Beiträge Stumm schalten" msgid "Ability to mute notifications for a thread" msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" -#: include/auth.php:128 include/user.php:67 +#: include/follow.php:102 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." +"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." -#: include/auth.php:128 include/user.php:67 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: include/event.php:22 include/bb2diaspora.php:145 -msgid "Starts:" -msgstr "Beginnt:" +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: include/event.php:32 include/bb2diaspora.php:153 -msgid "Finishes:" -msgstr "Endet:" +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." -#: include/message.php:15 include/message.php:172 -msgid "[no subject]" -msgstr "[kein Betreff]" +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." -#: include/Scrape.php:608 -msgid " on Last.fm" -msgstr " bei Last.fm" +#: include/follow.php:129 +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." -#: include/text.php:299 -msgid "newer" -msgstr "neuer" +#: include/follow.php:130 +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." -#: include/text.php:301 -msgid "older" -msgstr "älter" +#: include/follow.php:136 +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." -#: include/text.php:306 -msgid "prev" -msgstr "vorige" +#: include/follow.php:146 +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." -#: include/text.php:308 -msgid "first" -msgstr "erste" +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." -#: include/text.php:340 -msgid "last" -msgstr "letzte" +#: include/follow.php:302 +msgid "following" +msgstr "folgen" -#: include/text.php:343 -msgid "next" -msgstr "nächste" +#: 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." -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "lade weitere Einträge..." +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" -#: include/text.php:399 -msgid "The end" -msgstr "Das Ende" +#: include/group.php:226 +msgid "Everybody" +msgstr "Alle Kontakte" -#: include/text.php:878 -msgid "No contacts" -msgstr "Keine Kontakte" +#: include/group.php:249 +msgid "edit" +msgstr "bearbeiten" -#: include/text.php:887 +#: include/group.php:271 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" + +#: include/datetime.php:256 +msgid "never" +msgstr "nie" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: include/datetime.php:272 +msgid "year" +msgstr "Jahr" + +#: include/datetime.php:272 +msgid "years" +msgstr "Jahre" + +#: include/datetime.php:273 +msgid "month" +msgstr "Monat" + +#: include/datetime.php:273 +msgid "months" +msgstr "Monate" + +#: include/datetime.php:274 +msgid "week" +msgstr "Woche" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "Wochen" + +#: include/datetime.php:275 +msgid "day" +msgstr "Tag" + +#: include/datetime.php:275 +msgid "days" +msgstr "Tage" + +#: include/datetime.php:276 +msgid "hour" +msgstr "Stunde" + +#: include/datetime.php:276 +msgid "hours" +msgstr "Stunden" + +#: include/datetime.php:277 +msgid "minute" +msgstr "Minute" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "Minuten" + +#: include/datetime.php:278 +msgid "second" +msgstr "Sekunde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "Sekunden" + +#: include/datetime.php:287 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" -#: include/text.php:1027 -msgid "poke" -msgstr "anstupsen" - -#: include/text.php:1027 -msgid "poked" -msgstr "stupste" - -#: include/text.php:1028 -msgid "ping" -msgstr "anpingen" - -#: include/text.php:1028 -msgid "pinged" -msgstr "pingte" - -#: include/text.php:1029 -msgid "prod" -msgstr "knuffen" - -#: include/text.php:1029 -msgid "prodded" -msgstr "knuffte" - -#: include/text.php:1030 -msgid "slap" -msgstr "ohrfeigen" - -#: include/text.php:1030 -msgid "slapped" -msgstr "ohrfeigte" - -#: include/text.php:1031 -msgid "finger" -msgstr "befummeln" - -#: include/text.php:1031 -msgid "fingered" -msgstr "befummelte" - -#: include/text.php:1032 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: include/text.php:1032 -msgid "rebuffed" -msgstr "abfuhrerteilte" - -#: include/text.php:1046 -msgid "happy" -msgstr "glücklich" - -#: include/text.php:1047 -msgid "sad" -msgstr "traurig" - -#: include/text.php:1048 -msgid "mellow" -msgstr "sanft" - -#: include/text.php:1049 -msgid "tired" -msgstr "müde" - -#: include/text.php:1050 -msgid "perky" -msgstr "frech" - -#: include/text.php:1051 -msgid "angry" -msgstr "sauer" - -#: include/text.php:1052 -msgid "stupified" -msgstr "verblüfft" - -#: include/text.php:1053 -msgid "puzzled" -msgstr "verwirrt" - -#: include/text.php:1054 -msgid "interested" -msgstr "interessiert" - -#: include/text.php:1055 -msgid "bitter" -msgstr "verbittert" - -#: include/text.php:1056 -msgid "cheerful" -msgstr "fröhlich" - -#: include/text.php:1057 -msgid "alive" -msgstr "lebendig" - -#: include/text.php:1058 -msgid "annoyed" -msgstr "verärgert" - -#: include/text.php:1059 -msgid "anxious" -msgstr "unruhig" - -#: include/text.php:1060 -msgid "cranky" -msgstr "schrullig" - -#: include/text.php:1061 -msgid "disturbed" -msgstr "verstört" - -#: include/text.php:1062 -msgid "frustrated" -msgstr "frustriert" - -#: include/text.php:1063 -msgid "motivated" -msgstr "motiviert" - -#: include/text.php:1064 -msgid "relaxed" -msgstr "entspannt" - -#: include/text.php:1065 -msgid "surprised" -msgstr "überrascht" - -#: include/text.php:1235 -msgid "Monday" -msgstr "Montag" - -#: include/text.php:1235 -msgid "Tuesday" -msgstr "Dienstag" - -#: include/text.php:1235 -msgid "Wednesday" -msgstr "Mittwoch" - -#: include/text.php:1235 -msgid "Thursday" -msgstr "Donnerstag" - -#: include/text.php:1235 -msgid "Friday" -msgstr "Freitag" - -#: include/text.php:1235 -msgid "Saturday" -msgstr "Samstag" - -#: include/text.php:1235 -msgid "Sunday" -msgstr "Sonntag" - -#: include/text.php:1239 -msgid "January" -msgstr "Januar" - -#: include/text.php:1239 -msgid "February" -msgstr "Februar" - -#: include/text.php:1239 -msgid "March" -msgstr "März" - -#: include/text.php:1239 -msgid "April" -msgstr "April" - -#: include/text.php:1239 -msgid "May" -msgstr "Mai" - -#: include/text.php:1239 -msgid "June" -msgstr "Juni" - -#: include/text.php:1239 -msgid "July" -msgstr "Juli" - -#: include/text.php:1239 -msgid "August" -msgstr "August" - -#: include/text.php:1239 -msgid "September" -msgstr "September" - -#: include/text.php:1239 -msgid "October" -msgstr "Oktober" - -#: include/text.php:1239 -msgid "November" -msgstr "November" - -#: include/text.php:1239 -msgid "December" -msgstr "Dezember" - -#: include/text.php:1461 -msgid "bytes" -msgstr "Byte" - -#: include/text.php:1493 include/text.php:1505 -msgid "Click to open/close" -msgstr "Zum öffnen/schließen klicken" - -#: include/text.php:1746 -msgid "Select an alternate language" -msgstr "Alternative Sprache auswählen" - -#: include/text.php:2002 -msgid "activity" -msgstr "Aktivität" - -#: include/text.php:2005 -msgid "post" -msgstr "Beitrag" - -#: include/text.php:2173 -msgid "Item filed" -msgstr "Beitrag abgelegt" - -#: include/api.php:310 include/api.php:321 include/api.php:430 -#: include/api.php:1133 include/api.php:1135 -msgid "User not found." -msgstr "Nutzer nicht gefunden." - -#: include/api.php:784 -#, 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:803 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." - -#: include/api.php:822 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." - -#: include/api.php:1342 -msgid "There is no status with this id." -msgstr "Es gibt keinen Status mit dieser ID." - -#: include/api.php:1416 -msgid "There is no conversation with this id." -msgstr "Es existiert keine Unterhaltung mit dieser ID." - -#: include/api.php:1686 -msgid "Invalid request." -msgstr "Ungültige Anfrage" - -#: include/api.php:1697 -msgid "Invalid item." -msgstr "Ungültiges Objekt" - -#: include/api.php:1707 -msgid "Invalid action. " -msgstr "Ungültige Aktion" - -#: include/api.php:1715 -msgid "DB error" -msgstr "DB Error" - -#: include/dba.php:56 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." - -#: include/items.php:2431 include/datetime.php:459 +#: include/datetime.php:459 include/items.php:2432 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: include/items.php:2432 include/datetime.php:460 +#: include/datetime.php:460 include/items.php:2433 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" -#: include/items.php:4852 -msgid "Do you really want to delete this item?" -msgstr "Möchtest Du wirklich dieses Item löschen?" - -#: include/items.php:5127 -msgid "Archives" -msgstr "Archiv" - -#: include/delivery.php:456 include/notifier.php:825 -msgid "(no subject)" -msgstr "(kein Betreff)" - -#: include/delivery.php:467 include/notifier.php:835 include/enotify.php:33 -msgid "noreply" -msgstr "noreply" - -#: include/diaspora.php:705 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: include/diaspora.php:2539 -msgid "Attachments:" -msgstr "Anhänge:" - #: include/identity.php:38 msgid "Requested account is not available." msgstr "Das angefragte Profil ist nicht vorhanden." @@ -6396,7 +6280,7 @@ msgstr "Profil bearbeiten" msgid "Message" msgstr "Nachricht" -#: include/identity.php:226 include/nav.php:176 +#: include/identity.php:226 include/nav.php:184 msgid "Profiles" msgstr "Profile" @@ -6461,10 +6345,6 @@ msgstr "Alter:" msgid "for %1$d %2$s" msgstr "für %1$d %2$s" -#: include/identity.php:575 -msgid "Tags:" -msgstr "Tags" - #: include/identity.php:579 msgid "Religion:" msgstr "Religion:" @@ -6513,76 +6393,87 @@ msgstr "Status" msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: include/identity.php:642 +#: include/identity.php:643 msgid "Profile Details" msgstr "Profildetails" -#: include/identity.php:653 include/identity.php:656 include/nav.php:79 +#: include/identity.php:656 include/identity.php:659 include/nav.php:79 msgid "Videos" msgstr "Videos" -#: include/identity.php:666 +#: include/identity.php:670 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: include/identity.php:673 +#: include/identity.php:678 msgid "Only You Can See This" msgstr "Nur Du kannst das sehen" -#: include/follow.php:32 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "An E-Mail senden" -#: 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." +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." -#: 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." +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "show" +msgstr "zeigen" -#: include/follow.php:82 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "nicht zeigen" -#: 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." +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[kein Betreff]" -#: 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." +#: include/Contact.php:119 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" -#: 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." +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" +msgstr "Anstupsen" -#: 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." +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" +msgstr "Pinnwand anschauen" -#: 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." +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "Profil anschauen" -#: include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "Bilder anschauen" -#: include/follow.php:258 -msgid "following" -msgstr "folgen" +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "Private Nachricht senden" #: include/security.php:22 msgid "Welcome " @@ -6602,6 +6493,878 @@ msgid "" "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)." +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2032 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "Veranstaltung" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: include/conversation.php:291 +#, 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" + +#: include/conversation.php:771 +msgid "remove" +msgstr "löschen" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:965 +msgid "and" +msgstr "und" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Privater Beitrag" + +#: include/network.php:959 +msgid "view full size" +msgstr "Volle Größe anzeigen" + +#: include/text.php:299 +msgid "newer" +msgstr "neuer" + +#: include/text.php:301 +msgid "older" +msgstr "älter" + +#: include/text.php:306 +msgid "prev" +msgstr "vorige" + +#: include/text.php:308 +msgid "first" +msgstr "erste" + +#: include/text.php:340 +msgid "last" +msgstr "letzte" + +#: include/text.php:343 +msgid "next" +msgstr "nächste" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "lade weitere Einträge..." + +#: include/text.php:399 +msgid "The end" +msgstr "Das Ende" + +#: include/text.php:890 +msgid "No contacts" +msgstr "Keine Kontakte" + +#: include/text.php:905 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakt" +msgstr[1] "%d Kontakte" + +#: include/text.php:1003 include/nav.php:122 +msgid "Full Text" +msgstr "Volltext" + +#: include/text.php:1004 include/nav.php:123 +msgid "Tags" +msgstr "Tags" + +#: include/text.php:1008 include/nav.php:127 +msgid "Forums" +msgstr "Foren" + +#: include/text.php:1058 +msgid "poke" +msgstr "anstupsen" + +#: include/text.php:1058 +msgid "poked" +msgstr "stupste" + +#: include/text.php:1059 +msgid "ping" +msgstr "anpingen" + +#: include/text.php:1059 +msgid "pinged" +msgstr "pingte" + +#: include/text.php:1060 +msgid "prod" +msgstr "knuffen" + +#: include/text.php:1060 +msgid "prodded" +msgstr "knuffte" + +#: include/text.php:1061 +msgid "slap" +msgstr "ohrfeigen" + +#: include/text.php:1061 +msgid "slapped" +msgstr "ohrfeigte" + +#: include/text.php:1062 +msgid "finger" +msgstr "befummeln" + +#: include/text.php:1062 +msgid "fingered" +msgstr "befummelte" + +#: include/text.php:1063 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: include/text.php:1063 +msgid "rebuffed" +msgstr "abfuhrerteilte" + +#: include/text.php:1077 +msgid "happy" +msgstr "glücklich" + +#: include/text.php:1078 +msgid "sad" +msgstr "traurig" + +#: include/text.php:1079 +msgid "mellow" +msgstr "sanft" + +#: include/text.php:1080 +msgid "tired" +msgstr "müde" + +#: include/text.php:1081 +msgid "perky" +msgstr "frech" + +#: include/text.php:1082 +msgid "angry" +msgstr "sauer" + +#: include/text.php:1083 +msgid "stupified" +msgstr "verblüfft" + +#: include/text.php:1084 +msgid "puzzled" +msgstr "verwirrt" + +#: include/text.php:1085 +msgid "interested" +msgstr "interessiert" + +#: include/text.php:1086 +msgid "bitter" +msgstr "verbittert" + +#: include/text.php:1087 +msgid "cheerful" +msgstr "fröhlich" + +#: include/text.php:1088 +msgid "alive" +msgstr "lebendig" + +#: include/text.php:1089 +msgid "annoyed" +msgstr "verärgert" + +#: include/text.php:1090 +msgid "anxious" +msgstr "unruhig" + +#: include/text.php:1091 +msgid "cranky" +msgstr "schrullig" + +#: include/text.php:1092 +msgid "disturbed" +msgstr "verstört" + +#: include/text.php:1093 +msgid "frustrated" +msgstr "frustriert" + +#: include/text.php:1094 +msgid "motivated" +msgstr "motiviert" + +#: include/text.php:1095 +msgid "relaxed" +msgstr "entspannt" + +#: include/text.php:1096 +msgid "surprised" +msgstr "überrascht" + +#: include/text.php:1266 +msgid "Monday" +msgstr "Montag" + +#: include/text.php:1266 +msgid "Tuesday" +msgstr "Dienstag" + +#: include/text.php:1266 +msgid "Wednesday" +msgstr "Mittwoch" + +#: include/text.php:1266 +msgid "Thursday" +msgstr "Donnerstag" + +#: include/text.php:1266 +msgid "Friday" +msgstr "Freitag" + +#: include/text.php:1266 +msgid "Saturday" +msgstr "Samstag" + +#: include/text.php:1266 +msgid "Sunday" +msgstr "Sonntag" + +#: include/text.php:1270 +msgid "January" +msgstr "Januar" + +#: include/text.php:1270 +msgid "February" +msgstr "Februar" + +#: include/text.php:1270 +msgid "March" +msgstr "März" + +#: include/text.php:1270 +msgid "April" +msgstr "April" + +#: include/text.php:1270 +msgid "May" +msgstr "Mai" + +#: include/text.php:1270 +msgid "June" +msgstr "Juni" + +#: include/text.php:1270 +msgid "July" +msgstr "Juli" + +#: include/text.php:1270 +msgid "August" +msgstr "August" + +#: include/text.php:1270 +msgid "September" +msgstr "September" + +#: include/text.php:1270 +msgid "October" +msgstr "Oktober" + +#: include/text.php:1270 +msgid "November" +msgstr "November" + +#: include/text.php:1270 +msgid "December" +msgstr "Dezember" + +#: include/text.php:1492 +msgid "bytes" +msgstr "Byte" + +#: include/text.php:1524 include/text.php:1536 +msgid "Click to open/close" +msgstr "Zum öffnen/schließen klicken" + +#: include/text.php:1710 +msgid "View on separate page" +msgstr "Auf separater Seite ansehen" + +#: include/text.php:1711 +msgid "view on separate page" +msgstr "auf separater Seite ansehen" + +#: include/text.php:1768 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "Standard" + +#: include/text.php:1780 +msgid "Select an alternate language" +msgstr "Alternative Sprache auswählen" + +#: include/text.php:2036 +msgid "activity" +msgstr "Aktivität" + +#: include/text.php:2039 +msgid "post" +msgstr "Beitrag" + +#: include/text.php:2207 +msgid "Item filed" +msgstr "Beitrag abgelegt" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: include/bbcode.php:556 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:590 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: include/notifier.php:830 include/delivery.php:456 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 +msgid "noreply" +msgstr "noreply" + +#: 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." + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr " bei Last.fm" + +#: include/bb2diaspora.php:154 include/event.php:22 +msgid "Starts:" +msgstr "Beginnt:" + +#: include/bb2diaspora.php:162 include/event.php:32 +msgid "Finishes:" +msgstr "Endet:" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." + +#: include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: include/nav.php:77 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: include/nav.php:78 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Deine Fotos" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "Deine Videos" + +#: include/nav.php:80 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: include/nav.php:81 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Anmelden" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Homepage" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Unterhaltungen im Netzwerk" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Verzeichnis" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: include/nav.php:143 +msgid "Information" +msgstr "Information" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Unterhaltungen Deiner Kontakte" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Private E-Mail" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "Eingang" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Ausgang" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Verwalten" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Sitemap" + +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1141 include/api.php:1143 +msgid "User not found." +msgstr "Nutzer nicht gefunden." + +#: include/api.php:795 +#, 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:814 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." + +#: include/api.php:833 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." + +#: include/api.php:1350 +msgid "There is no status with this id." +msgstr "Es gibt keinen Status mit dieser ID." + +#: include/api.php:1424 +msgid "There is no conversation with this id." +msgstr "Es existiert keine Unterhaltung mit dieser ID." + +#: include/api.php:1703 +msgid "Invalid item." +msgstr "Ungültiges Objekt" + +#: include/api.php:1713 +msgid "Invalid action. " +msgstr "Ungültige Aktion" + +#: include/api.php:1721 +msgid "DB error" +msgstr "DB Error" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." + +#: include/user.php:118 +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." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:156 +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." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:265 +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." + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Freunde" + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\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." + +#: include/diaspora.php:717 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: include/diaspora.php:2560 +msgid "Attachments:" +msgstr "Anhänge:" + +#: include/items.php:4853 +msgid "Do you really want to delete this item?" +msgstr "Möchtest Du wirklich dieses Item löschen?" + +#: include/items.php:5128 +msgid "Archives" +msgstr "Archiv" + #: include/profile_selectors.php:6 msgid "Male" msgstr "Männlich" @@ -6746,10 +7509,6 @@ msgstr "Untreu" msgid "Sex Addict" msgstr "Sexbesessen" -#: include/profile_selectors.php:42 include/user.php:289 include/user.php:293 -msgid "Friends" -msgstr "Freunde" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Freunde/Zuwendungen" @@ -6834,457 +7593,6 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" - -#: 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?" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." - -#: 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!" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" - -#: include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" - -#: 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" - -#: 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" - -#: include/plugin.php:455 include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." - -#: include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." - -#: include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: include/conversation.php:291 -#, 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" - -#: include/conversation.php:771 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "Anstupsen" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:965 -msgid "and" -msgstr "und" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Privater Beitrag" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: 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 Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Leute finden" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netzwerke" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle Netzwerke" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorien" - -#: include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "Deine Videos" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Anmelden" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: include/nav.php:129 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: include/nav.php:131 -msgid "Conversations on the network" -msgstr "Unterhaltungen im Netzwerk" - -#: include/nav.php:133 -msgid "Directory" -msgstr "Verzeichnis" - -#: include/nav.php:133 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: include/nav.php:135 -msgid "Information" -msgstr "Information" - -#: include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" - -#: include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: include/nav.php:146 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: include/nav.php:153 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: include/nav.php:157 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: include/nav.php:158 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: include/nav.php:162 -msgid "Private mail" -msgstr "Private E-Mail" - -#: include/nav.php:163 -msgid "Inbox" -msgstr "Eingang" - -#: include/nav.php:164 -msgid "Outbox" -msgstr "Ausgang" - -#: include/nav.php:168 -msgid "Manage" -msgstr "Verwalten" - -#: include/nav.php:168 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: include/nav.php:173 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: include/nav.php:176 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: include/nav.php:178 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: include/nav.php:185 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: include/nav.php:189 -msgid "Navigation" -msgstr "Navigation" - -#: include/nav.php:189 -msgid "Site map" -msgstr "Sitemap" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" @@ -7568,299 +7876,212 @@ msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s) msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." -#: 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." - -#: 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." - -#: 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." - -#: include/user.php:113 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: include/user.php:126 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: 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." - -#: 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." - -#: 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." - -#: include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: 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." - -#: 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." - -#: 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 "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." - -#: 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." - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: include/bbcode.php:549 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:583 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schrieb den folgenden Beitrag" - -#: include/bbcode.php:1065 include/bbcode.php:1085 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: include/bbcode.php:1110 include/bbcode.php:1111 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: include/oembed.php:224 +#: include/oembed.php:220 msgid "Embedded content" msgstr "Eingebetteter Inhalt" -#: include/oembed.php:233 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" -#: 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." +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" +#: 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?" -#: include/group.php:226 -msgid "Everybody" -msgstr "Alle Kontakte" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." -#: include/group.php:249 -msgid "edit" -msgstr "bearbeiten" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Kontakt löschen" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD oder MM-DD" - -#: include/datetime.php:256 -msgid "never" -msgstr "nie" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" - -#: include/datetime.php:272 -msgid "year" -msgstr "Jahr" - -#: include/datetime.php:272 -msgid "years" -msgstr "Jahre" - -#: include/datetime.php:273 -msgid "month" -msgstr "Monat" - -#: include/datetime.php:273 -msgid "months" -msgstr "Monate" - -#: include/datetime.php:274 -msgid "week" -msgstr "Woche" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "Wochen" - -#: include/datetime.php:275 -msgid "day" -msgstr "Tag" - -#: include/datetime.php:275 -msgid "days" -msgstr "Tage" - -#: include/datetime.php:276 -msgid "hour" -msgstr "Stunde" - -#: include/datetime.php:276 -msgid "hours" -msgstr "Stunden" - -#: include/datetime.php:277 -msgid "minute" -msgstr "Minute" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "Minuten" - -#: include/datetime.php:278 -msgid "second" -msgstr "Sekunde" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "Sekunden" - -#: include/datetime.php:287 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" -#: include/network.php:959 -msgid "view full size" -msgstr "Volle Größe anzeigen" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" -#: include/dbstructure.php:26 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: include/uimport.php:222 #, 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." +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." +#: index.php:441 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." +#: 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)" + +#: 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" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Farbschema" + +#: 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" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Ausrichtung" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Mitte" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" + +#: 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" + +#: 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" + +#: 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" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: 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" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Freunde finden" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Stil auswählen" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variationen" diff --git a/view/de/strings.php b/view/de/strings.php index 61eb58620..a800561db 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,123 +5,281 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Edit"] = "Bearbeiten"; -$a->strings["Select"] = "Auswählen"; -$a->strings["Delete"] = "Löschen"; -$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["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$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["%s from %s"] = "%s von %s"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", +$a->strings["%d contact edited."] = array( + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet", ); -$a->strings["comment"] = array( - 0 => "Kommentar", - 1 => "Kommentare", -); -$a->strings["show more"] = "mehr anzeigen"; -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Submit"] = "Senden"; -$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["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["Permission denied."] = "Zugriff verweigert."; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$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["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["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["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["Confirm"] = "Bestätigen"; -$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["[Name Withheld]"] = "[Name unterdrückt]"; +$a->strings["Permission denied."] = "Zugriff verweigert."; +$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["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["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblock"] = "Entsperren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; +$a->strings["Repair"] = "Reparieren"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Disabled"] = "Deaktiviert"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Contact Editor"] = "Kontakt Editor"; +$a->strings["Submit"] = "Senden"; +$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; +$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"] = "Verbirg diesen Kontakt vor andere"; +$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["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; +$a->strings["Profile URL"] = "Profil URL"; +$a->strings["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["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["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["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["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["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 willst."; +$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 %s"] = "Bildgröße überschreitet das Limit von %s"; +$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["- select -"] = "- auswählen -"; +$a->strings["Save"] = "Speichern"; +$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; $a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; $a->strings["Does %s know you?"] = "Kennt %s Dich?"; $a->strings["No"] = "Nein"; -$a->strings["Yes"] = "Ja"; $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["Diaspora"] = "Diaspora"; -$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["Cancel"] = "Abbrechen"; -$a->strings["View Video"] = "Video ansehen"; +$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["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["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; +$a->strings["Delete Video"] = "Video Löschen"; +$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["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["Invalid request."] = "Ungültige Anfrage"; +$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 gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, 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 E-Mail 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 in eines, 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["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"; @@ -132,7 +290,6 @@ $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"] = "Verbirg diesen Kontakt von anderen"; $a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; $a->strings["if applicable"] = "falls anwendbar"; $a->strings["Approve"] = "Genehmigen"; @@ -146,6 +303,10 @@ $a->strings["Sharer"] = "Teilenden"; $a->strings["Fan/Admirer"] = "Fan/Verehrer"; $a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; $a->strings["New Follower"] = "Neuer Bewunderer"; +$a->strings["Location:"] = "Ort:"; +$a->strings["About:"] = "Über:"; +$a->strings["Tags:"] = "Tags"; +$a->strings["Gender:"] = "Geschlecht:"; $a->strings["No introductions."] = "Keine Kontaktanfragen."; $a->strings["Notifications"] = "Benachrichtigungen"; $a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; @@ -161,13 +322,6 @@ $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["photo"] = "Foto"; -$a->strings["status"] = "Status"; -$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["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["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:"; @@ -180,12 +334,79 @@ $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["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["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["Refetch contact data"] = "Kontaktdaten neu laden"; +$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["Login"] = "Anmeldung"; +$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["People Search - %s"] = "Personensuche - %s"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Files"] = "Dateien"; +$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; $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["Inspect Queue"] = "Warteschlange Inspizieren"; $a->strings["Logs"] = "Protokolle"; $a->strings["probe address"] = "Adresse untersuchen"; $a->strings["check webfinger"] = "Webfinger überprüfen"; @@ -193,7 +414,13 @@ $a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["diagnostics"] = "Diagnose"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; +$a->strings["Administration"] = "Administration"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Empfänger Name"; +$a->strings["Recipient Profile"] = "Empfänger Profil"; +$a->strings["Created"] = "Erstellt"; +$a->strings["Last Tried"] = "Zuletzt versucht"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."; $a->strings["Normal Account"] = "Normales Konto"; $a->strings["Soapbox Account"] = "Marktschreier-Konto"; $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto"; @@ -201,7 +428,6 @@ $a->strings["Automatic Friend Account"] = "Automatisches Freundekonto"; $a->strings["Blog Account"] = "Blog-Konto"; $a->strings["Private Forum"] = "Privates Forum"; $a->strings["Message queues"] = "Nachrichten-Warteschlangen"; -$a->strings["Administration"] = "Administration"; $a->strings["Summary"] = "Zusammenfassung"; $a->strings["Registered users"] = "Registrierte Nutzer"; $a->strings["Pending registrations"] = "Anstehende Anmeldungen"; @@ -213,12 +439,17 @@ $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für $a->strings["No community page"] = "Keine Gemeinschaftsseite"; $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; $a->strings["Global community page"] = "Globale Gemeinschaftsseite"; -$a->strings["Never"] = "Niemals"; $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["Users, Global Contacts"] = "Nutzer, globale Kontakte"; +$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback"; +$a->strings["One month"] = "ein Monat"; +$a->strings["Three months"] = "drei Monate"; +$a->strings["Half a year"] = "ein halbes Jahr"; +$a->strings["One year"] = "ein Jahr"; $a->strings["Multi user instance"] = "Mehrbenutzer Instanz"; $a->strings["Closed"] = "Geschlossen"; $a->strings["Requires approval"] = "Bedarf der Zustimmung"; @@ -231,16 +462,20 @@ $a->strings["Registration"] = "Registrierung"; $a->strings["File upload"] = "Datei hochladen"; $a->strings["Policies"] = "Regeln"; $a->strings["Advanced"] = "Erweitert"; +$a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen"; $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["Sender Email"] = "Absender für Emails"; +$a->strings["The email address your server shall use to send notification emails from."] = "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."; $a->strings["Banner/Logo"] = "Banner/Logo"; $a->strings["Shortcut icon"] = "Shortcut Icon"; +$a->strings["Link to an icon that will be used for browsers."] = "Link zu einem Icon, das Browser verwenden werden."; $a->strings["Touch icon"] = "Touch Icon"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link zu einem Icon das Tablets und Handies verwenden sollen."; $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."; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."; $a->strings["System language"] = "Systemsprache"; $a->strings["System theme"] = "Systemweites Theme"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern"; @@ -307,7 +542,7 @@ $a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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."; $a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen"; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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."; -$a->strings["Enable Diaspora support"] = "Diaspora-Support aktivieren"; +$a->strings["Enable Diaspora support"] = "Diaspora Unterstützung aktivieren"; $a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung."; $a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben"; $a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."; @@ -325,6 +560,16 @@ $a->strings["Maximum Load Average"] = "Maximum Load Average"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"; $a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."; +$a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen"; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."; +$a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken"; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."; +$a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte"; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."; +$a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen"; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."; +$a->strings["Publish server information"] = "Server Informationen veröffentlichen"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte the-federation.info aufrufen."; $a->strings["Use MySQL full text engine"] = "Nutze MySQL full text engine"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."; $a->strings["Suppress Language"] = "Sprachinformation unterdrücken"; @@ -332,22 +577,29 @@ $a->strings["Suppress language information in meta information about a posting." $a->strings["Suppress Tags"] = "Tags Unterdrücken"; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."; $a->strings["Path to item cache"] = "Pfad zum Eintrag Cache"; +$a->strings["The item caches buffers generated bbcode and external images."] = "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."; $a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden"; $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."] = "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."; $a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."; $a->strings["Path for lock file"] = "Pfad für die Sperrdatei"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."; $a->strings["Temp path"] = "Temp Pfad"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."; $a->strings["Base path to installation"] = "Basis-Pfad zur Installation"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."; $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["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 Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."; $a->strings["Enable old style pager"] = "Den Old-Style Pager aktiviren"; $a->strings["The old style pager has page numbers but slows down massively the page speed."] = "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."; $a->strings["Only search in tags"] = "Nur in Tags suchen"; $a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."; $a->strings["New base url"] = "Neue Basis-URL"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."; $a->strings["RINO Encryption"] = "RINO Verschlüsselung"; $a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Friendica Instanzen"; +$a->strings["Embedly API key"] = "Embedly API Schlüssel"; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."; $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"; @@ -380,12 +632,9 @@ $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["Name"] = "Name"; $a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Deny"] = "Verwehren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Unblock"] = "Entsperren"; $a->strings["Site admin"] = "Seitenadministrator"; $a->strings["Account expired"] = "Account ist abgelaufen"; $a->strings["New User"] = "Neuer Nutzer"; @@ -405,7 +654,6 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert."; $a->strings["Disable"] = "Ausschalten"; $a->strings["Enable"] = "Einschalten"; $a->strings["Toggle"] = "Umschalten"; -$a->strings["Settings"] = "Einstellungen"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; $a->strings["No themes found."] = "Keine Themen gefunden."; @@ -418,83 +666,39 @@ $a->strings["Enable Debugging"] = "Protokoll führen"; $a->strings["Log file"] = "Protokolldatei"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."; $a->strings["Log level"] = "Protokoll-Level"; -$a->strings["Update now"] = "Jetzt aktualisieren"; $a->strings["Close"] = "Schließen"; $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["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["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["Search Results For: %s"] = "Suchergebnisse für: %s"; +$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"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; +$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; +$a->strings["New"] = "Neue"; +$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; +$a->strings["Shared Links"] = "Geteilte Links"; +$a->strings["Interesting Links"] = "Interessante Links"; +$a->strings["Starred"] = "Markierte"; +$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", + 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", ); -$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["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["Save"] = "Speichern"; -$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["Profile not found."] = "Profil 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["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: %s"] = "Gruppe: %s"; +$a->strings["Contact: %s"] = "Kontakt: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; +$a->strings["Invalid contact."] = "Ungültiger Kontakt."; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["l, F j"] = "l, F j"; @@ -512,304 +716,136 @@ $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["Photos"] = "Bilder"; -$a->strings["Files"] = "Dateien"; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["Preview"] = "Vorschau"; +$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["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["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."; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; +$a->strings["System check"] = "Systemtest"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["Database connection"] = "Datenbankverbindung"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "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."; +$a->strings["Database Server Name"] = "Datenbank-Server"; +$a->strings["Database Login Name"] = "Datenbank-Nutzer"; +$a->strings["Database Login Password"] = "Datenbank-Passwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; +$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; +$a->strings["Site settings"] = "Server-Einstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; +$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'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Pfad zu PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; +$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; +$a->strings["PHP cli binary"] = "PHP CLI Binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; +$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"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; +$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; +$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; +$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; +$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; +$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; +$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; +$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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; +$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."] = "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."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "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."; +$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; +$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."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; +$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."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; +$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["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; -$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["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["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$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["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["everybody"] = "jeder"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Profile Photos"] = "Profilbilder"; -$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 file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$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["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; -$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["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["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Share"] = "Teilen"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["No profile"] = "Kein Profil"; -$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["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 gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, 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 E-Mail 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 in eines, 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["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; -$a->strings["Applications"] = "Anwendungen"; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; $a->strings["Help:"] = "Hilfe:"; $a->strings["Help"] = "Hilfe"; -$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["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["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; -$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; -$a->strings["Suggest friends"] = "Kontakte vorschlagen"; -$a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -); -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["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["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; -$a->strings["Disabled"] = "Deaktiviert"; -$a->strings["Fetch information"] = "Beziehe Information"; -$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact Editor"] = "Kontakt Editor"; -$a->strings["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["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["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["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["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["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["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; -$a->strings["Delete Video"] = "Video Löschen"; -$a->strings["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["Login"] = "Anmeldung"; -$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; -$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; -$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["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["Profile"] = "Profil"; -$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 willst."; -$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["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["Search"] = "Suche"; +$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["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 %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; +$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["link"] = "Link"; +$a->strings["Not available."] = "Nicht verfügbar."; +$a->strings["Community"] = "Gemeinschaft"; $a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; -$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$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["everybody"] = "jeder"; $a->strings["Additional features"] = "Zusätzliche Features"; $a->strings["Display"] = "Anzeige"; $a->strings["Social Networks"] = "Soziale Netzwerke"; @@ -853,10 +889,13 @@ $a->strings["Additional Features"] = "Zusätzliche Features"; $a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien"; $a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten"; $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."; $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["GNU Social (OStatus)"] = "GNU Social (OStatus)"; $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."; @@ -885,6 +924,7 @@ $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["Theme settings"] = "Themeneinstellungen"; $a->strings["User Types"] = "Nutzer Art"; $a->strings["Community Types"] = "Gemeinschafts Art"; $a->strings["Normal Account Page"] = "Normales Konto"; @@ -909,8 +949,7 @@ $a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine $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["Your Identity Address is '%s' or '%s'."] = "Die Adresse deines Profils lautet '%s' oder '%s'."; $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"; @@ -939,6 +978,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts $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"; @@ -966,9 +1007,94 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve $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["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; +$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["Confirm"] = "Bestätigen"; +$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["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["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["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["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; +$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["Items tagged with: %s"] = "Beiträge markiert mit: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$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["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$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."; @@ -1043,71 +1169,47 @@ $a->strings["Love/romance"] = "Liebe/Romantik"; $a->strings["Work/employment"] = "Arbeit/Anstellung"; $a->strings["School/education"] = "Schule/Ausbildung"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein."; -$a->strings["Age: "] = "Alter: "; $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; $a->strings["Change profile photo"] = "Profilbild ändern"; $a->strings["Create New Profile"] = "Neues Profil anlegen"; $a->strings["Profile Image"] = "Profilbild"; $a->strings["visible to everybody"] = "sichtbar für jeden"; $a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["link"] = "Link"; -$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["{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["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$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 %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$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["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["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$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["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["No contacts."] = "Keine Kontakte."; -$a->strings["View Contacts"] = "Kontakte anzeigen"; +$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["the bugtracker at github"] = "dem Bugtracker auf github"; +$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["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["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Site Directory"] = "Verzeichnis"; -$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["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."; @@ -1115,207 +1217,87 @@ $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["Post successful."] = "Beitrag erfolgreich 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["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."; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; -$a->strings["System check"] = "Systemtest"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Database connection"] = "Datenbankverbindung"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "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."; -$a->strings["Database Server Name"] = "Datenbank-Server"; -$a->strings["Database Login Name"] = "Datenbank-Nutzer"; -$a->strings["Database Login Password"] = "Datenbank-Passwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; -$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; -$a->strings["Site settings"] = "Server-Einstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; -$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'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Pfad zu PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; -$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; -$a->strings["PHP cli binary"] = "PHP CLI Binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; -$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"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; -$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; -$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; -$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; -$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; -$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; -$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; -$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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; -$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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; -$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."] = "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."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "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."; -$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; -$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."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; -$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."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; -$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["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["Contact Photos"] = "Kontaktbilder"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$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 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["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["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Share"] = "Teilen"; $a->strings["Not Extended"] = "Nicht erweitert."; -$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["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$a->strings["Group: %s"] = "Gruppe: %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; $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["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["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["%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["Search Results For: %s"] = "Suchergebnisse für: %s"; -$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"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; -$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; -$a->strings["New"] = "Neue"; -$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; -$a->strings["Shared Links"] = "Geteilte Links"; -$a->strings["Interesting Links"] = "Interessante Links"; -$a->strings["Starred"] = "Markierte"; -$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", - 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; -$a->strings["Contact: %s"] = "Kontakt: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; -$a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["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["Refetch contact data"] = "Kontaktdaten neu laden"; -$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["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["event"] = "Veranstaltung"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "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["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["show"] = "zeigen"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Theme settings"] = "Themeneinstellungen"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$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 style"] = "Stil auswählen"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["default"] = "Standard"; -$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"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$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 theme width"] = "Theme Breite festlegen"; -$a->strings["Drop contact"] = "Kontakt löschen"; +$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."; @@ -1330,6 +1312,40 @@ $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["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"; @@ -1364,7 +1380,6 @@ $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'"; @@ -1372,13 +1387,126 @@ $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["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["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; +$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["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; +$a->strings["never"] = "nie"; +$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; +$a->strings["year"] = "Jahr"; +$a->strings["years"] = "Jahre"; +$a->strings["month"] = "Monat"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$a->strings["day"] = "Tag"; +$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["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["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["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["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["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["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[" on Last.fm"] = " bei Last.fm"; +$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["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["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"; @@ -1392,6 +1520,9 @@ $a->strings["%d Contact"] = array( 0 => "%d Kontakt", 1 => "%d Kontakte", ); +$a->strings["Full Text"] = "Volltext"; +$a->strings["Tags"] = "Tags"; +$a->strings["Forums"] = "Foren"; $a->strings["poke"] = "anstupsen"; $a->strings["poked"] = "stupste"; $a->strings["ping"] = "anpingen"; @@ -1445,81 +1576,118 @@ $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["View on separate page"] = "Auf separater Seite ansehen"; +$a->strings["view on separate page"] = "auf separater Seite ansehen"; +$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["Redmatrix"] = "Redmatrix"; +$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$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["Conversations on the network"] = "Unterhaltungen im Netzwerk"; +$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["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; -$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; -$a->strings["Archives"] = "Archiv"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; +$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 \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; +$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["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["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["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["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["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["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"; @@ -1556,7 +1724,6 @@ $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"; @@ -1578,120 +1745,6 @@ $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["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["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["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$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["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["Send PM"] = "Private Nachricht senden"; -$a->strings["Poke"] = "Anstupsen"; -$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["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["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["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["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 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["Conversations on the network"] = "Unterhaltungen im Netzwerk"; -$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["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["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; @@ -1749,64 +1802,55 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D $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["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\$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["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["Visible to everybody"] = "Für jeden sichtbar"; -$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["Embedded content"] = "Eingebetteter Inhalt"; $a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$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["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; -$a->strings["never"] = "nie"; -$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; -$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["view full size"] = "Volle Größe anzeigen"; -$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["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["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/es/messages.po b/view/es/messages.po index e78c9215f..11704cf2a 100644 --- a/view/es/messages.po +++ b/view/es/messages.po @@ -26,548 +26,535 @@ # bavatar , 2013 # bavatar , 2012 # tschlotfeldt , 2011 +# tupambae, 2015 +# tupambae, 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-02-09 09:46+0000\n" +"POT-Creation-Date: 2015-09-01 07:09+0200\n" +"PO-Revision-Date: 2015-09-01 09:00+0000\n" "Last-Translator: fabrixxm \n" -"Language-Team: Spanish (http://www.transifex.com/projects/p/friendica/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/contacts.php:108 +#: mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d contactos editados" +msgstr[1] "%d contactos editados" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 +#: mod/contacts.php:145 mod/contacts.php:340 msgid "Could not access contact record." msgstr "No se pudo acceder a los datos del contacto." -#: ../../mod/contacts.php:153 +#: mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "No se pudo encontrar el perfil seleccionado." -#: ../../mod/contacts.php:186 +#: mod/contacts.php:192 msgid "Contact updated." msgstr "Contacto actualizado." -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 +#: mod/contacts.php:194 mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Error al actualizar el contacto." -#: ../../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 +#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 +#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 +#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5023 index.php:382 msgid "Permission denied." msgstr "Permiso denegado." -#: ../../mod/contacts.php:287 +#: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "El contacto ha sido bloqueado" -#: ../../mod/contacts.php:287 +#: mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "El contacto ha sido desbloqueado" -#: ../../mod/contacts.php:298 +#: mod/contacts.php:372 msgid "Contact has been ignored" msgstr "El contacto ha sido ignorado" -#: ../../mod/contacts.php:298 +#: mod/contacts.php:372 msgid "Contact has been unignored" msgstr "El contacto ya no está ignorado" -#: ../../mod/contacts.php:310 +#: mod/contacts.php:384 msgid "Contact has been archived" msgstr "El contacto ha sido archivado" -#: ../../mod/contacts.php:310 +#: mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "El contacto ya no está archivado" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 +#: mod/contacts.php:411 mod/contacts.php:767 msgid "Do you really want to delete this contact?" msgstr "¿Estás seguro de que quieres eliminar este contacto?" -#: ../../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 +#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 +#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 +#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 +#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 +#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 +#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/api.php:105 include/items.php:4855 msgid "Yes" msgstr "Sí" -#: ../../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 +#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 +#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 +#: include/items.php:4858 msgid "Cancel" msgstr "Cancelar" -#: ../../mod/contacts.php:352 +#: mod/contacts.php:428 msgid "Contact has been removed." msgstr "El contacto ha sido eliminado" -#: ../../mod/contacts.php:390 +#: mod/contacts.php:466 #, php-format msgid "You are mutual friends with %s" msgstr "Ahora tienes una amistad mutua con %s" -#: ../../mod/contacts.php:394 +#: mod/contacts.php:470 #, php-format msgid "You are sharing with %s" msgstr "Estás compartiendo con %s" -#: ../../mod/contacts.php:399 +#: mod/contacts.php:475 #, php-format msgid "%s is sharing with you" msgstr "%s está compartiendo contigo" -#: ../../mod/contacts.php:416 +#: mod/contacts.php:495 msgid "Private communications are not available for this contact." msgstr "Las comunicaciones privadas no está disponibles para este contacto." -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 +#: mod/contacts.php:498 mod/admin.php:618 msgid "Never" msgstr "Nunca" -#: ../../mod/contacts.php:423 +#: mod/contacts.php:502 msgid "(Update was successful)" msgstr "(La actualización se ha completado)" -#: ../../mod/contacts.php:423 +#: mod/contacts.php:502 msgid "(Update was not successful)" msgstr "(La actualización no se ha completado)" -#: ../../mod/contacts.php:425 +#: mod/contacts.php:504 msgid "Suggest friends" msgstr "Sugerir amigos" -#: ../../mod/contacts.php:429 +#: mod/contacts.php:508 #, php-format msgid "Network type: %s" msgstr "Tipo de red: %s" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: mod/contacts.php:511 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contacto en común" msgstr[1] "%d contactos en común" -#: ../../mod/contacts.php:437 +#: mod/contacts.php:516 msgid "View all contacts" msgstr "Ver todos los contactos" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1083 msgid "Unblock" msgstr "Desbloquear" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1082 msgid "Block" msgstr "Bloquear" -#: ../../mod/contacts.php:445 +#: mod/contacts.php:524 msgid "Toggle Blocked status" msgstr "Cambiar bloqueados" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 msgid "Unignore" msgstr "Quitar de Ignorados" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 msgid "Ignore" msgstr "Ignorar" -#: ../../mod/contacts.php:451 +#: mod/contacts.php:531 msgid "Toggle Ignored status" msgstr "Cambiar ignorados" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Unarchive" msgstr "Sin archivar" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Archive" msgstr "Archivo" -#: ../../mod/contacts.php:458 +#: mod/contacts.php:539 msgid "Toggle Archive status" msgstr "Cambiar archivados" -#: ../../mod/contacts.php:461 +#: mod/contacts.php:543 msgid "Repair" msgstr "Reparar" -#: ../../mod/contacts.php:464 +#: mod/contacts.php:546 msgid "Advanced Contact Settings" msgstr "Configuración avanzada" -#: ../../mod/contacts.php:470 +#: mod/contacts.php:553 msgid "Communications lost with this contact!" msgstr "¡Se ha perdido la comunicación con este contacto!" -#: ../../mod/contacts.php:473 +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "Recaudar informacion complementaria de los feeds" + +#: mod/contacts.php:557 mod/admin.php:627 +msgid "Disabled" +msgstr "Deshabilitado" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "Recaudar informacion" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "Recaudar informacion y palabras claves" + +#: mod/contacts.php:566 msgid "Contact Editor" msgstr "Editor de contactos" -#: ../../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 +#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:511 mod/content.php:712 mod/install.php:250 +#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 +#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 +#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 +#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 +#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "Envíar" -#: ../../mod/contacts.php:476 +#: mod/contacts.php:569 msgid "Profile Visibility" msgstr "Visibilidad del Perfil" -#: ../../mod/contacts.php:477 +#: mod/contacts.php:570 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura." -#: ../../mod/contacts.php:478 +#: mod/contacts.php:571 msgid "Contact Information / Notes" msgstr "Información del Contacto / Notas" -#: ../../mod/contacts.php:479 +#: mod/contacts.php:572 msgid "Edit contact notes" msgstr "Editar notas del contacto" -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Ver el perfil de %s [%s]" -#: ../../mod/contacts.php:485 +#: mod/contacts.php:578 msgid "Block/Unblock contact" msgstr "Boquear/Desbloquear contacto" -#: ../../mod/contacts.php:486 +#: mod/contacts.php:579 msgid "Ignore contact" msgstr "Ignorar contacto" -#: ../../mod/contacts.php:487 +#: mod/contacts.php:580 msgid "Repair URL settings" msgstr "Configuración de reparación de la dirección" -#: ../../mod/contacts.php:488 +#: mod/contacts.php:581 msgid "View conversations" msgstr "Ver conversaciones" -#: ../../mod/contacts.php:490 +#: mod/contacts.php:583 msgid "Delete contact" msgstr "Eliminar contacto" -#: ../../mod/contacts.php:494 +#: mod/contacts.php:587 msgid "Last update:" msgstr "Última actualización:" -#: ../../mod/contacts.php:496 +#: mod/contacts.php:589 msgid "Update public posts" msgstr "Actualizar publicaciones públicas" -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 +#: mod/contacts.php:591 mod/admin.php:1584 msgid "Update now" msgstr "Actualizar ahora" -#: ../../mod/contacts.php:505 +#: mod/contacts.php:598 msgid "Currently blocked" msgstr "Bloqueados" -#: ../../mod/contacts.php:506 +#: mod/contacts.php:599 msgid "Currently ignored" msgstr "Ignorados" -#: ../../mod/contacts.php:507 +#: mod/contacts.php:600 msgid "Currently archived" msgstr "Archivados" -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 +#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 msgid "Hide this contact from others" msgstr "Ocultar este contacto a los demás." -#: ../../mod/contacts.php:508 +#: mod/contacts.php:601 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." -#: ../../mod/contacts.php:509 +#: mod/contacts.php:602 msgid "Notification for new posts" -msgstr "" +msgstr "Notificacion de nuevos temas." -#: ../../mod/contacts.php:509 +#: mod/contacts.php:602 msgid "Send a notification of every new post of this contact" -msgstr "" +msgstr "Enviar una notificacion por nuevos temas de este contacto." -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "" - -#: ../../mod/contacts.php:513 +#: mod/contacts.php:605 msgid "Blacklisted keywords" -msgstr "" +msgstr "Lista negra de palabras" -#: ../../mod/contacts.php:513 +#: mod/contacts.php:605 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" -msgstr "" +msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado" -#: ../../mod/contacts.php:564 +#: mod/contacts.php:612 +msgid "Profile URL" +msgstr "URL Perfil" + +#: mod/contacts.php:658 msgid "Suggestions" msgstr "Sugerencias" -#: ../../mod/contacts.php:567 +#: mod/contacts.php:661 msgid "Suggest potential friends" msgstr "Amistades potenciales sugeridas" -#: ../../mod/contacts.php:570 ../../mod/group.php:194 +#: mod/contacts.php:665 mod/group.php:192 msgid "All Contacts" msgstr "Todos los contactos" -#: ../../mod/contacts.php:573 +#: mod/contacts.php:668 msgid "Show all contacts" msgstr "Mostrar todos los contactos" -#: ../../mod/contacts.php:576 +#: mod/contacts.php:672 msgid "Unblocked" msgstr "Desbloqueados" -#: ../../mod/contacts.php:579 +#: mod/contacts.php:675 msgid "Only show unblocked contacts" msgstr "Mostrar solo contactos sin bloquear" -#: ../../mod/contacts.php:583 +#: mod/contacts.php:680 msgid "Blocked" msgstr "Bloqueados" -#: ../../mod/contacts.php:586 +#: mod/contacts.php:683 msgid "Only show blocked contacts" msgstr "Mostrar solo contactos bloqueados" -#: ../../mod/contacts.php:590 +#: mod/contacts.php:688 msgid "Ignored" msgstr "Ignorados" -#: ../../mod/contacts.php:593 +#: mod/contacts.php:691 msgid "Only show ignored contacts" msgstr "Mostrar solo contactos ignorados" -#: ../../mod/contacts.php:597 +#: mod/contacts.php:696 msgid "Archived" msgstr "Archivados" -#: ../../mod/contacts.php:600 +#: mod/contacts.php:699 msgid "Only show archived contacts" msgstr "Mostrar solo contactos archivados" -#: ../../mod/contacts.php:604 +#: mod/contacts.php:704 msgid "Hidden" msgstr "Ocultos" -#: ../../mod/contacts.php:607 +#: mod/contacts.php:707 msgid "Only show hidden contacts" msgstr "Mostrar solo contactos ocultos" -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Amistad recíproca" - -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "es tu fan" - -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "eres fan de" - -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Modificar contacto" - -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 +#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 +#: include/nav.php:186 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Contactos" -#: ../../mod/contacts.php:706 +#: mod/contacts.php:762 msgid "Search your contacts" msgstr "Buscar en tus contactos" -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 +#: mod/contacts.php:763 mod/directory.php:63 msgid "Finding: " msgstr "Buscando: " -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 +#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Buscar" -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 +#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Actualizar" -#: ../../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 +#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 +#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 msgid "Delete" msgstr "Eliminar" -#: ../../mod/hcard.php:10 +#: mod/contacts.php:786 +msgid "Mutual Friendship" +msgstr "Amistad recíproca" + +#: mod/contacts.php:790 +msgid "is a fan of yours" +msgstr "es tu fan" + +#: mod/contacts.php:794 +msgid "you are a fan of" +msgstr "eres fan de" + +#: mod/contacts.php:811 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Modificar contacto" + +#: mod/hcard.php:10 msgid "No profile" msgstr "Nigún perfil" -#: ../../mod/manage.php:106 +#: mod/manage.php:106 msgid "Manage Identities and/or Pages" msgstr "Administrar identidades y/o páginas" -#: ../../mod/manage.php:107 +#: 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 entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" -#: ../../mod/manage.php:108 +#: mod/manage.php:108 msgid "Select an identity to manage: " msgstr "Selecciona una identidad a gestionar:" -#: ../../mod/oexchange.php:25 +#: mod/oexchange.php:25 msgid "Post successful." msgstr "¡Publicado!" -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 +#: mod/profperm.php:19 mod/group.php:72 index.php:381 msgid "Permission denied" msgstr "Permiso denegado" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +#: mod/profperm.php:25 mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "Identificador de perfil no válido." -#: ../../mod/profperm.php:101 +#: mod/profperm.php:102 msgid "Profile Visibility Editor" msgstr "Editor de visibilidad del perfil" -#: ../../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 +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 +#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "Perfil" -#: ../../mod/profperm.php:105 ../../mod/group.php:224 +#: mod/profperm.php:106 mod/group.php:222 msgid "Click on a contact to add or remove." msgstr "Pulsa en un contacto para añadirlo o eliminarlo." -#: ../../mod/profperm.php:114 +#: mod/profperm.php:115 msgid "Visible To" msgstr "Visible para" -#: ../../mod/profperm.php:130 +#: mod/profperm.php:131 msgid "All Contacts (with secure profile access)" msgstr "Todos los contactos (con perfil de acceso seguro)" -#: ../../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 +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 +#: mod/notice.php:15 include/items.php:4814 msgid "Item not found." msgstr "Elemento no encontrado." -#: ../../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 +#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/directory.php:35 mod/photos.php:942 msgid "Public access denied." msgstr "Acceso público denegado." -#: ../../mod/display.php:332 ../../mod/profile.php:155 +#: mod/display.php:343 mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "El acceso a este perfil ha sido restringido." -#: ../../mod/display.php:496 +#: mod/display.php:505 msgid "Item has been removed." msgstr "El elemento ha sido eliminado." -#: ../../mod/newmember.php:6 +#: mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "Bienvenido a Friendica " -#: ../../mod/newmember.php:8 +#: mod/newmember.php:8 msgid "New Member Checklist" msgstr "Listado de nuevos miembros" -#: ../../mod/newmember.php:12 +#: 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 " @@ -575,40 +562,39 @@ msgid "" "registration and then will quietly disappear." msgstr "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." -#: ../../mod/newmember.php:14 +#: mod/newmember.php:14 msgid "Getting Started" msgstr "Empezando" -#: ../../mod/newmember.php:18 +#: mod/newmember.php:18 msgid "Friendica Walk-Through" msgstr "Visita guiada a Friendica" -#: ../../mod/newmember.php:18 +#: 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 "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." -#: ../../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 +#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 +#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 msgid "Settings" msgstr "Configuración" -#: ../../mod/newmember.php:26 +#: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Ir a tus ajustes" -#: ../../mod/newmember.php:26 +#: 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 página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." -#: ../../mod/newmember.php:28 +#: 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 " @@ -616,99 +602,97 @@ msgid "" "potential friends know exactly how to find you." msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 msgid "Upload Profile Photo" msgstr "Subir foto del Perfil" -#: ../../mod/newmember.php:36 +#: 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 "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." -#: ../../mod/newmember.php:38 +#: mod/newmember.php:38 msgid "Edit Your Profile" msgstr "Editar tu perfil" -#: ../../mod/newmember.php:38 +#: 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 tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." -#: ../../mod/newmember.php:40 +#: mod/newmember.php:40 msgid "Profile Keywords" msgstr "Palabras clave del perfil" -#: ../../mod/newmember.php:40 +#: 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 "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos." -#: ../../mod/newmember.php:44 +#: mod/newmember.php:44 msgid "Connecting" msgstr "Conectando" -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 msgid "Facebook" msgstr "Facebook" -#: ../../mod/newmember.php:49 +#: 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 la conexión con Facebook si ya tienes una cuenta en Facebook y nosotros (opcionalmente) importaremos tus amistades y conversaciones desde Facebook." -#: ../../mod/newmember.php:51 +#: 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 este es tu propio servidor privado, instalar el conector de Facebook puede facilitar el paso hacia la red social libre." -#: ../../mod/newmember.php:56 +#: mod/newmember.php:56 msgid "Importing Emails" msgstr "Importando correos electrónicos" -#: ../../mod/newmember.php:56 +#: 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 la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." -#: ../../mod/newmember.php:58 +#: mod/newmember.php:58 msgid "Go to Your Contacts Page" msgstr "Ir a tu página de contactos" -#: ../../mod/newmember.php:58 +#: 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 "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." -#: ../../mod/newmember.php:60 +#: mod/newmember.php:60 msgid "Go to Your Site's Directory" msgstr "Ir al directorio de tu sitio" -#: ../../mod/newmember.php:60 +#: 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 "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." -#: ../../mod/newmember.php:62 +#: mod/newmember.php:62 msgid "Finding New People" msgstr "Encontrando nueva gente" -#: ../../mod/newmember.php:62 +#: 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 " @@ -717,456 +701,493 @@ msgid "" "hours." msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." -#: ../../mod/newmember.php:66 ../../include/group.php:270 +#: mod/newmember.php:66 include/group.php:270 msgid "Groups" msgstr "Grupos" -#: ../../mod/newmember.php:70 +#: mod/newmember.php:70 msgid "Group Your Contacts" msgstr "Agrupa tus contactos" -#: ../../mod/newmember.php:70 +#: 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 vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." -#: ../../mod/newmember.php:73 +#: mod/newmember.php:73 msgid "Why Aren't My Posts Public?" msgstr "¿Por qué mis publicaciones no son públicas?" -#: ../../mod/newmember.php:73 +#: 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 respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." -#: ../../mod/newmember.php:78 +#: mod/newmember.php:78 msgid "Getting Help" msgstr "Consiguiendo ayuda" -#: ../../mod/newmember.php:82 +#: mod/newmember.php:82 msgid "Go to the Help Section" msgstr "Ir a la sección de ayuda" -#: ../../mod/newmember.php:82 +#: mod/newmember.php:82 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." -#: ../../mod/openid.php:24 +#: mod/openid.php:24 msgid "OpenID protocol error. No ID returned." msgstr "Error de protocolo OpenID. ID no devuelta." -#: ../../mod/openid.php:53 +#: mod/openid.php:53 msgid "" "Account not found and OpenID registration is not permitted on this site." msgstr "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio." -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 msgid "Login failed." msgstr "Accesso fallido." -#: ../../mod/profile_photo.php:44 +#: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Imagen recibida, pero ha fallado al recortarla." -#: ../../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 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 +#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Foto del perfil" -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: 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 "Ha fallado la reducción de las dimensiones de la imagen [%s]." -#: ../../mod/profile_photo.php:118 +#: mod/profile_photo.php:118 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." -#: ../../mod/profile_photo.php:128 +#: mod/profile_photo.php:128 msgid "Unable to process image" msgstr "Imposible procesar la imagen" -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "El tamaño de la imagen supera el límite de %d" +msgid "Image exceeds size limit of %s" +msgstr "La imagen excede el limite de %s" -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 +#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 msgid "Unable to process image." msgstr "Imposible procesar la imagen." -#: ../../mod/profile_photo.php:242 +#: mod/profile_photo.php:242 msgid "Upload File:" msgstr "Subir archivo:" -#: ../../mod/profile_photo.php:243 +#: mod/profile_photo.php:243 msgid "Select a profile:" msgstr "Elige un perfil:" -#: ../../mod/profile_photo.php:245 +#: mod/profile_photo.php:245 msgid "Upload" msgstr "Subir" -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 +#: mod/profile_photo.php:248 msgid "or" msgstr "o" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 msgid "skip this step" msgstr "saltar este paso" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "elige una foto de tus álbumes" -#: ../../mod/profile_photo.php:262 +#: mod/profile_photo.php:262 msgid "Crop Image" msgstr "Recortar imagen" -#: ../../mod/profile_photo.php:263 +#: mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." -#: ../../mod/profile_photo.php:265 +#: mod/profile_photo.php:265 msgid "Done Editing" msgstr "Editado" -#: ../../mod/profile_photo.php:299 +#: mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Imagen subida con éxito." -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 msgid "Image upload failed." msgstr "Error al subir la imagen." -#: ../../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 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2034 include/diaspora.php:2127 +#: view/theme/diabook/theme.php:471 msgid "photo" msgstr "foto" -#: ../../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 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 msgid "status" msgstr "estado" -#: ../../mod/subthread.php:103 +#: mod/subthread.php:103 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "%1$s está siguiendo las %3$s de %2$s" -#: ../../mod/tagrm.php:41 +#: mod/tagrm.php:41 msgid "Tag removed" msgstr "Etiqueta eliminada" -#: ../../mod/tagrm.php:79 +#: mod/tagrm.php:79 msgid "Remove Item Tag" msgstr "Eliminar etiqueta" -#: ../../mod/tagrm.php:81 +#: mod/tagrm.php:81 msgid "Select a tag to remove: " msgstr "Selecciona una etiqueta para eliminar: " -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +#: mod/tagrm.php:93 mod/delegate.php:139 msgid "Remove" msgstr "Eliminar" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 msgid "Save to Folder:" msgstr "Guardar en directorio:" -#: ../../mod/filer.php:30 +#: mod/filer.php:30 msgid "- select -" msgstr "- seleccionar -" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 msgid "Save" msgstr "Guardar" -#: ../../mod/follow.php:27 +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Ya has añadido este contacto." + +#: mod/follow.php:58 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "Por favor responde lo siguiente:" + +#: mod/follow.php:59 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "¿%s te conoce?" + +#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 +#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 +#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 +#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "No" + +#: mod/follow.php:60 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "Añade una nota personal:" + +#: mod/follow.php:66 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "Dirección de tu perfil:" + +#: mod/follow.php:69 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "Enviar solicitud" + +#: mod/follow.php:108 msgid "Contact added" msgstr "Contacto añadido" -#: ../../mod/item.php:113 +#: mod/item.php:115 msgid "Unable to locate original post." msgstr "No se puede encontrar la publicación original." -#: ../../mod/item.php:345 +#: mod/item.php:347 msgid "Empty post discarded." msgstr "Publicación vacía descartada." -#: ../../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 +#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 +#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 msgid "Wall Photos" msgstr "Foto del Muro" -#: ../../mod/item.php:938 +#: mod/item.php:860 msgid "System error. Post not saved." msgstr "Error del sistema. Mensaje no guardado." -#: ../../mod/item.php:964 +#: mod/item.php:989 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." -#: ../../mod/item.php:966 +#: mod/item.php:991 #, php-format msgid "You may visit them online at %s" msgstr "Los puedes visitar en línea en %s" -#: ../../mod/item.php:967 +#: mod/item.php:992 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." -#: ../../mod/item.php:971 +#: mod/item.php:996 #, php-format msgid "%s posted an update." msgstr "%s ha publicado una actualización." -#: ../../mod/group.php:29 +#: mod/group.php:29 msgid "Group created." msgstr "Grupo creado." -#: ../../mod/group.php:35 +#: mod/group.php:35 msgid "Could not create group." msgstr "Imposible crear el grupo." -#: ../../mod/group.php:47 ../../mod/group.php:140 +#: mod/group.php:47 mod/group.php:140 msgid "Group not found." msgstr "Grupo no encontrado." -#: ../../mod/group.php:60 +#: mod/group.php:60 msgid "Group name changed." msgstr "El nombre del grupo ha cambiado." -#: ../../mod/group.php:87 +#: mod/group.php:87 msgid "Save Group" -msgstr "" +msgstr "Guardar grupo" -#: ../../mod/group.php:93 +#: mod/group.php:93 msgid "Create a group of contacts/friends." msgstr "Crea un grupo de contactos/amigos." -#: ../../mod/group.php:94 ../../mod/group.php:180 +#: mod/group.php:94 mod/group.php:178 include/group.php:273 msgid "Group Name: " msgstr "Nombre del grupo: " -#: ../../mod/group.php:113 +#: mod/group.php:113 msgid "Group removed." msgstr "Grupo eliminado." -#: ../../mod/group.php:115 +#: mod/group.php:115 msgid "Unable to remove group." msgstr "No se puede eliminar el grupo." -#: ../../mod/group.php:179 +#: mod/group.php:177 msgid "Group Editor" msgstr "Editor de grupos" -#: ../../mod/group.php:192 +#: mod/group.php:190 msgid "Members" msgstr "Miembros" -#: ../../mod/apps.php:7 ../../index.php:212 +#: mod/apps.php:7 index.php:225 msgid "You must be logged in to use addons. " -msgstr "" +msgstr "Tienes que estar registrado para tener acceso a los accesorios." -#: ../../mod/apps.php:11 +#: mod/apps.php:11 msgid "Applications" msgstr "Aplicaciones" -#: ../../mod/apps.php:14 +#: mod/apps.php:14 msgid "No installed applications." msgstr "Sin aplicaciones" -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 msgid "Profile not found." msgstr "Perfil no encontrado." -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 msgid "Contact not found." msgstr "Contacto no encontrado." -#: ../../mod/dfrn_confirm.php:121 +#: mod/dfrn_confirm.php:121 msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." msgstr "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada." -#: ../../mod/dfrn_confirm.php:240 +#: mod/dfrn_confirm.php:240 msgid "Response from remote site was not understood." msgstr "La respuesta desde el sitio remoto no ha sido entendida." -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Respuesta inesperada desde el sitio remoto: " -#: ../../mod/dfrn_confirm.php:263 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Confirmación completada con éxito." -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 msgid "Remote site reported: " msgstr "El sito remoto informó: " -#: ../../mod/dfrn_confirm.php:277 +#: mod/dfrn_confirm.php:277 msgid "Temporary failure. Please wait and try again." msgstr "Error temporal. Por favor, espere y vuelva a intentarlo." -#: ../../mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:284 msgid "Introduction failed or was revoked." msgstr "La presentación ha fallado o ha sido anulada." -#: ../../mod/dfrn_confirm.php:429 +#: mod/dfrn_confirm.php:430 msgid "Unable to set contact photo." msgstr "Imposible establecer la foto del contacto." -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:634 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s ahora es amigo de %2$s" -#: ../../mod/dfrn_confirm.php:571 +#: mod/dfrn_confirm.php:572 #, php-format msgid "No user record found for '%s' " msgstr "No se ha encontrado a ningún '%s' " -#: ../../mod/dfrn_confirm.php:581 +#: mod/dfrn_confirm.php:582 msgid "Our site encryption key is apparently messed up." msgstr "Nuestra clave de cifrado del sitio es aparentemente un lío." -#: ../../mod/dfrn_confirm.php:592 +#: mod/dfrn_confirm.php:593 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Se ha proporcionado una dirección vacía o no hemos podido descifrarla." -#: ../../mod/dfrn_confirm.php:613 +#: mod/dfrn_confirm.php:614 msgid "Contact record was not found for you on our site." msgstr "El contacto no se ha encontrado en nuestra base de datos." -#: ../../mod/dfrn_confirm.php:627 +#: mod/dfrn_confirm.php:628 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "La clave pública del sitio no está disponible en los datos del contacto para %s." -#: ../../mod/dfrn_confirm.php:647 +#: mod/dfrn_confirm.php:648 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo." -#: ../../mod/dfrn_confirm.php:658 +#: mod/dfrn_confirm.php:659 msgid "Unable to set your contact credentials on our system." msgstr "No se puede establecer las credenciales de tu contacto en nuestro sistema." -#: ../../mod/dfrn_confirm.php:725 +#: mod/dfrn_confirm.php:726 msgid "Unable to update your contact profile details on our system" msgstr "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 msgid "[Name Withheld]" msgstr "[Nombre oculto]" -#: ../../mod/dfrn_confirm.php:797 +#: mod/dfrn_confirm.php:798 #, php-format msgid "%1$s has joined %2$s" msgstr "%1$s se ha unido a %2$s" -#: ../../mod/profile.php:21 ../../boot.php:1458 +#: mod/profile.php:21 include/identity.php:77 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." -#: ../../mod/profile.php:180 +#: mod/profile.php:179 msgid "Tips for New Members" msgstr "Consejos para nuevos miembros" -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "" +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Realmente quieres eliminar este vídeo?" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Borrar vídeo" + +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Ningún vídeo seleccionado" + +#: mod/videos.php:298 mod/photos.php:1053 msgid "Access to this item is restricted." msgstr "El acceso a este elemento está restringido." -#: ../../mod/videos.php:301 ../../include/text.php:1405 +#: mod/videos.php:373 include/text.php:1460 msgid "View Video" -msgstr "" +msgstr "Ver vídeo" -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +#: mod/videos.php:380 mod/photos.php:1827 msgid "View Album" msgstr "Ver Álbum" -#: ../../mod/videos.php:317 +#: mod/videos.php:389 msgid "Recent Videos" -msgstr "" +msgstr "Vídeos recientes" -#: ../../mod/videos.php:319 +#: mod/videos.php:391 msgid "Upload New Videos" -msgstr "" +msgstr "Subir nuevos vídeos" -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#: mod/tagger.php:95 include/conversation.php:265 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s" -#: ../../mod/fsuggest.php:63 +#: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "Solicitud de amistad enviada." -#: ../../mod/fsuggest.php:97 +#: mod/fsuggest.php:97 msgid "Suggest Friends" msgstr "Sugerencias de amistad" -#: ../../mod/fsuggest.php:99 +#: mod/fsuggest.php:99 #, php-format msgid "Suggest a friend for %s" msgstr "Recomienda un amigo a %s" -#: ../../mod/lostpass.php:19 +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Consulta invalida" + +#: mod/lostpass.php:19 msgid "No valid account found." msgstr "No se ha encontrado ninguna cuenta válida" -#: ../../mod/lostpass.php:35 +#: mod/lostpass.php:35 msgid "Password reset request issued. Check your email." msgstr "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo." -#: ../../mod/lostpass.php:42 +#: mod/lostpass.php:42 #, php-format msgid "" "\n" @@ -1180,9 +1201,9 @@ msgid "" "\n" "\t\tYour password will not be changed unless we can verify that you\n" "\t\tissued this request." -msgstr "" +msgstr "\n\t\tEstimado %1$s,\n\t\t\tUna consulta llego recientemente a \"%2$s\" para renovar su\n\t\tcontraseña. Para confirmar esta solicitud por favor seleccione el enlace de verificación mas \n\t\tabajo o copie a pegue el mismo en la barra de dirección de su navegador.\n\n\t\tSi NO ha solicitado este cambio por favor NO SIGA este enlace\n\t\tproporcionado y ignore o borre este mail.\n\n\t\tSu contraseña no sera cambiada hasta que podamos verificar que usted haza\n\t\tsolicitado este cambio.." -#: ../../mod/lostpass.php:53 +#: mod/lostpass.php:53 #, php-format msgid "" "\n" @@ -1197,46 +1218,46 @@ msgid "" "\n" "\t\tSite Location:\t%2$s\n" "\t\tLogin Name:\t%3$s" -msgstr "" +msgstr "\n\t\tSiga este enlace para verificar su identidad:\n\n\t\t%1$s\n\n\t\tA continuación recibirá un mensaje consecutivo conteniendo la nueva contraseña.\n\t\tPodrá cambiar la contraseña después de haber accedido a la cuenta.\n\n\t\tLos detalles del acceso son las siguientes:\n\n\t\tDirección del sitio:\t%2$s\n\t\tNombre de la cuenta:\t%3$s" -#: ../../mod/lostpass.php:72 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Contraseña restablecida enviada a %s" -#: ../../mod/lostpass.php:92 +#: mod/lostpass.php:92 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." -#: ../../mod/lostpass.php:109 ../../boot.php:1280 +#: mod/lostpass.php:109 boot.php:1287 msgid "Password Reset" msgstr "Restablecer la contraseña" -#: ../../mod/lostpass.php:110 +#: mod/lostpass.php:110 msgid "Your password has been reset as requested." msgstr "Tu contraseña ha sido restablecida como solicitaste." -#: ../../mod/lostpass.php:111 +#: mod/lostpass.php:111 msgid "Your new password is" msgstr "Tu nueva contraseña es" -#: ../../mod/lostpass.php:112 +#: mod/lostpass.php:112 msgid "Save or copy your new password - and then" msgstr "Guarda o copia tu nueva contraseña y luego" -#: ../../mod/lostpass.php:113 +#: mod/lostpass.php:113 msgid "click here to login" msgstr "pulsa aquí para acceder" -#: ../../mod/lostpass.php:114 +#: mod/lostpass.php:114 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." -#: ../../mod/lostpass.php:125 +#: mod/lostpass.php:125 #, php-format msgid "" "\n" @@ -1245,9 +1266,9 @@ msgid "" "\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 "" +msgstr "\n\t\t\t\tEstimado %1$s,\n\t\t\t\t\tSu contraseña ha cambiado como solicitado. Por favor guarde esta\n\t\t\t\tinformación para sus documentación (o cambie su contraseña inmediatamente a\n\t\t\t\talgo que pueda recordar).\n\t\t" -#: ../../mod/lostpass.php:131 +#: mod/lostpass.php:131 #, php-format msgid "" "\n" @@ -1259,1384 +1280,1566 @@ msgid "" "\n" "\t\t\t\tYou may change that password from your account settings page after logging in.\n" "\t\t\t" -msgstr "" +msgstr "\n\t\t\t\tSus datos de acceso son las siguientes:\n\n\t\t\t\tDirección del sitio:\t%1$s\n\t\t\t\tNombre de cuenta:\t%2$s\n\t\t\t\tContraseña:\t%3$s\n\n\t\t\t\tPodrá cambiar esta contraseña después de ingresar al sitio en su pagina de configuración.\n\t\t\t" -#: ../../mod/lostpass.php:147 +#: mod/lostpass.php:147 #, php-format msgid "Your password has been changed at %s" msgstr "Tu contraseña se ha cambiado por %s" -#: ../../mod/lostpass.php:159 +#: mod/lostpass.php:159 msgid "Forgot your Password?" msgstr "¿Olvidaste tu contraseña?" -#: ../../mod/lostpass.php:160 +#: 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 tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." -#: ../../mod/lostpass.php:161 +#: mod/lostpass.php:161 msgid "Nickname or Email: " msgstr "Apodo o Correo electrónico: " -#: ../../mod/lostpass.php:162 +#: mod/lostpass.php:162 msgid "Reset" msgstr "Restablecer" -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../mod/like.php:168 ../../include/conversation.php:140 +#: mod/like.php:168 include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" -#: ../../mod/ping.php:240 +#: mod/ping.php:233 msgid "{0} wants to be your friend" msgstr "{0} quiere ser tu amigo" -#: ../../mod/ping.php:245 +#: mod/ping.php:248 msgid "{0} sent you a message" msgstr "{0} te ha enviado un mensaje" -#: ../../mod/ping.php:250 +#: mod/ping.php:263 msgid "{0} requested registration" msgstr "{0} solicitudes de registro" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} comentó la publicación de %s" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "A {0} le ha gustado la publicación de %s" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "A {0} no le ha gustado la publicación de %s" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ahora es amigo de %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} publicado" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} etiquetó la publicación de %s como #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} te mencionó en una publicación" - -#: ../../mod/viewcontacts.php:41 +#: mod/viewcontacts.php:41 msgid "No contacts." msgstr "Ningún contacto." -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 +#: mod/viewcontacts.php:78 include/text.php:917 msgid "View Contacts" msgstr "Ver contactos" -#: ../../mod/notifications.php:26 +#: mod/notifications.php:26 msgid "Invalid request identifier." msgstr "Solicitud de identificación no válida." -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 msgid "Discard" msgstr "Descartar" -#: ../../mod/notifications.php:78 +#: mod/notifications.php:78 msgid "System" msgstr "Sistema" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 msgid "Network" msgstr "Red" -#: ../../mod/notifications.php:88 ../../mod/network.php:371 +#: mod/notifications.php:90 mod/network.php:375 msgid "Personal" msgstr "Personal" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 +#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: view/theme/diabook/theme.php:123 msgid "Home" msgstr "Inicio" -#: ../../mod/notifications.php:98 ../../include/nav.php:154 +#: mod/notifications.php:102 include/nav.php:161 msgid "Introductions" msgstr "Presentaciones" -#: ../../mod/notifications.php:122 +#: mod/notifications.php:127 msgid "Show Ignored Requests" msgstr "Mostrar peticiones ignoradas" -#: ../../mod/notifications.php:122 +#: mod/notifications.php:127 msgid "Hide Ignored Requests" msgstr "Ocultar peticiones ignoradas" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +#: mod/notifications.php:159 mod/notifications.php:209 msgid "Notification type: " msgstr "Tipo de notificación: " -#: ../../mod/notifications.php:150 +#: mod/notifications.php:160 msgid "Friend Suggestion" msgstr "Propuestas de amistad" -#: ../../mod/notifications.php:152 +#: mod/notifications.php:162 #, php-format msgid "suggested by %s" msgstr "sugerido por %s" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: mod/notifications.php:168 mod/notifications.php:228 msgid "Post a new friend activity" msgstr "Publica tu nueva amistad" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: mod/notifications.php:168 mod/notifications.php:228 msgid "if applicable" msgstr "Si corresponde" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:1005 +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 msgid "Approve" msgstr "Aprobar" -#: ../../mod/notifications.php:181 +#: mod/notifications.php:191 msgid "Claims to be known to you: " msgstr "Dice conocerte: " -#: ../../mod/notifications.php:181 +#: mod/notifications.php:191 msgid "yes" msgstr "sí" -#: ../../mod/notifications.php:181 +#: mod/notifications.php:191 msgid "no" msgstr "no" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Aprobar como: " +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Admirador\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:" -#: ../../mod/notifications.php:189 +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Sharer\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:" + +#: mod/notifications.php:203 msgid "Friend" msgstr "Amigo" -#: ../../mod/notifications.php:190 +#: mod/notifications.php:204 msgid "Sharer" msgstr "Lector" -#: ../../mod/notifications.php:190 +#: mod/notifications.php:204 msgid "Fan/Admirer" msgstr "Fan/Admirador" -#: ../../mod/notifications.php:196 +#: mod/notifications.php:210 msgid "Friend/Connect Request" msgstr "Solicitud de Amistad/Conexión" -#: ../../mod/notifications.php:196 +#: mod/notifications.php:210 msgid "New Follower" msgstr "Nuevo seguidor" -#: ../../mod/notifications.php:217 +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "Localización:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:581 +msgid "About:" +msgstr "Acerca de:" + +#: mod/notifications.php:224 include/identity.php:575 +msgid "Tags:" +msgstr "Etiquetas:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:540 +msgid "Gender:" +msgstr "Género:" + +#: mod/notifications.php:240 msgid "No introductions." msgstr "Sin presentaciones." -#: ../../mod/notifications.php:220 ../../include/nav.php:155 +#: mod/notifications.php:243 include/nav.php:164 msgid "Notifications" msgstr "Notificaciones" -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 #, php-format msgid "%s liked %s's post" msgstr "A %s le gusta la publicación de %s" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 #, php-format msgid "%s disliked %s's post" msgstr "A %s no le gusta la publicación de %s" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 #, php-format msgid "%s is now friends with %s" msgstr "%s es ahora es amigo de %s" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: mod/notifications.php:313 mod/notifications.php:442 #, php-format msgid "%s created a new post" msgstr "%s creó una nueva publicación" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 #, php-format msgid "%s commented on %s's post" msgstr "%s comentó la publicación de %s" -#: ../../mod/notifications.php:306 +#: mod/notifications.php:329 msgid "No more network notifications." msgstr "No hay más notificaciones de red." -#: ../../mod/notifications.php:310 +#: mod/notifications.php:333 msgid "Network Notifications" msgstr "Notificaciones de Red" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +#: mod/notifications.php:359 mod/notify.php:72 msgid "No more system notifications." msgstr "No hay más notificaciones del sistema." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +#: mod/notifications.php:363 mod/notify.php:76 msgid "System Notifications" msgstr "Notificaciones del sistema" -#: ../../mod/notifications.php:435 +#: mod/notifications.php:458 msgid "No more personal notifications." msgstr "No hay más notificaciones personales." -#: ../../mod/notifications.php:439 +#: mod/notifications.php:462 msgid "Personal Notifications" msgstr "Notificaciones personales" -#: ../../mod/notifications.php:520 +#: mod/notifications.php:543 msgid "No more home notifications." msgstr "No hay más notificaciones de inicio." -#: ../../mod/notifications.php:524 +#: mod/notifications.php:547 msgid "Home Notifications" msgstr "Notificaciones de Inicio" -#: ../../mod/babel.php:17 +#: mod/babel.php:17 msgid "Source (bbcode) text:" msgstr "Texto fuente (bbcode):" -#: ../../mod/babel.php:23 +#: mod/babel.php:23 msgid "Source (Diaspora) text to convert to BBcode:" msgstr "Fuente (Diaspora) para pasar a BBcode:" -#: ../../mod/babel.php:31 +#: mod/babel.php:31 msgid "Source input: " msgstr "Entrada: " -#: ../../mod/babel.php:35 +#: mod/babel.php:35 msgid "bb2html (raw HTML): " msgstr "bb2html (raw HTML): " -#: ../../mod/babel.php:39 +#: mod/babel.php:39 msgid "bb2html: " msgstr "bb2html: " -#: ../../mod/babel.php:43 +#: mod/babel.php:43 msgid "bb2html2bb: " msgstr "bb2html2bb: " -#: ../../mod/babel.php:47 +#: mod/babel.php:47 msgid "bb2md: " msgstr "bb2md: " -#: ../../mod/babel.php:51 +#: mod/babel.php:51 msgid "bb2md2html: " msgstr "bb2md2html: " -#: ../../mod/babel.php:55 +#: mod/babel.php:55 msgid "bb2dia2bb: " msgstr "bb2dia2bb: " -#: ../../mod/babel.php:59 +#: mod/babel.php:59 msgid "bb2md2html2bb: " msgstr "bb2md2html2bb: " -#: ../../mod/babel.php:69 +#: mod/babel.php:69 msgid "Source input (Diaspora format): " msgstr "Fuente (formato Diaspora): " -#: ../../mod/babel.php:74 +#: mod/babel.php:74 msgid "diaspora2bb: " msgstr "diaspora2bb: " -#: ../../mod/navigation.php:20 ../../include/nav.php:34 +#: mod/navigation.php:20 include/nav.php:34 msgid "Nothing new here" msgstr "Nada nuevo por aquí" -#: ../../mod/navigation.php:24 ../../include/nav.php:38 +#: mod/navigation.php:24 include/nav.php:38 msgid "Clear notifications" msgstr "Limpiar notificaciones" -#: ../../mod/message.php:9 ../../include/nav.php:164 +#: mod/message.php:9 include/nav.php:173 msgid "New Message" msgstr "Nuevo mensaje" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +#: mod/message.php:64 mod/wallmessage.php:56 msgid "No recipient selected." msgstr "Ningún destinatario seleccionado" -#: ../../mod/message.php:67 +#: mod/message.php:68 msgid "Unable to locate contact information." msgstr "No se puede encontrar información del contacto." -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +#: mod/message.php:71 mod/wallmessage.php:62 msgid "Message could not be sent." msgstr "El mensaje no ha podido ser enviado." -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +#: mod/message.php:74 mod/wallmessage.php:65 msgid "Message collection failure." msgstr "Fallo en la recolección de mensajes." -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +#: mod/message.php:77 mod/wallmessage.php:68 msgid "Message sent." msgstr "Mensaje enviado." -#: ../../mod/message.php:182 ../../include/nav.php:161 +#: mod/message.php:183 include/nav.php:170 msgid "Messages" msgstr "Mensajes" -#: ../../mod/message.php:207 +#: mod/message.php:208 msgid "Do you really want to delete this message?" msgstr "¿Estás seguro de que quieres borrar este mensaje?" -#: ../../mod/message.php:227 +#: mod/message.php:228 msgid "Message deleted." msgstr "Mensaje eliminado." -#: ../../mod/message.php:258 +#: mod/message.php:259 msgid "Conversation removed." msgstr "Conversación eliminada." -#: ../../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 +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 msgid "Please enter a link URL:" msgstr "Introduce la dirección del enlace:" -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +#: mod/message.php:320 mod/wallmessage.php:142 msgid "Send Private Message" msgstr "Enviar mensaje privado" -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 msgid "To:" msgstr "Para:" -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 msgid "Subject:" msgstr "Asunto:" -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 msgid "Your message:" msgstr "Tu mensaje:" -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1056 msgid "Upload photo" msgstr "Subir foto" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1060 msgid "Insert web link" msgstr "Insertar enlace" -#: ../../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 +#: mod/message.php:335 mod/message.php:566 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 +#: include/conversation.php:1074 msgid "Please wait" msgstr "Por favor, espera" -#: ../../mod/message.php:371 +#: mod/message.php:372 msgid "No messages." msgstr "No hay mensajes." -#: ../../mod/message.php:378 +#: mod/message.php:379 #, php-format msgid "Unknown sender - %s" msgstr "Remitente desconocido - %s" -#: ../../mod/message.php:381 +#: mod/message.php:382 #, php-format msgid "You and %s" msgstr "Tú y %s" -#: ../../mod/message.php:384 +#: mod/message.php:385 #, php-format msgid "%s and You" msgstr "%s y Tú" -#: ../../mod/message.php:405 ../../mod/message.php:546 +#: mod/message.php:406 mod/message.php:547 msgid "Delete conversation" msgstr "Eliminar conversación" -#: ../../mod/message.php:408 +#: mod/message.php:409 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: ../../mod/message.php:411 +#: mod/message.php:412 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d mensaje" msgstr[1] "%d mensajes" -#: ../../mod/message.php:450 +#: mod/message.php:451 msgid "Message not available." msgstr "Mensaje no disponibile." -#: ../../mod/message.php:520 +#: mod/message.php:521 msgid "Delete message" msgstr "Borrar mensaje" -#: ../../mod/message.php:548 +#: mod/message.php:549 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " -#: ../../mod/message.php:552 +#: mod/message.php:553 msgid "Send Reply" msgstr "Enviar respuesta" -#: ../../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 +#: 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 "[Contenido incrustado - recarga la página para verlo]" -#: ../../mod/crepair.php:106 +#: mod/crepair.php:107 msgid "Contact settings applied." msgstr "Contacto configurado con éxito." -#: ../../mod/crepair.php:108 +#: mod/crepair.php:109 msgid "Contact update failed." msgstr "Error al actualizar el Contacto." -#: ../../mod/crepair.php:139 +#: mod/crepair.php:140 msgid "Repair Contact Settings" msgstr "Reparar la configuración del Contacto" -#: ../../mod/crepair.php:141 +#: mod/crepair.php:142 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar." -#: ../../mod/crepair.php:142 +#: mod/crepair.php:143 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página." -#: ../../mod/crepair.php:148 +#: mod/crepair.php:149 msgid "Return to contact editor" msgstr "Volver al editor de contactos" -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +#: mod/crepair.php:160 mod/crepair.php:162 msgid "No mirroring" -msgstr "" +msgstr "No espejar" -#: ../../mod/crepair.php:159 +#: mod/crepair.php:160 msgid "Mirror as forwarded posting" -msgstr "" +msgstr "Espejar como reenvio" -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +#: mod/crepair.php:160 mod/crepair.php:162 msgid "Mirror as my own posting" -msgstr "" +msgstr "Espejar como publicación propia" -#: ../../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 +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Volver a solicitar datos del contacto." + +#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 +#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 +#: mod/settings.php:660 msgid "Name" msgstr "Nombre" -#: ../../mod/crepair.php:166 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Apodo de la cuenta" -#: ../../mod/crepair.php:167 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "@Etiqueta - Sobrescribe el Nombre/Apodo" -#: ../../mod/crepair.php:168 +#: mod/crepair.php:173 msgid "Account URL" msgstr "Dirección de la cuenta" -#: ../../mod/crepair.php:169 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "Dirección de la solicitud de amistad" -#: ../../mod/crepair.php:170 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "Dirección de confirmación de tu amigo " -#: ../../mod/crepair.php:171 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "Dirección URL de la notificación" -#: ../../mod/crepair.php:172 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Dirección del Sondeo/Fuentes" -#: ../../mod/crepair.php:173 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "Nueva foto de esta dirección" -#: ../../mod/crepair.php:174 +#: mod/crepair.php:179 msgid "Remote Self" -msgstr "" +msgstr "Perfil remoto" -#: ../../mod/crepair.php:176 +#: mod/crepair.php:181 msgid "Mirror postings from this contact" -msgstr "" +msgstr "Espejar publicaciones de este contacto" -#: ../../mod/crepair.php:176 +#: mod/crepair.php:181 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." -msgstr "" +msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta." -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 msgid "Login" msgstr "Acceder" -#: ../../mod/bookmarklet.php:41 +#: mod/bookmarklet.php:41 msgid "The post was created" -msgstr "" +msgstr "La publicación fue creada" -#: ../../mod/viewsrc.php:7 +#: mod/viewsrc.php:7 msgid "Access denied." msgstr "Acceso denegado." -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Buscar personas" +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Buscar perfiles - %s" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Conectar" + +#: mod/dirfind.php:139 mod/match.php:73 msgid "No matches" msgstr "Sin conincidencias" -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 +#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Fotografías" -#: ../../mod/fbrowser.php:113 +#: mod/fbrowser.php:122 msgid "Files" msgstr "Archivos" -#: ../../mod/nogroup.php:59 +#: mod/nogroup.php:59 msgid "Contacts who are not members of a group" msgstr "Contactos sin grupo" -#: ../../mod/admin.php:57 +#: mod/admin.php:57 msgid "Theme settings updated." msgstr "Configuración de la apariencia actualizada." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: mod/admin.php:104 mod/admin.php:682 msgid "Site" msgstr "Sitio" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 msgid "Users" msgstr "Usuarios" -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 +#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 msgid "Plugins" msgstr "Módulos" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 msgid "Themes" msgstr "Temas" -#: ../../mod/admin.php:108 +#: mod/admin.php:108 msgid "DB updates" msgstr "Actualizaciones de la Base de Datos" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Inspeccionar cola" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 msgid "Logs" msgstr "Registros" -#: ../../mod/admin.php:124 +#: mod/admin.php:125 msgid "probe address" -msgstr "" +msgstr "probar direccion" -#: ../../mod/admin.php:125 +#: mod/admin.php:126 msgid "check webfinger" -msgstr "" +msgstr "Verificar webfinger" -#: ../../mod/admin.php:130 ../../include/nav.php:184 +#: mod/admin.php:131 include/nav.php:193 msgid "Admin" msgstr "Admin" -#: ../../mod/admin.php:131 +#: mod/admin.php:132 msgid "Plugin Features" msgstr "Características del módulo" -#: ../../mod/admin.php:133 +#: mod/admin.php:134 msgid "diagnostics" -msgstr "" +msgstr "diagnosticos" -#: ../../mod/admin.php:134 +#: mod/admin.php:135 msgid "User registrations waiting for confirmation" msgstr "Registro de usuarios esperando la confirmación" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Cuenta normal" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Cuenta tribuna" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Cuenta de Comunidad/Celebridad" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Cuenta de amistad automática" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Cuenta de blog" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Foro privado" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Cola de mensajes" - -#: ../../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 +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 +#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 +#: mod/admin.php:1524 msgid "Administration" msgstr "Administración" -#: ../../mod/admin.php:223 +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Nombre del recipiente" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Perfil del recipiente" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Creado" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Ultimo intento" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. " + +#: mod/admin.php:220 mod/admin.php:1025 +msgid "Normal Account" +msgstr "Cuenta normal" + +#: mod/admin.php:221 mod/admin.php:1026 +msgid "Soapbox Account" +msgstr "Cuenta tribuna" + +#: mod/admin.php:222 mod/admin.php:1027 +msgid "Community/Celebrity Account" +msgstr "Cuenta de Comunidad/Celebridad" + +#: mod/admin.php:223 mod/admin.php:1028 +msgid "Automatic Friend Account" +msgstr "Cuenta de amistad automática" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Cuenta de blog" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Foro privado" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Cola de mensajes" + +#: mod/admin.php:250 msgid "Summary" msgstr "Resumen" -#: ../../mod/admin.php:225 +#: mod/admin.php:252 msgid "Registered users" msgstr "Usuarios registrados" -#: ../../mod/admin.php:227 +#: mod/admin.php:254 msgid "Pending registrations" msgstr "Pendientes de registro" -#: ../../mod/admin.php:228 +#: mod/admin.php:255 msgid "Version" msgstr "Versión" -#: ../../mod/admin.php:232 +#: mod/admin.php:260 msgid "Active plugins" msgstr "Módulos activos" -#: ../../mod/admin.php:255 +#: mod/admin.php:283 msgid "Can not parse base url. Must have at least ://" -msgstr "" +msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos ://" -#: ../../mod/admin.php:516 +#: mod/admin.php:565 msgid "Site settings updated." msgstr "Configuración de actualización." -#: ../../mod/admin.php:545 ../../mod/settings.php:828 +#: mod/admin.php:594 mod/settings.php:883 msgid "No special theme for mobile devices" msgstr "No hay tema especial para dispositivos móviles" -#: ../../mod/admin.php:562 +#: mod/admin.php:611 msgid "No community page" -msgstr "" +msgstr "No hay pagina de comunidad" -#: ../../mod/admin.php:563 +#: mod/admin.php:612 msgid "Public postings from users of this site" -msgstr "" +msgstr "Temas públicos de perfiles de este sitio." -#: ../../mod/admin.php:564 +#: mod/admin.php:613 msgid "Global community page" -msgstr "" +msgstr "Pagina global de comunidad" -#: ../../mod/admin.php:570 +#: mod/admin.php:619 msgid "At post arrival" -msgstr "" +msgstr "A la llegada de una publicación" -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 +#: mod/admin.php:620 include/contact_selectors.php:56 msgid "Frequently" msgstr "Frequentemente" -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 +#: mod/admin.php:621 include/contact_selectors.php:57 msgid "Hourly" msgstr "Cada hora" -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 +#: mod/admin.php:622 include/contact_selectors.php:58 msgid "Twice daily" msgstr "Dos veces al día" -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 +#: mod/admin.php:623 include/contact_selectors.php:59 msgid "Daily" msgstr "Diariamente" -#: ../../mod/admin.php:579 +#: mod/admin.php:629 +msgid "Users, Global Contacts" +msgstr "Perfiles, contactos globales" + +#: mod/admin.php:630 +msgid "Users, Global Contacts/fallback" +msgstr "Perfiles, contactos globales/fallback" + +#: mod/admin.php:634 +msgid "One month" +msgstr "Un mes" + +#: mod/admin.php:635 +msgid "Three months" +msgstr "Tres meses" + +#: mod/admin.php:636 +msgid "Half a year" +msgstr "Medio año" + +#: mod/admin.php:637 +msgid "One year" +msgstr "Un año" + +#: mod/admin.php:642 msgid "Multi user instance" msgstr "Sesión multi usuario" -#: ../../mod/admin.php:602 +#: mod/admin.php:665 msgid "Closed" msgstr "Cerrado" -#: ../../mod/admin.php:603 +#: mod/admin.php:666 msgid "Requires approval" msgstr "Requiere aprobación" -#: ../../mod/admin.php:604 +#: mod/admin.php:667 msgid "Open" msgstr "Abierto" -#: ../../mod/admin.php:608 +#: mod/admin.php:671 msgid "No SSL policy, links will track page SSL state" msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página" -#: ../../mod/admin.php:609 +#: mod/admin.php:672 msgid "Force all links to use SSL" msgstr "Forzar todos los enlaces a utilizar SSL" -#: ../../mod/admin.php:610 +#: mod/admin.php:673 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)" -#: ../../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 +#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 +#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 msgid "Save Settings" -msgstr "" +msgstr "Guardar configuración" -#: ../../mod/admin.php:621 ../../mod/register.php:255 +#: mod/admin.php:684 mod/register.php:260 msgid "Registration" msgstr "Registro" -#: ../../mod/admin.php:622 +#: mod/admin.php:685 msgid "File upload" msgstr "Subida de archivo" -#: ../../mod/admin.php:623 +#: mod/admin.php:686 msgid "Policies" msgstr "Políticas" -#: ../../mod/admin.php:624 +#: mod/admin.php:687 msgid "Advanced" msgstr "Avanzado" -#: ../../mod/admin.php:625 +#: mod/admin.php:688 +msgid "Auto Discovered Contact Directory" +msgstr "Directorio de contactos descubierto automáticamente" + +#: mod/admin.php:689 msgid "Performance" msgstr "Rendimiento" -#: ../../mod/admin.php:626 +#: mod/admin.php:690 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" +msgstr "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. " -#: ../../mod/admin.php:629 +#: mod/admin.php:693 msgid "Site name" msgstr "Nombre del sitio" -#: ../../mod/admin.php:630 +#: mod/admin.php:694 msgid "Host name" -msgstr "" +msgstr "Nombre de dominio" -#: ../../mod/admin.php:631 +#: mod/admin.php:695 msgid "Sender Email" +msgstr "Dirección de origen de correo electrónico" + +#: mod/admin.php:695 +msgid "" +"The email address your server shall use to send notification emails from." msgstr "" -#: ../../mod/admin.php:632 +#: mod/admin.php:696 msgid "Banner/Logo" msgstr "Imagen/Logotipo" -#: ../../mod/admin.php:633 +#: mod/admin.php:697 msgid "Shortcut icon" +msgstr "Icono de atajo" + +#: mod/admin.php:697 +msgid "Link to an icon that will be used for browsers." msgstr "" -#: ../../mod/admin.php:634 +#: mod/admin.php:698 msgid "Touch icon" +msgstr "Icono touch" + +#: mod/admin.php:698 +msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: ../../mod/admin.php:635 +#: mod/admin.php:699 msgid "Additional Info" -msgstr "" +msgstr "Información adicional" -#: ../../mod/admin.php:635 +#: mod/admin.php:699 +#, php-format msgid "" "For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" +"listed at %s/siteinfo." +msgstr "Para servidores públicos: información adicional que sera publicado en %s/siteinfo." -#: ../../mod/admin.php:636 +#: mod/admin.php:700 msgid "System language" msgstr "Idioma" -#: ../../mod/admin.php:637 +#: mod/admin.php:701 msgid "System theme" msgstr "Tema" -#: ../../mod/admin.php:637 +#: mod/admin.php:701 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema" -#: ../../mod/admin.php:638 +#: mod/admin.php:702 msgid "Mobile system theme" msgstr "Tema de sistema móvil" -#: ../../mod/admin.php:638 +#: mod/admin.php:702 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: ../../mod/admin.php:639 +#: mod/admin.php:703 msgid "SSL link policy" msgstr "Política de enlaces SSL" -#: ../../mod/admin.php:639 +#: mod/admin.php:703 msgid "Determines whether generated links should be forced to use SSL" msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL" -#: ../../mod/admin.php:640 +#: mod/admin.php:704 msgid "Force SSL" -msgstr "" +msgstr "Forzar SSL" -#: ../../mod/admin.php:640 +#: mod/admin.php:704 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." -msgstr "" +msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable." -#: ../../mod/admin.php:641 +#: mod/admin.php:705 msgid "Old style 'Share'" -msgstr "" +msgstr "Viejo estilo de 'reenviar'" -#: ../../mod/admin.php:641 +#: mod/admin.php:705 msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" +msgstr "Desactiva el elemento bbcode 'reenviar' para objetos repetidos." -#: ../../mod/admin.php:642 +#: mod/admin.php:706 msgid "Hide help entry from navigation menu" msgstr "Ocultar la ayuda en el menú de navegación" -#: ../../mod/admin.php:642 +#: mod/admin.php:706 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente." -#: ../../mod/admin.php:643 +#: mod/admin.php:707 msgid "Single user instance" msgstr "Sesión de usuario único" -#: ../../mod/admin.php:643 +#: mod/admin.php:707 msgid "Make this instance multi-user or single-user for the named user" msgstr "Haz esta sesión multi-usuario o usuario único para el usuario" -#: ../../mod/admin.php:644 +#: mod/admin.php:708 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../mod/admin.php:644 +#: mod/admin.php:708 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite." -#: ../../mod/admin.php:645 +#: mod/admin.php:709 msgid "Maximum image length" msgstr "Largo máximo de imagen" -#: ../../mod/admin.php:645 +#: mod/admin.php:709 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íxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." -#: ../../mod/admin.php:646 +#: mod/admin.php:710 msgid "JPEG image quality" msgstr "Calidad de imagen JPEG" -#: ../../mod/admin.php:646 +#: mod/admin.php:710 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." -#: ../../mod/admin.php:648 +#: mod/admin.php:712 msgid "Register policy" msgstr "Política de registros" -#: ../../mod/admin.php:649 +#: mod/admin.php:713 msgid "Maximum Daily Registrations" msgstr "Registros Máximos Diarios" -#: ../../mod/admin.php:649 +#: mod/admin.php:713 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 anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto." -#: ../../mod/admin.php:650 +#: mod/admin.php:714 msgid "Register text" msgstr "Términos" -#: ../../mod/admin.php:650 +#: mod/admin.php:714 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará en un lugar destacado en la página de registro." -#: ../../mod/admin.php:651 +#: mod/admin.php:715 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: ../../mod/admin.php:651 +#: mod/admin.php:715 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." -#: ../../mod/admin.php:652 +#: mod/admin.php:716 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../mod/admin.php:652 +#: mod/admin.php:716 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 separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" -#: ../../mod/admin.php:653 +#: mod/admin.php:717 msgid "Allowed email domains" msgstr "Dominios de correo permitidos" -#: ../../mod/admin.php:653 +#: mod/admin.php:717 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 separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" -#: ../../mod/admin.php:654 +#: mod/admin.php:718 msgid "Block public" msgstr "Bloqueo público" -#: ../../mod/admin.php:654 +#: mod/admin.php:718 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." -#: ../../mod/admin.php:655 +#: mod/admin.php:719 msgid "Force publish" msgstr "Forzar publicación" -#: ../../mod/admin.php:655 +#: mod/admin.php:719 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." -#: ../../mod/admin.php:656 +#: mod/admin.php:720 msgid "Global directory update URL" msgstr "Dirección de actualización del directorio global" -#: ../../mod/admin.php:656 +#: mod/admin.php:720 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "Dirección para actualizar el directorio global. Si no se establece ningún valor el directorio global será inaccesible para la aplicación." -#: ../../mod/admin.php:657 +#: mod/admin.php:721 msgid "Allow threaded items" msgstr "Permitir elementos en hilo" -#: ../../mod/admin.php:657 +#: mod/admin.php:721 msgid "Allow infinite level threading for items on this site." msgstr "Permitir infinitos niveles de hilo para los elementos de este sitio." -#: ../../mod/admin.php:658 +#: mod/admin.php:722 msgid "Private posts by default for new users" msgstr "Publicaciones privadas por defecto para usuarios nuevos" -#: ../../mod/admin.php:658 +#: mod/admin.php:722 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público." -#: ../../mod/admin.php:659 +#: mod/admin.php:723 msgid "Don't include post content in email notifications" msgstr "No incluir el contenido del post en las notificaciones de correo electrónico" -#: ../../mod/admin.php:659 +#: mod/admin.php:723 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 incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad." -#: ../../mod/admin.php:660 +#: mod/admin.php:724 msgid "Disallow public access to addons listed in the apps menu." -msgstr "" +msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones." -#: ../../mod/admin.php:660 +#: mod/admin.php:724 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." -msgstr "" +msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados." -#: ../../mod/admin.php:661 +#: mod/admin.php:725 msgid "Don't embed private images in posts" -msgstr "" +msgstr "No agregar imágenes privados en las publicaciones" -#: ../../mod/admin.php:661 +#: mod/admin.php:725 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 "" +msgstr "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar." -#: ../../mod/admin.php:662 +#: mod/admin.php:726 msgid "Allow Users to set remote_self" -msgstr "" +msgstr "Permitir a los usuarios de definir perfiles_remotos" -#: ../../mod/admin.php:662 +#: mod/admin.php:726 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 "" +msgstr "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil." -#: ../../mod/admin.php:663 +#: mod/admin.php:727 msgid "Block multiple registrations" msgstr "Bloquear registros multiples" -#: ../../mod/admin.php:663 +#: mod/admin.php:727 msgid "Disallow users to register additional accounts for use as pages." msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas." -#: ../../mod/admin.php:664 +#: mod/admin.php:728 msgid "OpenID support" msgstr "Soporte OpenID" -#: ../../mod/admin.php:664 +#: mod/admin.php:728 msgid "OpenID support for registration and logins." msgstr "Soporte OpenID para registros y accesos." -#: ../../mod/admin.php:665 +#: mod/admin.php:729 msgid "Fullname check" msgstr "Comprobar Nombre completo" -#: ../../mod/admin.php:665 +#: mod/admin.php:729 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam" -#: ../../mod/admin.php:666 +#: mod/admin.php:730 msgid "UTF-8 Regular expressions" msgstr "Expresiones regulares UTF-8" -#: ../../mod/admin.php:666 +#: mod/admin.php:730 msgid "Use PHP UTF8 regular expressions" msgstr "Usar expresiones regulares de UTF8 en PHP" -#: ../../mod/admin.php:667 +#: mod/admin.php:731 msgid "Community Page Style" -msgstr "" +msgstr "Estilo de pagina de comunidad" -#: ../../mod/admin.php:667 +#: mod/admin.php:731 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." -msgstr "" +msgstr "Tipo de pagina de comunidad a visualizar. 'Comunidad global' muestra todas las publicaciones publicas de la red abierta federada que llega a este servidor." -#: ../../mod/admin.php:668 +#: mod/admin.php:732 msgid "Posts per user on community page" -msgstr "" +msgstr "Publicaciones por usuario en la pagina de comunidad" -#: ../../mod/admin.php:668 +#: mod/admin.php:732 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" -msgstr "" +msgstr "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')" -#: ../../mod/admin.php:669 +#: mod/admin.php:733 msgid "Enable OStatus support" msgstr "Permitir soporte OStatus" -#: ../../mod/admin.php:669 +#: mod/admin.php:733 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "" +msgstr "Proporcionar OStatus compatibilidad integrada (StatusNet, GNU Social, Quitter etc.). Todas las comunicaciones en OStatus son publicas así que eventuales advertencias serán ocasionalmente desplegadas." -#: ../../mod/admin.php:670 +#: mod/admin.php:734 msgid "OStatus conversation completion interval" -msgstr "" +msgstr "Intervalo de actualización de conversaciones OStatus" -#: ../../mod/admin.php:670 +#: mod/admin.php:734 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." -msgstr "" +msgstr "Cuan seguido el recolector deberá buscar nuevas entradas en OStatus? Esto puede ser un trabajo de mucha carga para los recursos del servidor." -#: ../../mod/admin.php:671 +#: mod/admin.php:735 msgid "Enable Diaspora support" msgstr "Habilitar el soporte para Diaspora*" -#: ../../mod/admin.php:671 +#: mod/admin.php:735 msgid "Provide built-in Diaspora network compatibility." msgstr "Provee una compatibilidad con la red de Diaspora." -#: ../../mod/admin.php:672 +#: mod/admin.php:736 msgid "Only allow Friendica contacts" msgstr "Permitir solo contactos de Friendica" -#: ../../mod/admin.php:672 +#: mod/admin.php:736 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados." -#: ../../mod/admin.php:673 +#: mod/admin.php:737 msgid "Verify SSL" msgstr "Verificar SSL" -#: ../../mod/admin.php:673 +#: mod/admin.php:737 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 quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." -#: ../../mod/admin.php:674 +#: mod/admin.php:738 msgid "Proxy user" msgstr "Usuario proxy" -#: ../../mod/admin.php:675 +#: mod/admin.php:739 msgid "Proxy URL" msgstr "Dirección proxy" -#: ../../mod/admin.php:676 +#: mod/admin.php:740 msgid "Network timeout" msgstr "Tiempo de espera de red" -#: ../../mod/admin.php:676 +#: mod/admin.php:740 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." -#: ../../mod/admin.php:677 +#: mod/admin.php:741 msgid "Delivery interval" msgstr "Intervalo de actualización" -#: ../../mod/admin.php:677 +#: mod/admin.php:741 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 "Retrasar la entrega de procesos en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendamos: 4-5 para los servidores compartidos, 2-3 para servidores privados virtuales, 0-1 para los grandes servidores dedicados." -#: ../../mod/admin.php:678 +#: mod/admin.php:742 msgid "Poll interval" msgstr "Intervalo de sondeo" -#: ../../mod/admin.php:678 +#: mod/admin.php:742 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Retrasar los procesos en segundo plano de sondeo en esta cantidad de segundos para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega." -#: ../../mod/admin.php:679 +#: mod/admin.php:743 msgid "Maximum Load Average" msgstr "Promedio de carga máxima" -#: ../../mod/admin.php:679 +#: mod/admin.php:743 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50." -#: ../../mod/admin.php:681 +#: mod/admin.php:744 +msgid "Maximum Load Average (Frontend)" +msgstr "Carga máxima promedio (frontend)" + +#: mod/admin.php:744 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50." + +#: mod/admin.php:746 +msgid "Periodical check of global contacts" +msgstr "Verificación periódica de los contactos globales." + +#: mod/admin.php:746 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Habilitado los contactos globales son verificado periódicamente por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores." + +#: mod/admin.php:747 +msgid "Discover contacts from other servers" +msgstr "Descubrir contactos de otros servidores" + +#: mod/admin.php:747 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'" + +#: mod/admin.php:748 +msgid "Timeframe for fetching global contacts" +msgstr "Intervalos de tiempo para revisar contactos globales." + +#: mod/admin.php:748 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)" + +#: mod/admin.php:749 +msgid "Search the local directory" +msgstr "Buscar el directorio local" + +#: mod/admin.php:749 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida." + +#: mod/admin.php:751 +msgid "Publish server information" +msgstr "Publicar información del servidor" + +#: mod/admin.php:751 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Si habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea the-federation.info por detalles." + +#: mod/admin.php:753 msgid "Use MySQL full text engine" msgstr "Usar motor MySQL de texto completo" -#: ../../mod/admin.php:681 +#: mod/admin.php:753 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Activa el motor de texto completo. Agiliza las búsquedas, pero solo busca cuatro o más caracteres." -#: ../../mod/admin.php:682 +#: mod/admin.php:754 msgid "Suppress Language" -msgstr "" +msgstr "Suprimir idiomas" -#: ../../mod/admin.php:682 +#: mod/admin.php:754 msgid "Suppress language information in meta information about a posting." -msgstr "" +msgstr "Suprimir la información de datos meta sobre informaciones de idiomas en las publicaciones." -#: ../../mod/admin.php:683 +#: mod/admin.php:755 msgid "Suppress Tags" -msgstr "" +msgstr "Suprimir tags" -#: ../../mod/admin.php:683 +#: mod/admin.php:755 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" +msgstr "Suprimir la lista de tags al final de una publicación." -#: ../../mod/admin.php:684 +#: mod/admin.php:756 msgid "Path to item cache" msgstr "Ruta a la caché del objeto" -#: ../../mod/admin.php:685 +#: mod/admin.php:756 +msgid "The item caches buffers generated bbcode and external images." +msgstr "El buffer de cache de items generado para bbcodes e imágenes externas. " + +#: mod/admin.php:757 msgid "Cache duration in seconds" msgstr "Duración de la caché en segundos" -#: ../../mod/admin.php:685 +#: mod/admin.php:757 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 "" +msgstr "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1." -#: ../../mod/admin.php:686 +#: mod/admin.php:758 msgid "Maximum numbers of comments per post" -msgstr "" +msgstr "Numero máximo de respuestas por tema" -#: ../../mod/admin.php:686 +#: mod/admin.php:758 msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" +msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100." -#: ../../mod/admin.php:687 +#: mod/admin.php:759 msgid "Path for lock file" msgstr "Ruta al archivo protegido" -#: ../../mod/admin.php:688 +#: mod/admin.php:759 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "El archivo lock es usado para evitar multiples pooler (recolectores de información) a la vez. Defina solo una carpeta aquí." + +#: mod/admin.php:760 msgid "Temp path" msgstr "Ruta a los temporales" -#: ../../mod/admin.php:689 +#: mod/admin.php:760 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. " + +#: mod/admin.php:761 msgid "Base path to installation" msgstr "Ruta base para la instalación" -#: ../../mod/admin.php:690 -msgid "Disable picture proxy" -msgstr "" +#: mod/admin.php:761 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot." -#: ../../mod/admin.php:690 +#: mod/admin.php:762 +msgid "Disable picture proxy" +msgstr "Deshabilitar proxy de imagen" + +#: mod/admin.php:762 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." -msgstr "" +msgstr "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda." -#: ../../mod/admin.php:691 +#: mod/admin.php:763 msgid "Enable old style pager" -msgstr "" +msgstr "Habilitar paginación estilo viejo" -#: ../../mod/admin.php:691 +#: mod/admin.php:763 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." -msgstr "" +msgstr "La paginación al estilo viejo tiene números de paginas pero enlentece masivamente la velocidad de la pagina." -#: ../../mod/admin.php:692 +#: mod/admin.php:764 msgid "Only search in tags" -msgstr "" +msgstr "Solo buscar en tags" -#: ../../mod/admin.php:692 +#: mod/admin.php:764 msgid "On large systems the text search can slow down the system extremely." -msgstr "" +msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente." -#: ../../mod/admin.php:694 +#: mod/admin.php:766 msgid "New base url" -msgstr "" +msgstr "Nueva URLbase" -#: ../../mod/admin.php:711 +#: mod/admin.php:766 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Cambiar base URL para este servidor. Envía mensajes de relocalisación a todos los contactos DFRN." + +#: mod/admin.php:768 +msgid "RINO Encryption" +msgstr "Encryptado RINO" + +#: mod/admin.php:768 +msgid "Encryption layer between nodes." +msgstr "Capa de encryptación entre nodos." + +#: mod/admin.php:769 +msgid "Embedly API key" +msgstr "Embedly llave de API (API key) " + +#: mod/admin.php:769 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional." + +#: mod/admin.php:787 msgid "Update has been marked successful" msgstr "La actualización se ha completado con éxito" -#: ../../mod/admin.php:719 +#: mod/admin.php:795 #, php-format msgid "Database structure update %s was successfully applied." -msgstr "" +msgstr "Actualización de base de datos %s fue aplicada con éxito." -#: ../../mod/admin.php:722 +#: mod/admin.php:798 #, php-format msgid "Executing of database structure update %s failed with error: %s" -msgstr "" +msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" -#: ../../mod/admin.php:734 +#: mod/admin.php:810 #, php-format msgid "Executing %s failed with error: %s" -msgstr "" +msgstr "Paso %s fallo con el error: %s" -#: ../../mod/admin.php:737 +#: mod/admin.php:813 #, php-format msgid "Update %s was successfully applied." msgstr "Actualización %s aplicada con éxito." -#: ../../mod/admin.php:741 +#: mod/admin.php:817 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La actualización %s no ha informado, se desconoce el estado." -#: ../../mod/admin.php:743 +#: mod/admin.php:819 #, php-format msgid "There was no additional update function %s that needed to be called." -msgstr "" +msgstr "No había función adicional de actualización %s que necesitaba ser requerida." -#: ../../mod/admin.php:762 +#: mod/admin.php:838 msgid "No failed updates." msgstr "Actualizaciones sin fallos." -#: ../../mod/admin.php:763 +#: mod/admin.php:839 msgid "Check database structure" -msgstr "" +msgstr "Revisar estructura de la base de datos" -#: ../../mod/admin.php:768 +#: mod/admin.php:844 msgid "Failed Updates" msgstr "Actualizaciones fallidas" -#: ../../mod/admin.php:769 +#: mod/admin.php:845 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." -#: ../../mod/admin.php:770 +#: mod/admin.php:846 msgid "Mark success (if update was manually applied)" msgstr "Marcar como correcta (si actualizaste manualmente)" -#: ../../mod/admin.php:771 +#: mod/admin.php:847 msgid "Attempt to execute this update step automatically" msgstr "Intentando ejecutar este paso automáticamente" -#: ../../mod/admin.php:803 +#: mod/admin.php:879 #, 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 "" +msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tel administrador de %2$s ha creado una cuenta para usted." -#: ../../mod/admin.php:806 +#: mod/admin.php:882 #, php-format msgid "" "\n" @@ -2664,290 +2867,289 @@ msgid "" "\t\t\tyou to make some new and interesting friends.\n" "\n" "\t\t\tThank you and welcome to %4$s." -msgstr "" +msgstr "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%1$s\n\t\t\tNombre de la cuenta:\t\t%2$s\n\t\t\tContraseña:\t\t%3$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %4$s." -#: ../../mod/admin.php:838 ../../include/user.php:413 +#: mod/admin.php:914 include/user.php:421 #, php-format msgid "Registration details for %s" msgstr "Detalles de registro para %s" -#: ../../mod/admin.php:850 +#: mod/admin.php:926 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s usuario bloqueado/desbloqueado" msgstr[1] "%s usuarios bloqueados/desbloqueados" -#: ../../mod/admin.php:857 +#: mod/admin.php:933 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s usuario eliminado" msgstr[1] "%s usuarios eliminados" -#: ../../mod/admin.php:896 +#: mod/admin.php:972 #, php-format msgid "User '%s' deleted" msgstr "Usuario '%s' eliminado" -#: ../../mod/admin.php:904 +#: mod/admin.php:980 #, php-format msgid "User '%s' unblocked" msgstr "Usuario '%s' desbloqueado" -#: ../../mod/admin.php:904 +#: mod/admin.php:980 #, php-format msgid "User '%s' blocked" msgstr "Usuario '%s' bloqueado'" -#: ../../mod/admin.php:999 +#: mod/admin.php:1073 msgid "Add User" -msgstr "" +msgstr "Agregar usuario" -#: ../../mod/admin.php:1000 +#: mod/admin.php:1074 msgid "select all" msgstr "seleccionar todo" -#: ../../mod/admin.php:1001 +#: mod/admin.php:1075 msgid "User registrations waiting for confirm" msgstr "Registro de usuarios esperando confirmación" -#: ../../mod/admin.php:1002 +#: mod/admin.php:1076 msgid "User waiting for permanent deletion" -msgstr "" +msgstr "Usuario esperando anulación permanente." -#: ../../mod/admin.php:1003 +#: mod/admin.php:1077 msgid "Request date" msgstr "Solicitud de fecha" -#: ../../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 +#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "Correo electrónico" -#: ../../mod/admin.php:1004 +#: mod/admin.php:1078 msgid "No registrations." msgstr "Sin registros." -#: ../../mod/admin.php:1006 +#: mod/admin.php:1080 msgid "Deny" msgstr "Denegado" -#: ../../mod/admin.php:1010 +#: mod/admin.php:1084 msgid "Site admin" msgstr "Administrador de la web" -#: ../../mod/admin.php:1011 +#: mod/admin.php:1085 msgid "Account expired" msgstr "Cuenta caducada" -#: ../../mod/admin.php:1014 +#: mod/admin.php:1088 msgid "New User" -msgstr "" +msgstr "Nuevo usuario" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Register date" msgstr "Fecha de registro" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last login" msgstr "Último acceso" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last item" msgstr "Último elemento" -#: ../../mod/admin.php:1015 +#: mod/admin.php:1089 msgid "Deleted since" -msgstr "" +msgstr "Borrado desde" -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 +#: mod/admin.php:1090 mod/settings.php:41 msgid "Account" msgstr "Cuenta" -#: ../../mod/admin.php:1018 +#: mod/admin.php:1092 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" -#: ../../mod/admin.php:1019 +#: mod/admin.php:1093 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 "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" -#: ../../mod/admin.php:1029 +#: mod/admin.php:1103 msgid "Name of the new user." -msgstr "" +msgstr "Nombre del nuevo usuario" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1104 msgid "Nickname" -msgstr "" +msgstr "Apodo" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1104 msgid "Nickname of the new user." -msgstr "" +msgstr "Apodo del nuevo perfil." -#: ../../mod/admin.php:1031 +#: mod/admin.php:1105 msgid "Email address of the new user." -msgstr "" +msgstr "Dirección de correo del nuevo perfil." -#: ../../mod/admin.php:1064 +#: mod/admin.php:1138 #, php-format msgid "Plugin %s disabled." msgstr "Módulo %s deshabilitado." -#: ../../mod/admin.php:1068 +#: mod/admin.php:1142 #, php-format msgid "Plugin %s enabled." msgstr "Módulo %s habilitado." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: mod/admin.php:1152 mod/admin.php:1375 msgid "Disable" msgstr "Desactivado" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: mod/admin.php:1154 mod/admin.php:1377 msgid "Enable" msgstr "Activado" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: mod/admin.php:1177 mod/admin.php:1405 msgid "Toggle" msgstr "Activar" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: mod/admin.php:1185 mod/admin.php:1415 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: mod/admin.php:1186 mod/admin.php:1416 msgid "Maintainer: " msgstr "Mantenedor: " -#: ../../mod/admin.php:1254 +#: mod/admin.php:1335 msgid "No themes found." msgstr "No se encontraron temas." -#: ../../mod/admin.php:1316 +#: mod/admin.php:1397 msgid "Screenshot" msgstr "Captura de pantalla" -#: ../../mod/admin.php:1362 +#: mod/admin.php:1443 msgid "[Experimental]" msgstr "[Experimental]" -#: ../../mod/admin.php:1363 +#: mod/admin.php:1444 msgid "[Unsupported]" msgstr "[Sin soporte]" -#: ../../mod/admin.php:1390 +#: mod/admin.php:1471 msgid "Log settings updated." msgstr "Configuración de registro actualizada." -#: ../../mod/admin.php:1446 +#: mod/admin.php:1527 msgid "Clear" msgstr "Limpiar" -#: ../../mod/admin.php:1452 +#: mod/admin.php:1533 msgid "Enable Debugging" -msgstr "" +msgstr "Habilitar debugging" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1534 msgid "Log file" msgstr "Archivo de registro" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1534 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." -#: ../../mod/admin.php:1454 +#: mod/admin.php:1535 msgid "Log level" msgstr "Nivel de registro" -#: ../../mod/admin.php:1504 +#: mod/admin.php:1585 include/acl_selectors.php:347 msgid "Close" msgstr "Cerrado" -#: ../../mod/admin.php:1510 +#: mod/admin.php:1591 msgid "FTP Host" msgstr "Hospedaje FTP" -#: ../../mod/admin.php:1511 +#: mod/admin.php:1592 msgid "FTP Path" msgstr "Ruta FTP" -#: ../../mod/admin.php:1512 +#: mod/admin.php:1593 msgid "FTP User" msgstr "Usuario FTP" -#: ../../mod/admin.php:1513 +#: mod/admin.php:1594 msgid "FTP Password" msgstr "Contraseña FTP" -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Resultados de la busqueda para:" +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Buscar resultados para: %s" -#: ../../mod/network.php:185 ../../mod/search.php:21 +#: mod/network.php:187 mod/search.php:25 msgid "Remove term" msgstr "Eliminar término" -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 +#: mod/network.php:196 mod/search.php:34 include/features.php:42 msgid "Saved Searches" msgstr "Búsquedas guardadas" -#: ../../mod/network.php:195 ../../include/group.php:275 +#: mod/network.php:197 include/group.php:277 msgid "add" msgstr "añadir" -#: ../../mod/network.php:356 +#: mod/network.php:358 msgid "Commented Order" msgstr "Orden de comentarios" -#: ../../mod/network.php:359 +#: mod/network.php:361 msgid "Sort by Comment Date" msgstr "Ordenar por fecha de comentarios" -#: ../../mod/network.php:362 +#: mod/network.php:365 msgid "Posted Order" msgstr "Orden de publicación" -#: ../../mod/network.php:365 +#: mod/network.php:368 msgid "Sort by Post Date" msgstr "Ordenar por fecha de publicación" -#: ../../mod/network.php:374 +#: mod/network.php:378 msgid "Posts that mention or involve you" msgstr "Publicaciones que te mencionan o involucran" -#: ../../mod/network.php:380 +#: mod/network.php:385 msgid "New" msgstr "Nuevo" -#: ../../mod/network.php:383 +#: mod/network.php:388 msgid "Activity Stream - by date" msgstr "Corriente de actividad por fecha" -#: ../../mod/network.php:389 +#: mod/network.php:395 msgid "Shared Links" msgstr "Enlaces compartidos" -#: ../../mod/network.php:392 +#: mod/network.php:398 msgid "Interesting Links" msgstr "Enlaces interesantes" -#: ../../mod/network.php:398 +#: mod/network.php:405 msgid "Starred" msgstr "Favoritos" -#: ../../mod/network.php:401 +#: mod/network.php:408 msgid "Favourite Posts" msgstr "Publicaciones favoritas" -#: ../../mod/network.php:463 +#: mod/network.php:466 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -2955,2297 +3157,2290 @@ msgid_plural "" msgstr[0] "Aviso: este grupo contiene %s contacto con conexión no segura." msgstr[1] "Aviso: este grupo contiene %s contactos con conexiones no seguras." -#: ../../mod/network.php:466 +#: mod/network.php:469 msgid "Private messages to this group are at risk of public disclosure." msgstr "Los mensajes privados a este grupo corren el riesgo de ser mostrados públicamente." -#: ../../mod/network.php:520 ../../mod/content.php:119 +#: mod/network.php:532 mod/content.php:119 msgid "No such group" msgstr "Ningún grupo" -#: ../../mod/network.php:537 ../../mod/content.php:130 +#: mod/network.php:549 mod/content.php:130 msgid "Group is empty" msgstr "El grupo está vacío" -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grupo: " +#: mod/network.php:560 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "Grupo: %s" -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Contacto: " +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "Contacto: %s" -#: ../../mod/network.php:556 +#: mod/network.php:582 msgid "Private messages to this person are at risk of public disclosure." msgstr "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente." -#: ../../mod/network.php:561 +#: mod/network.php:587 msgid "Invalid contact." msgstr "Contacto erróneo." -#: ../../mod/allfriends.php:34 +#: mod/allfriends.php:37 #, php-format msgid "Friends of %s" msgstr "Amigos de %s" -#: ../../mod/allfriends.php:40 +#: mod/allfriends.php:44 msgid "No friends to display." msgstr "No hay amigos para mostrar." -#: ../../mod/events.php:66 +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de su comienzo." + +#: mod/events.php:80 mod/events.php:82 msgid "Event title and start time are required." msgstr "Título del evento y hora de inicio requeridas." -#: ../../mod/events.php:291 +#: mod/events.php:317 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:313 +#: mod/events.php:339 msgid "Edit event" msgstr "Editar evento" -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 msgid "link to source" msgstr "Enlace al original" -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 +#: mod/events.php:396 include/identity.php:667 include/nav.php:80 +#: view/theme/diabook/theme.php:127 msgid "Events" msgstr "Eventos" -#: ../../mod/events.php:371 +#: mod/events.php:397 msgid "Create New Event" msgstr "Crea un evento nuevo" -#: ../../mod/events.php:372 +#: mod/events.php:398 msgid "Previous" msgstr "Previo" -#: ../../mod/events.php:373 ../../mod/install.php:207 +#: mod/events.php:399 mod/install.php:209 msgid "Next" msgstr "Siguiente" -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "hora:minuto" - -#: ../../mod/events.php:456 +#: mod/events.php:491 msgid "Event details" msgstr "Detalles del evento" -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "El formato es %s %s. Fecha de inicio y título son obligatorios." +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "Se requiere fecha de comienzo y titulo" -#: ../../mod/events.php:459 +#: mod/events.php:493 msgid "Event Starts:" msgstr "Inicio del evento:" -#: ../../mod/events.php:459 ../../mod/events.php:473 +#: mod/events.php:493 mod/events.php:505 msgid "Required" msgstr "Obligatorio" -#: ../../mod/events.php:462 +#: mod/events.php:495 msgid "Finish date/time is not known or not relevant" msgstr "La fecha/hora de finalización no es conocida o es irrelevante." -#: ../../mod/events.php:464 +#: mod/events.php:497 msgid "Event Finishes:" msgstr "Finalización del evento:" -#: ../../mod/events.php:467 +#: mod/events.php:499 msgid "Adjust for viewer timezone" msgstr "Ajuste de zona horaria" -#: ../../mod/events.php:469 +#: mod/events.php:501 msgid "Description:" msgstr "Descripción:" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Localización:" - -#: ../../mod/events.php:473 +#: mod/events.php:505 msgid "Title:" msgstr "Título:" -#: ../../mod/events.php:475 +#: mod/events.php:507 msgid "Share this event" msgstr "Comparte este evento" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 +#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: object/Item.php:689 include/conversation.php:1089 +msgid "Preview" +msgstr "Vista previa" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 +#: object/Item.php:130 include/conversation.php:612 msgid "Select" msgstr "Seleccionar" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Ver perfil de %s @ %s" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 +#: mod/content.php:483 mod/content.php:866 object/Item.php:342 +#: include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: ../../mod/content.php:497 ../../include/conversation.php:690 +#: mod/content.php:499 include/conversation.php:689 msgid "View in context" msgstr "Verlo en contexto" -#: ../../mod/content.php:603 ../../object/Item.php:387 +#: mod/content.php:605 object/Item.php:389 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentario" msgstr[1] "%d comentarios" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 +#: mod/content.php:607 object/Item.php:391 object/Item.php:404 +#: include/text.php:2038 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "Comentario" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 +#: mod/content.php:608 boot.php:765 object/Item.php:392 +#: include/contact_widgets.php:205 include/items.php:5134 msgid "show more" msgstr "ver más" -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 +#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 msgid "Private Message" msgstr "Mensaje privado" -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 +#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 msgid "I like this (toggle)" msgstr "Me gusta esto (cambiar)" -#: ../../mod/content.php:684 ../../object/Item.php:231 +#: mod/content.php:686 object/Item.php:232 msgid "like" msgstr "me gusta" -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 +#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 msgid "I don't like this (toggle)" msgstr "No me gusta esto (cambiar)" -#: ../../mod/content.php:685 ../../object/Item.php:232 +#: mod/content.php:687 object/Item.php:233 msgid "dislike" msgstr "no me gusta" -#: ../../mod/content.php:687 ../../object/Item.php:234 +#: mod/content.php:689 object/Item.php:235 msgid "Share this" msgstr "Compartir esto" -#: ../../mod/content.php:687 ../../object/Item.php:234 +#: mod/content.php:689 object/Item.php:235 msgid "share" msgstr "compartir" -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 +#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 object/Item.php:677 msgid "This is you" msgstr "Este eres tú" -#: ../../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 +#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 +#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 msgid "Comment" msgstr "Comentar" -#: ../../mod/content.php:711 ../../object/Item.php:679 +#: mod/content.php:713 object/Item.php:681 msgid "Bold" msgstr "Negrita" -#: ../../mod/content.php:712 ../../object/Item.php:680 +#: mod/content.php:714 object/Item.php:682 msgid "Italic" msgstr "Cursiva" -#: ../../mod/content.php:713 ../../object/Item.php:681 +#: mod/content.php:715 object/Item.php:683 msgid "Underline" msgstr "Subrayado" -#: ../../mod/content.php:714 ../../object/Item.php:682 +#: mod/content.php:716 object/Item.php:684 msgid "Quote" msgstr "Cita" -#: ../../mod/content.php:715 ../../object/Item.php:683 +#: mod/content.php:717 object/Item.php:685 msgid "Code" msgstr "Código" -#: ../../mod/content.php:716 ../../object/Item.php:684 +#: mod/content.php:718 object/Item.php:686 msgid "Image" msgstr "Imagen" -#: ../../mod/content.php:717 ../../object/Item.php:685 +#: mod/content.php:719 object/Item.php:687 msgid "Link" msgstr "Enlace" -#: ../../mod/content.php:718 ../../object/Item.php:686 +#: mod/content.php:720 object/Item.php:688 msgid "Video" msgstr "Vídeo" -#: ../../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 "Vista previa" - -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 +#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 msgid "Edit" msgstr "Editar" -#: ../../mod/content.php:753 ../../object/Item.php:195 +#: mod/content.php:755 object/Item.php:196 msgid "add star" msgstr "Añadir estrella" -#: ../../mod/content.php:754 ../../object/Item.php:196 +#: mod/content.php:756 object/Item.php:197 msgid "remove star" msgstr "Quitar estrella" -#: ../../mod/content.php:755 ../../object/Item.php:197 +#: mod/content.php:757 object/Item.php:198 msgid "toggle star status" msgstr "Añadir a destacados" -#: ../../mod/content.php:758 ../../object/Item.php:200 +#: mod/content.php:760 object/Item.php:201 msgid "starred" msgstr "marcados con estrellas" -#: ../../mod/content.php:759 ../../object/Item.php:220 +#: mod/content.php:761 object/Item.php:221 msgid "add tag" msgstr "añadir etiqueta" -#: ../../mod/content.php:763 ../../object/Item.php:133 +#: mod/content.php:765 object/Item.php:134 msgid "save to folder" msgstr "grabado en directorio" -#: ../../mod/content.php:854 ../../object/Item.php:328 +#: mod/content.php:856 object/Item.php:330 msgid "to" msgstr "a" -#: ../../mod/content.php:855 ../../object/Item.php:330 +#: mod/content.php:857 object/Item.php:332 msgid "Wall-to-Wall" msgstr "Muro-A-Muro" -#: ../../mod/content.php:856 ../../object/Item.php:331 +#: mod/content.php:858 object/Item.php:333 msgid "via Wall-To-Wall:" msgstr "via Muro-A-Muro:" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +#: mod/removeme.php:46 mod/removeme.php:49 msgid "Remove My Account" msgstr "Eliminar mi cuenta" -#: ../../mod/removeme.php:47 +#: mod/removeme.php:47 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." -#: ../../mod/removeme.php:48 +#: mod/removeme.php:48 msgid "Please enter your password for verification:" msgstr "Por favor, introduce tu contraseña para la verificación:" -#: ../../mod/install.php:117 +#: mod/install.php:119 msgid "Friendica Communications Server - Setup" -msgstr "" +msgstr "Servidor de comunicación Friendica - Configuración" -#: ../../mod/install.php:123 +#: mod/install.php:125 msgid "Could not connect to database." msgstr "No es posible la conexión con la base de datos." -#: ../../mod/install.php:127 +#: mod/install.php:129 msgid "Could not create table." msgstr "No se puede crear la tabla." -#: ../../mod/install.php:133 +#: mod/install.php:135 msgid "Your Friendica site database has been installed." msgstr "La base de datos de su sitio web de Friendica ha sido instalada." -#: ../../mod/install.php:138 +#: mod/install.php:140 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql." -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 msgid "Please see the file \"INSTALL.txt\"." msgstr "Por favor, consulta el archivo \"INSTALL.txt\"." -#: ../../mod/install.php:203 +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Base de datos ya se encuentra en uso" + +#: mod/install.php:205 msgid "System check" msgstr "Verificación del sistema" -#: ../../mod/install.php:208 +#: mod/install.php:210 msgid "Check again" msgstr "Compruebalo de nuevo" -#: ../../mod/install.php:227 +#: mod/install.php:229 msgid "Database connection" msgstr "Conexión con la base de datos" -#: ../../mod/install.php:228 +#: mod/install.php:230 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." -#: ../../mod/install.php:229 +#: mod/install.php:231 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." -#: ../../mod/install.php:230 +#: mod/install.php:232 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." -#: ../../mod/install.php:234 +#: mod/install.php:236 msgid "Database Server Name" msgstr "Nombre del servidor de la base de datos" -#: ../../mod/install.php:235 +#: mod/install.php:237 msgid "Database Login Name" msgstr "Usuario de la base de datos" -#: ../../mod/install.php:236 +#: mod/install.php:238 msgid "Database Login Password" msgstr "Contraseña de la base de datos" -#: ../../mod/install.php:237 +#: mod/install.php:239 msgid "Database Name" msgstr "Nombre de la base de datos" -#: ../../mod/install.php:238 ../../mod/install.php:277 +#: mod/install.php:240 mod/install.php:279 msgid "Site administrator email address" msgstr "Dirección de correo del administrador de la web" -#: ../../mod/install.php:238 ../../mod/install.php:277 +#: mod/install.php:240 mod/install.php:279 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." -#: ../../mod/install.php:242 ../../mod/install.php:280 +#: mod/install.php:244 mod/install.php:282 msgid "Please select a default timezone for your website" msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" -#: ../../mod/install.php:267 +#: mod/install.php:269 msgid "Site settings" msgstr "Configuración de la página web" -#: ../../mod/install.php:321 +#: mod/install.php:323 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web." -#: ../../mod/install.php:322 +#: mod/install.php:324 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron. See 'Activating scheduled tasks'" msgstr "Si no tienes una versión en línea de comandos de PHP instalada en el servidor no podrás ejecutar actualizaciones en segundo plano a través de cron. Ver 'Activating scheduled tasks'" -#: ../../mod/install.php:326 +#: mod/install.php:328 msgid "PHP executable path" msgstr "Dirección al ejecutable PHP" -#: ../../mod/install.php:326 +#: mod/install.php:328 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." -#: ../../mod/install.php:331 +#: mod/install.php:333 msgid "Command line PHP" msgstr "Línea de comandos PHP" -#: ../../mod/install.php:340 +#: mod/install.php:342 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" +msgstr "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)" -#: ../../mod/install.php:341 +#: mod/install.php:343 msgid "Found PHP version: " -msgstr "" +msgstr "Versión PHP encontrada:" -#: ../../mod/install.php:343 +#: mod/install.php:345 msgid "PHP cli binary" -msgstr "" +msgstr "PHP cli binario" -#: ../../mod/install.php:354 +#: mod/install.php:356 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." -#: ../../mod/install.php:355 +#: mod/install.php:357 msgid "This is required for message delivery to work." msgstr "Esto es necesario para que funcione la entrega de mensajes." -#: ../../mod/install.php:357 +#: mod/install.php:359 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../mod/install.php:378 +#: mod/install.php:380 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" -#: ../../mod/install.php:379 +#: mod/install.php:381 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/install.php:381 +#: mod/install.php:383 msgid "Generate encryption keys" msgstr "Generar claves de encriptación" -#: ../../mod/install.php:388 +#: mod/install.php:390 msgid "libCurl PHP module" msgstr "Módulo PHP libCurl" -#: ../../mod/install.php:389 +#: mod/install.php:391 msgid "GD graphics PHP module" msgstr "Módulo PHP gráficos GD" -#: ../../mod/install.php:390 +#: mod/install.php:392 msgid "OpenSSL PHP module" msgstr "Módulo PHP OpenSSL" -#: ../../mod/install.php:391 +#: mod/install.php:393 msgid "mysqli PHP module" msgstr "Módulo PHP mysqli" -#: ../../mod/install.php:392 +#: mod/install.php:394 msgid "mb_string PHP module" msgstr "Módulo PHP mb_string" -#: ../../mod/install.php:397 ../../mod/install.php:399 +#: mod/install.php:399 mod/install.php:401 msgid "Apache mod_rewrite module" msgstr "Módulo mod_rewrite de Apache" -#: ../../mod/install.php:397 +#: mod/install.php:399 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." -#: ../../mod/install.php:405 +#: mod/install.php:407 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." -#: ../../mod/install.php:409 +#: mod/install.php:411 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." -#: ../../mod/install.php:413 +#: mod/install.php:415 msgid "Error: openssl PHP module required but not installed." msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." -#: ../../mod/install.php:417 +#: mod/install.php:419 msgid "Error: mysqli PHP module required but not installed." msgstr "Error: El módulo de PHP mysqli es necesario, pero no está instalado." -#: ../../mod/install.php:421 +#: mod/install.php:423 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." -#: ../../mod/install.php:438 +#: mod/install.php:440 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 "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo." -#: ../../mod/install.php:439 +#: mod/install.php:441 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 "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas." -#: ../../mod/install.php:440 +#: mod/install.php:442 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 obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica." -#: ../../mod/install.php:441 +#: mod/install.php:443 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones." -#: ../../mod/install.php:444 +#: mod/install.php:446 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permiso de escritura" -#: ../../mod/install.php:454 +#: mod/install.php:456 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." -msgstr "" +msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar." -#: ../../mod/install.php:455 +#: mod/install.php:457 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." -msgstr "" +msgstr "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." -#: ../../mod/install.php:456 +#: mod/install.php:458 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." -msgstr "" +msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." -#: ../../mod/install.php:457 +#: mod/install.php:459 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" +msgstr "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." -#: ../../mod/install.php:460 +#: mod/install.php:462 msgid "view/smarty3 is writable" -msgstr "" +msgstr "Se puede escribir en /view/smarty3" -#: ../../mod/install.php:472 +#: mod/install.php:478 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración." -#: ../../mod/install.php:474 +#: mod/install.php:480 msgid "Url rewrite is working" msgstr "Reescribiendo la dirección..." -#: ../../mod/install.php:484 +#: mod/install.php:489 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 "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web." -#: ../../mod/install.php:523 +#: mod/install.php:528 msgid "

    What next

    " msgstr "

    ¿Ahora qué?

    " -#: ../../mod/install.php:524 +#: mod/install.php:529 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." -#: ../../mod/wallmessage.php:59 +#: mod/wallmessage.php:59 msgid "Unable to check your home location." msgstr "Imposible comprobar tu servidor de inicio." -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +#: mod/wallmessage.php:86 mod/wallmessage.php:95 msgid "No recipient." msgstr "Sin receptor." -#: ../../mod/wallmessage.php:143 +#: 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 quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." -#: ../../mod/help.php:79 +#: mod/help.php:31 msgid "Help:" msgstr "Ayuda:" -#: ../../mod/help.php:84 ../../include/nav.php:114 +#: mod/help.php:36 include/nav.php:114 msgid "Help" msgstr "Ayuda" -#: ../../mod/help.php:90 ../../index.php:256 +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 msgid "Not Found" msgstr "No se ha encontrado" -#: ../../mod/help.php:93 ../../index.php:259 +#: mod/help.php:45 index.php:272 msgid "Page not found." msgstr "Página no encontrada." -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s te da la bienvenida a %2$s" -#: ../../mod/home.php:35 +#: mod/home.php:35 #, php-format msgid "Welcome to %s" msgstr "Bienvenido a %s" -#: ../../mod/wall_attach.php:75 +#: mod/wall_attach.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" +msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite." -#: ../../mod/wall_attach.php:75 +#: mod/wall_attach.php:83 msgid "Or - did you try to upload an empty file?" -msgstr "" +msgstr "Si no - intento de subir un archivo vacío?" -#: ../../mod/wall_attach.php:81 +#: mod/wall_attach.php:94 #, php-format -msgid "File exceeds size limit of %d" -msgstr "El tamaño del archivo excede el límite de %d" +msgid "File exceeds size limit of %s" +msgstr "El archivo excede el limite de tamaño de %s" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +#: mod/wall_attach.php:145 mod/wall_attach.php:161 msgid "File upload failed." msgstr "Ha fallado la subida del archivo." -#: ../../mod/match.php:12 +#: mod/match.php:13 msgid "Profile Match" msgstr "Coincidencias de Perfil" -#: ../../mod/match.php:20 +#: mod/match.php:22 msgid "No keywords to match. Please add keywords to your default profile." msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado." -#: ../../mod/match.php:57 +#: mod/match.php:64 msgid "is interested in:" msgstr "estás interesado en:" -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Conectar" - -#: ../../mod/share.php:44 +#: mod/share.php:38 msgid "link" msgstr "enlace" -#: ../../mod/community.php:23 +#: mod/community.php:23 msgid "Not available." msgstr "No disponible" -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 msgid "Community" msgstr "Comunidad" -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 +#: mod/community.php:62 mod/community.php:71 mod/search.php:192 msgid "No results." msgstr "Sin resultados." -#: ../../mod/settings.php:29 ../../mod/photos.php:80 +#: mod/settings.php:34 mod/photos.php:102 msgid "everybody" msgstr "todos" -#: ../../mod/settings.php:41 +#: mod/settings.php:47 msgid "Additional features" msgstr "Características adicionales" -#: ../../mod/settings.php:46 +#: mod/settings.php:53 msgid "Display" -msgstr "" +msgstr "Interfaz del usuario" -#: ../../mod/settings.php:52 ../../mod/settings.php:780 +#: mod/settings.php:60 mod/settings.php:835 msgid "Social Networks" -msgstr "" +msgstr "Redes sociales" -#: ../../mod/settings.php:62 ../../include/nav.php:170 +#: mod/settings.php:72 include/nav.php:179 msgid "Delegations" -msgstr "" +msgstr "Delegaciones" -#: ../../mod/settings.php:67 +#: mod/settings.php:78 msgid "Connected apps" msgstr "Aplicaciones conectadas" -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +#: mod/settings.php:84 mod/uexport.php:85 msgid "Export personal data" msgstr "Exportación de datos personales" -#: ../../mod/settings.php:77 +#: mod/settings.php:90 msgid "Remove account" msgstr "Eliminar cuenta" -#: ../../mod/settings.php:129 +#: mod/settings.php:143 msgid "Missing some important data!" msgstr "¡Faltan algunos datos importantes!" -#: ../../mod/settings.php:238 +#: mod/settings.php:256 msgid "Failed to connect with email account using the settings provided." msgstr "Error al conectar con la cuenta de correo mediante la configuración suministrada." -#: ../../mod/settings.php:243 +#: mod/settings.php:261 msgid "Email settings updated." msgstr "Configuración de correo actualizada." -#: ../../mod/settings.php:258 +#: mod/settings.php:276 msgid "Features updated" msgstr "Actualizaciones" -#: ../../mod/settings.php:321 +#: mod/settings.php:339 msgid "Relocate message has been send to your contacts" -msgstr "" +msgstr "Mensaje de reubicación ha sido enviado a sus contactos." -#: ../../mod/settings.php:335 +#: mod/settings.php:353 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." -#: ../../mod/settings.php:340 +#: mod/settings.php:358 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no ha sido modificada." -#: ../../mod/settings.php:348 +#: mod/settings.php:366 msgid "Wrong password." -msgstr "" +msgstr "Contraseña incorrecta" -#: ../../mod/settings.php:359 +#: mod/settings.php:377 msgid "Password changed." msgstr "Contraseña modificada." -#: ../../mod/settings.php:361 +#: mod/settings.php:379 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez." -#: ../../mod/settings.php:428 +#: mod/settings.php:446 msgid " Please use a shorter name." msgstr " Usa un nombre más corto." -#: ../../mod/settings.php:430 +#: mod/settings.php:448 msgid " Name too short." msgstr " Nombre demasiado corto." -#: ../../mod/settings.php:439 +#: mod/settings.php:457 msgid "Wrong Password" -msgstr "" +msgstr "Contraseña incorrecta" -#: ../../mod/settings.php:444 +#: mod/settings.php:462 msgid " Not valid email." msgstr " Correo no válido." -#: ../../mod/settings.php:450 +#: mod/settings.php:468 msgid " Cannot change to that email." msgstr " No se puede usar ese correo." -#: ../../mod/settings.php:506 +#: mod/settings.php:524 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto." -#: ../../mod/settings.php:510 +#: mod/settings.php:528 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad." -#: ../../mod/settings.php:540 +#: mod/settings.php:558 msgid "Settings updated." msgstr "Configuración actualizada." -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 +#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 msgid "Add application" msgstr "Agregar aplicación" -#: ../../mod/settings.php:617 ../../mod/settings.php:643 +#: mod/settings.php:635 mod/settings.php:661 msgid "Consumer Key" msgstr "Clave del consumidor" -#: ../../mod/settings.php:618 ../../mod/settings.php:644 +#: mod/settings.php:636 mod/settings.php:662 msgid "Consumer Secret" msgstr "Secreto del consumidor" -#: ../../mod/settings.php:619 ../../mod/settings.php:645 +#: mod/settings.php:637 mod/settings.php:663 msgid "Redirect" msgstr "Redirigir" -#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: mod/settings.php:638 mod/settings.php:664 msgid "Icon url" msgstr "Dirección del ícono" -#: ../../mod/settings.php:631 +#: mod/settings.php:649 msgid "You can't edit this application." msgstr "No puedes editar esta aplicación." -#: ../../mod/settings.php:674 +#: mod/settings.php:692 msgid "Connected Apps" msgstr "Aplicaciones conectadas" -#: ../../mod/settings.php:678 +#: mod/settings.php:696 msgid "Client key starts with" msgstr "Clave de cliente comienza por" -#: ../../mod/settings.php:679 +#: mod/settings.php:697 msgid "No name" msgstr "Sin nombre" -#: ../../mod/settings.php:680 +#: mod/settings.php:698 msgid "Remove authorization" msgstr "Suprimir la autorización" -#: ../../mod/settings.php:692 +#: mod/settings.php:710 msgid "No Plugin settings configured" msgstr "No se ha configurado ningún módulo" -#: ../../mod/settings.php:700 +#: mod/settings.php:718 msgid "Plugin Settings" msgstr "Configuración de los módulos" -#: ../../mod/settings.php:714 +#: mod/settings.php:732 msgid "Off" msgstr "Apagado" -#: ../../mod/settings.php:714 +#: mod/settings.php:732 msgid "On" msgstr "Encendido" -#: ../../mod/settings.php:722 +#: mod/settings.php:740 msgid "Additional Features" msgstr "Características adicionales" -#: ../../mod/settings.php:736 ../../mod/settings.php:737 +#: mod/settings.php:750 mod/settings.php:754 +msgid "General Social Media Settings" +msgstr "Configuración general de social media " + +#: mod/settings.php:760 +msgid "Disable intelligent shortening" +msgstr "Deshabilitar recorte inteligente de URL" + +#: mod/settings.php:762 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica." + +#: mod/settings.php:768 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones " + +#: mod/settings.php:770 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario." + +#: mod/settings.php:791 mod/settings.php:792 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "El soporte integrado de conexión con %s está %s" -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 +#: mod/settings.php:791 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora*" -#: ../../mod/settings.php:736 ../../mod/settings.php:737 +#: mod/settings.php:791 mod/settings.php:792 msgid "enabled" msgstr "habilitado" -#: ../../mod/settings.php:736 ../../mod/settings.php:737 +#: mod/settings.php:791 mod/settings.php:792 msgid "disabled" msgstr "deshabilitado" -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" +#: mod/settings.php:792 +msgid "GNU Social (OStatus)" +msgstr "GNUsocial (OStatus)" -#: ../../mod/settings.php:773 +#: mod/settings.php:828 msgid "Email access is disabled on this site." msgstr "El acceso por correo está deshabilitado en esta web." -#: ../../mod/settings.php:785 +#: mod/settings.php:840 msgid "Email/Mailbox Setup" msgstr "Configuración del correo/buzón" -#: ../../mod/settings.php:786 +#: mod/settings.php:841 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón." -#: ../../mod/settings.php:787 +#: mod/settings.php:842 msgid "Last successful email check:" msgstr "Última comprobación del correo con éxito:" -#: ../../mod/settings.php:789 +#: mod/settings.php:844 msgid "IMAP server name:" msgstr "Nombre del servidor IMAP:" -#: ../../mod/settings.php:790 +#: mod/settings.php:845 msgid "IMAP port:" msgstr "Puerto IMAP:" -#: ../../mod/settings.php:791 +#: mod/settings.php:846 msgid "Security:" msgstr "Seguridad:" -#: ../../mod/settings.php:791 ../../mod/settings.php:796 +#: mod/settings.php:846 mod/settings.php:851 msgid "None" msgstr "Ninguna" -#: ../../mod/settings.php:792 +#: mod/settings.php:847 msgid "Email login name:" msgstr "Nombre de usuario:" -#: ../../mod/settings.php:793 +#: mod/settings.php:848 msgid "Email password:" msgstr "Contraseña:" -#: ../../mod/settings.php:794 +#: mod/settings.php:849 msgid "Reply-to address:" msgstr "Dirección de respuesta:" -#: ../../mod/settings.php:795 +#: mod/settings.php:850 msgid "Send public posts to all email contacts:" msgstr "Enviar publicaciones públicas a todos los contactos de correo:" -#: ../../mod/settings.php:796 +#: mod/settings.php:851 msgid "Action after import:" msgstr "Acción después de importar:" -#: ../../mod/settings.php:796 +#: mod/settings.php:851 msgid "Mark as seen" msgstr "Marcar como leído" -#: ../../mod/settings.php:796 +#: mod/settings.php:851 msgid "Move to folder" msgstr "Mover a un directorio" -#: ../../mod/settings.php:797 +#: mod/settings.php:852 msgid "Move to folder:" msgstr "Mover al directorio:" -#: ../../mod/settings.php:878 +#: mod/settings.php:933 msgid "Display Settings" msgstr "Configuración Tema/Visualización" -#: ../../mod/settings.php:884 ../../mod/settings.php:899 +#: mod/settings.php:939 mod/settings.php:955 msgid "Display Theme:" msgstr "Utilizar tema:" -#: ../../mod/settings.php:885 +#: mod/settings.php:940 msgid "Mobile Theme:" msgstr "Tema móvil:" -#: ../../mod/settings.php:886 +#: mod/settings.php:941 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: ../../mod/settings.php:886 +#: mod/settings.php:941 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínimo 10 segundos, sin máximo" -#: ../../mod/settings.php:887 +#: mod/settings.php:942 msgid "Number of items to display per page:" msgstr "Número de elementos a mostrar por página:" -#: ../../mod/settings.php:887 ../../mod/settings.php:888 +#: mod/settings.php:942 mod/settings.php:943 msgid "Maximum of 100 items" msgstr "Máximo 100 elementos" -#: ../../mod/settings.php:888 +#: mod/settings.php:943 msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" +msgstr "Cantidad de objetos a visualizar cuando se usa un movil" -#: ../../mod/settings.php:889 +#: mod/settings.php:944 msgid "Don't show emoticons" msgstr "No mostrar emoticones" -#: ../../mod/settings.php:890 +#: mod/settings.php:945 msgid "Don't show notices" -msgstr "" +msgstr "No mostrara avisos" -#: ../../mod/settings.php:891 +#: mod/settings.php:946 msgid "Infinite scroll" -msgstr "" +msgstr "pagina infinita (sroll)" -#: ../../mod/settings.php:892 +#: mod/settings.php:947 msgid "Automatic updates only at the top of the network page" -msgstr "" +msgstr "Actualizaciones automaticas solo estando al principio de la pagina" -#: ../../mod/settings.php:969 +#: mod/settings.php:949 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Configuración del Tema" + +#: mod/settings.php:1025 msgid "User Types" -msgstr "" +msgstr "Tipos de perfiles" -#: ../../mod/settings.php:970 +#: mod/settings.php:1026 msgid "Community Types" -msgstr "" +msgstr "Tipos de comunidades" -#: ../../mod/settings.php:971 +#: mod/settings.php:1027 msgid "Normal Account Page" msgstr "Página de cuenta normal" -#: ../../mod/settings.php:972 +#: mod/settings.php:1028 msgid "This account is a normal personal profile" msgstr "Esta cuenta es el perfil personal normal" -#: ../../mod/settings.php:975 +#: mod/settings.php:1031 msgid "Soapbox Page" msgstr "Página de tribuna" -#: ../../mod/settings.php:976 +#: mod/settings.php:1032 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura" -#: ../../mod/settings.php:979 +#: mod/settings.php:1035 msgid "Community Forum/Celebrity Account" msgstr "Cuenta de Comunidad, Foro o Celebridad" -#: ../../mod/settings.php:980 +#: mod/settings.php:1036 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de lectura-escritura" -#: ../../mod/settings.php:983 +#: mod/settings.php:1039 msgid "Automatic Friend Page" msgstr "Página de Amistad autómatica" -#: ../../mod/settings.php:984 +#: mod/settings.php:1040 msgid "Automatically approve all connection/friend requests as friends" msgstr "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos" -#: ../../mod/settings.php:987 +#: mod/settings.php:1043 msgid "Private Forum [Experimental]" msgstr "Foro privado [Experimental]" -#: ../../mod/settings.php:988 +#: mod/settings.php:1044 msgid "Private forum - approved members only" msgstr "Foro privado - solo miembros" -#: ../../mod/settings.php:1000 +#: mod/settings.php:1056 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:1000 +#: mod/settings.php:1056 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." -#: ../../mod/settings.php:1010 +#: mod/settings.php:1066 msgid "Publish your default profile in your local site directory?" msgstr "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?" -#: ../../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:1016 +#: mod/settings.php:1072 msgid "Publish your default profile in the global social directory?" msgstr "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?" -#: ../../mod/settings.php:1024 +#: mod/settings.php:1080 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?" -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 +#: mod/settings.php:1084 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?" -#: ../../mod/settings.php:1028 +#: mod/settings.php:1084 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." -msgstr "" +msgstr "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. " -#: ../../mod/settings.php:1033 +#: mod/settings.php:1089 msgid "Allow friends to post to your profile page?" msgstr "¿Permites que tus amigos publiquen en tu página de perfil?" -#: ../../mod/settings.php:1039 +#: mod/settings.php:1095 msgid "Allow friends to tag your posts?" msgstr "¿Permites a los amigos etiquetar tus publicaciones?" -#: ../../mod/settings.php:1045 +#: mod/settings.php:1101 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?" -#: ../../mod/settings.php:1051 +#: mod/settings.php:1107 msgid "Permit unknown people to send you private mail?" msgstr "¿Permites que desconocidos te manden correos privados?" -#: ../../mod/settings.php:1059 +#: mod/settings.php:1115 msgid "Profile is not published." msgstr "El perfil no está publicado." -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Tu dirección personal es" +#: mod/settings.php:1123 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Su dirección de identidad es '%s' o '%s'." -#: ../../mod/settings.php:1078 +#: mod/settings.php:1130 msgid "Automatically expire posts after this many days:" msgstr "Las publicaciones expirarán automáticamente después de estos días:" -#: ../../mod/settings.php:1078 +#: mod/settings.php:1130 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán" -#: ../../mod/settings.php:1079 +#: mod/settings.php:1131 msgid "Advanced expiration settings" msgstr "Configuración avanzada de expiración" -#: ../../mod/settings.php:1080 +#: mod/settings.php:1132 msgid "Advanced Expiration" msgstr "Expiración avanzada" -#: ../../mod/settings.php:1081 +#: mod/settings.php:1133 msgid "Expire posts:" msgstr "¿Expiran las publicaciones?" -#: ../../mod/settings.php:1082 +#: mod/settings.php:1134 msgid "Expire personal notes:" msgstr "¿Expiran las notas personales?" -#: ../../mod/settings.php:1083 +#: mod/settings.php:1135 msgid "Expire starred posts:" msgstr "¿Expiran los favoritos?" -#: ../../mod/settings.php:1084 +#: mod/settings.php:1136 msgid "Expire photos:" msgstr "¿Expiran las fotografías?" -#: ../../mod/settings.php:1085 +#: mod/settings.php:1137 msgid "Only expire posts by others:" msgstr "Solo expiran los mensajes de los demás:" -#: ../../mod/settings.php:1111 +#: mod/settings.php:1163 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../mod/settings.php:1119 +#: mod/settings.php:1171 msgid "Password Settings" msgstr "Configuración de la contraseña" -#: ../../mod/settings.php:1120 +#: mod/settings.php:1172 mod/register.php:271 msgid "New Password:" msgstr "Contraseña nueva:" -#: ../../mod/settings.php:1121 +#: mod/settings.php:1173 mod/register.php:272 msgid "Confirm:" msgstr "Confirmar:" -#: ../../mod/settings.php:1121 +#: mod/settings.php:1173 msgid "Leave password fields blank unless changing" msgstr "Deja la contraseña en blanco si no quieres cambiarla" -#: ../../mod/settings.php:1122 +#: mod/settings.php:1174 msgid "Current Password:" -msgstr "" +msgstr "Contraseña actual:" -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 +#: mod/settings.php:1174 mod/settings.php:1175 msgid "Your current password to confirm the changes" -msgstr "" +msgstr "Su contraseña actual para confirmar los cambios." -#: ../../mod/settings.php:1123 +#: mod/settings.php:1175 msgid "Password:" msgstr "Contraseña:" -#: ../../mod/settings.php:1127 +#: mod/settings.php:1179 msgid "Basic Settings" msgstr "Configuración básica" -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 +#: mod/settings.php:1180 include/identity.php:538 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../mod/settings.php:1129 +#: mod/settings.php:1181 msgid "Email Address:" msgstr "Dirección de correo:" -#: ../../mod/settings.php:1130 +#: mod/settings.php:1182 msgid "Your Timezone:" msgstr "Zona horaria:" -#: ../../mod/settings.php:1131 +#: mod/settings.php:1183 msgid "Default Post Location:" msgstr "Localización predeterminada:" -#: ../../mod/settings.php:1132 +#: mod/settings.php:1184 msgid "Use Browser Location:" msgstr "Usar localización del navegador:" -#: ../../mod/settings.php:1135 +#: mod/settings.php:1187 msgid "Security and Privacy Settings" msgstr "Configuración de seguridad y privacidad" -#: ../../mod/settings.php:1137 +#: mod/settings.php:1189 msgid "Maximum Friend Requests/Day:" msgstr "Máximo número de peticiones de amistad por día:" -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 +#: mod/settings.php:1189 mod/settings.php:1219 msgid "(to prevent spam abuse)" msgstr "(para prevenir el abuso de spam)" -#: ../../mod/settings.php:1138 +#: mod/settings.php:1190 msgid "Default Post Permissions" msgstr "Permisos por defecto para las publicaciones" -#: ../../mod/settings.php:1139 +#: mod/settings.php:1191 msgid "(click to open/close)" msgstr "(pulsa para abrir/cerrar)" -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 +#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 msgid "Show to Groups" msgstr "Mostrar a los Grupos" -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 +#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 msgid "Show to Contacts" msgstr "Mostrar a los Contactos" -#: ../../mod/settings.php:1150 +#: mod/settings.php:1202 msgid "Default Private Post" msgstr "Publicación Privada por defecto" -#: ../../mod/settings.php:1151 +#: mod/settings.php:1203 msgid "Default Public Post" msgstr "Publicación Pública por defecto" -#: ../../mod/settings.php:1155 +#: mod/settings.php:1207 msgid "Default Permissions for New Posts" msgstr "Permisos por defecto para nuevas publicaciones" -#: ../../mod/settings.php:1167 +#: mod/settings.php:1219 msgid "Maximum private messages per day from unknown people:" msgstr "Número máximo de mensajes diarios para desconocidos:" -#: ../../mod/settings.php:1170 +#: mod/settings.php:1222 msgid "Notification Settings" msgstr "Configuración de notificaciones" -#: ../../mod/settings.php:1171 +#: mod/settings.php:1223 msgid "By default post a status message when:" msgstr "Publicar en tu estado cuando:" -#: ../../mod/settings.php:1172 +#: mod/settings.php:1224 msgid "accepting a friend request" msgstr "aceptes una solicitud de amistad" -#: ../../mod/settings.php:1173 +#: mod/settings.php:1225 msgid "joining a forum/community" msgstr "te unas a un foro/comunidad" -#: ../../mod/settings.php:1174 +#: mod/settings.php:1226 msgid "making an interesting profile change" msgstr "hagas un cambio interesante en tu perfil" -#: ../../mod/settings.php:1175 +#: mod/settings.php:1227 msgid "Send a notification email when:" msgstr "Enviar notificación por correo cuando:" -#: ../../mod/settings.php:1176 +#: mod/settings.php:1228 msgid "You receive an introduction" msgstr "Recibas una presentación" -#: ../../mod/settings.php:1177 +#: mod/settings.php:1229 msgid "Your introductions are confirmed" msgstr "Tu presentación sea confirmada" -#: ../../mod/settings.php:1178 +#: mod/settings.php:1230 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en el muro de mi perfil" -#: ../../mod/settings.php:1179 +#: mod/settings.php:1231 msgid "Someone writes a followup comment" msgstr "Algien escriba en un comentario que sigo" -#: ../../mod/settings.php:1180 +#: mod/settings.php:1232 msgid "You receive a private message" msgstr "Recibas un mensaje privado" -#: ../../mod/settings.php:1181 +#: mod/settings.php:1233 msgid "You receive a friend suggestion" msgstr "Recibas una sugerencia de amistad" -#: ../../mod/settings.php:1182 +#: mod/settings.php:1234 msgid "You are tagged in a post" msgstr "Seas etiquetado en una publicación" -#: ../../mod/settings.php:1183 +#: mod/settings.php:1235 msgid "You are poked/prodded/etc. in a post" msgstr "Te han tocado/empujado/etc. en una publicación" -#: ../../mod/settings.php:1185 +#: mod/settings.php:1237 +msgid "Activate desktop notifications" +msgstr "Activar notificaciones en pantalla." + +#: mod/settings.php:1237 +msgid "Show desktop popup on new notifications" +msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." + +#: mod/settings.php:1239 msgid "Text-only notification emails" -msgstr "" +msgstr "Notificaciones e-mail de solo texto" -#: ../../mod/settings.php:1187 +#: mod/settings.php:1241 msgid "Send text only notification emails, without the html part" -msgstr "" +msgstr "Enviar las notificaciones por correo con formato de solo texto sin html." -#: ../../mod/settings.php:1189 +#: mod/settings.php:1243 msgid "Advanced Account/Page Type Settings" msgstr "Configuración avanzada de tipo de Cuenta/Página" -#: ../../mod/settings.php:1190 +#: mod/settings.php:1244 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" -#: ../../mod/settings.php:1193 +#: mod/settings.php:1247 msgid "Relocate" -msgstr "" +msgstr "Relocalizar" -#: ../../mod/settings.php:1194 +#: mod/settings.php:1248 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 "" +msgstr "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)" -#: ../../mod/settings.php:1195 +#: mod/settings.php:1249 msgid "Resend relocate message to contacts" -msgstr "" +msgstr "Reenviar mensaje de relocalización a los contactos" -#: ../../mod/dfrn_request.php:95 +#: mod/dfrn_request.php:95 msgid "This introduction has already been accepted." msgstr "Esta presentación ya ha sido aceptada." -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 msgid "Profile location is not valid or does not contain profile information." msgstr "La dirección del perfil no es válida o no contiene información del perfil." -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 msgid "Warning: profile location has no identifiable owner name." msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 msgid "Warning: profile location has no profile photo." msgstr "Aviso: la dirección del perfil no tiene foto de perfil." -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: 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] "no se encontró %d parámetro requerido en el lugar determinado" msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" -#: ../../mod/dfrn_request.php:172 +#: mod/dfrn_request.php:172 msgid "Introduction complete." msgstr "Presentación completa." -#: ../../mod/dfrn_request.php:214 +#: mod/dfrn_request.php:214 msgid "Unrecoverable protocol error." msgstr "Error de protocolo irrecuperable." -#: ../../mod/dfrn_request.php:242 +#: mod/dfrn_request.php:242 msgid "Profile unavailable." msgstr "Perfil no disponible." -#: ../../mod/dfrn_request.php:267 +#: mod/dfrn_request.php:267 #, php-format msgid "%s has received too many connection requests today." msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." -#: ../../mod/dfrn_request.php:268 +#: mod/dfrn_request.php:268 msgid "Spam protection measures have been invoked." msgstr "Han sido activadas las medidas de protección contra spam." -#: ../../mod/dfrn_request.php:269 +#: mod/dfrn_request.php:269 msgid "Friends are advised to please try again in 24 hours." msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." -#: ../../mod/dfrn_request.php:331 +#: mod/dfrn_request.php:331 msgid "Invalid locator" msgstr "Localizador no válido" -#: ../../mod/dfrn_request.php:340 +#: mod/dfrn_request.php:340 msgid "Invalid email address." msgstr "Dirección de correo incorrecta" -#: ../../mod/dfrn_request.php:367 +#: mod/dfrn_request.php:367 msgid "This account has not been configured for email. Request failed." msgstr "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud." -#: ../../mod/dfrn_request.php:463 +#: mod/dfrn_request.php:463 msgid "Unable to resolve your name at the provided location." msgstr "No se ha podido resolver tu nombre en la dirección indicada." -#: ../../mod/dfrn_request.php:476 +#: mod/dfrn_request.php:476 msgid "You have already introduced yourself here." msgstr "Ya te has presentado aquí." -#: ../../mod/dfrn_request.php:480 +#: mod/dfrn_request.php:480 #, php-format msgid "Apparently you are already friends with %s." msgstr "Al parecer, ya eres amigo de %s." -#: ../../mod/dfrn_request.php:501 +#: mod/dfrn_request.php:501 msgid "Invalid profile URL." msgstr "Dirección de perfil no válida." -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +#: mod/dfrn_request.php:507 include/follow.php:70 msgid "Disallowed profile URL." msgstr "Dirección de perfil no permitida." -#: ../../mod/dfrn_request.php:597 +#: mod/dfrn_request.php:597 msgid "Your introduction has been sent." msgstr "Tu presentación ha sido enviada." -#: ../../mod/dfrn_request.php:650 +#: mod/dfrn_request.php:650 msgid "Please login to confirm introduction." msgstr "Inicia sesión para confirmar la presentación." -#: ../../mod/dfrn_request.php:660 +#: mod/dfrn_request.php:660 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." -#: ../../mod/dfrn_request.php:671 +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Confirmar" + +#: mod/dfrn_request.php:686 msgid "Hide this contact" msgstr "Ocultar este contacto" -#: ../../mod/dfrn_request.php:674 +#: mod/dfrn_request.php:689 #, php-format msgid "Welcome home %s." msgstr "Bienvenido a casa %s" -#: ../../mod/dfrn_request.php:675 +#: mod/dfrn_request.php:690 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Confirmar" - -#: ../../mod/dfrn_request.php:804 +#: mod/dfrn_request.php:819 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:" -#: ../../mod/dfrn_request.php:824 +#: mod/dfrn_request.php:840 +#, php-format msgid "" "If you are not yet a member of the free social web,
    follow this link to find a public" -" Friendica site and join us today." -msgstr "Si aún no eres miembro de la red social libre sigue este enlace para encontrar un servidor público de Friendica y unirte a nosotros." +"href=\"%s/siteinfo\">follow this link to find a public Friendica site and " +"join us today." +msgstr "Si aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo" -#: ../../mod/dfrn_request.php:827 +#: mod/dfrn_request.php:845 msgid "Friend/Connection Request" msgstr "Solicitud de Amistad/Conexión" -#: ../../mod/dfrn_request.php:828 +#: mod/dfrn_request.php:846 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Por favor responde lo siguiente:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "¿%s te conoce?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Añade una nota personal:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 msgid "Friendica" msgstr "Friendica" -#: ../../mod/dfrn_request.php:837 +#: mod/dfrn_request.php:855 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Web Social Federada" -#: ../../mod/dfrn_request.php:839 +#: mod/dfrn_request.php:857 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search" " bar." msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora." -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Dirección de tu perfil:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Enviar solicitud" - -#: ../../mod/register.php:90 +#: mod/register.php:92 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." -#: ../../mod/register.php:96 +#: mod/register.php:97 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." -msgstr "" +msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
    login: %s
    contraseña: %s

    Puede cambiar su contraseña después de ingresar al sitio." -#: ../../mod/register.php:105 +#: mod/register.php:107 msgid "Your registration can not be processed." msgstr "Tu registro no se puede procesar." -#: ../../mod/register.php:148 +#: mod/register.php:150 msgid "Your registration is pending approval by the site owner." msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." -#: ../../mod/register.php:186 ../../mod/uimport.php:50 +#: mod/register.php:188 mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." -#: ../../mod/register.php:214 +#: mod/register.php:216 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"." -#: ../../mod/register.php:215 +#: mod/register.php:217 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." -#: ../../mod/register.php:216 +#: mod/register.php:218 msgid "Your OpenID (optional): " msgstr "Tu OpenID (opcional):" -#: ../../mod/register.php:230 +#: mod/register.php:232 msgid "Include your profile in member directory?" msgstr "¿Incluir tu perfil en el directorio de miembros?" -#: ../../mod/register.php:251 +#: mod/register.php:256 msgid "Membership on this site is by invitation only." msgstr "Sitio solo accesible mediante invitación." -#: ../../mod/register.php:252 +#: mod/register.php:257 msgid "Your invitation ID: " msgstr "ID de tu invitación: " -#: ../../mod/register.php:263 +#: mod/register.php:268 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Tu nombre completo (por ejemplo, Manuel Pérez): " -#: ../../mod/register.php:264 +#: mod/register.php:269 msgid "Your Email Address: " msgstr "Tu dirección de correo: " -#: ../../mod/register.php:265 +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Dejar vacío para autogenerar una contraseña" + +#: mod/register.php:273 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@$nombredelsitio\"." -#: ../../mod/register.php:266 +#: mod/register.php:274 msgid "Choose a nickname: " msgstr "Escoge un apodo: " -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 +#: mod/register.php:277 boot.php:1248 include/nav.php:109 msgid "Register" msgstr "Registrarse" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 +#: mod/register.php:283 mod/uimport.php:64 msgid "Import" msgstr "Importar" -#: ../../mod/register.php:276 +#: mod/register.php:284 msgid "Import your profile to this friendica instance" -msgstr "" +msgstr "Importar tu perfil a esta instancia de friendica" -#: ../../mod/maintenance.php:5 +#: mod/maintenance.php:5 msgid "System down for maintenance" msgstr "Servicio suspendido por mantenimiento" -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 +#: mod/search.php:100 include/text.php:996 include/nav.php:119 msgid "Search" msgstr "Buscar" -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +#: mod/search.php:198 +#, php-format +msgid "Items tagged with: %s" +msgstr "Objetos taggeado con: %s" + +#: mod/search.php:200 +#, php-format +msgid "Search results for: %s" +msgstr "Resultados de búsqueda para: %s" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 msgid "Global Directory" msgstr "Directorio global" -#: ../../mod/directory.php:59 +#: mod/directory.php:61 msgid "Find on this site" msgstr "Buscar en este sitio" -#: ../../mod/directory.php:62 +#: mod/directory.php:64 msgid "Site Directory" msgstr "Directorio del sitio" -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 +#: mod/directory.php:129 mod/profiles.php:747 msgid "Age: " msgstr "Edad: " -#: ../../mod/directory.php:116 +#: mod/directory.php:132 msgid "Gender: " msgstr "Género:" -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Género:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 msgid "Status:" msgstr "Estado:" -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 msgid "Homepage:" msgstr "Página de inicio:" -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Acerca de:" - -#: ../../mod/directory.php:189 +#: mod/directory.php:205 msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas pueden que estén ocultas)." -#: ../../mod/delegate.php:101 +#: mod/delegate.php:101 msgid "No potential page delegates located." msgstr "No se han localizado delegados potenciales de la página." -#: ../../mod/delegate.php:130 ../../include/nav.php:170 +#: mod/delegate.php:130 include/nav.php:179 msgid "Delegate Page Management" msgstr "Delegar la administración de la página" -#: ../../mod/delegate.php:132 +#: 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 "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." -#: ../../mod/delegate.php:133 +#: mod/delegate.php:133 msgid "Existing Page Managers" msgstr "Administradores actuales de la página" -#: ../../mod/delegate.php:135 +#: mod/delegate.php:135 msgid "Existing Page Delegates" msgstr "Delegados actuales de la página" -#: ../../mod/delegate.php:137 +#: mod/delegate.php:137 msgid "Potential Delegates" msgstr "Delegados potenciales" -#: ../../mod/delegate.php:140 +#: mod/delegate.php:140 msgid "Add" msgstr "Añadir" -#: ../../mod/delegate.php:141 +#: mod/delegate.php:141 msgid "No entries." msgstr "Sin entradas." -#: ../../mod/common.php:42 +#: mod/common.php:45 msgid "Common Friends" msgstr "Amigos comunes" -#: ../../mod/common.php:78 +#: mod/common.php:82 msgid "No contacts in common." msgstr "Sin contactos en común." -#: ../../mod/uexport.php:77 +#: mod/uexport.php:77 msgid "Export account" msgstr "Exportar cuenta" -#: ../../mod/uexport.php:77 +#: 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 "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." -#: ../../mod/uexport.php:78 +#: mod/uexport.php:78 msgid "Export all" msgstr "Exportar todo" -#: ../../mod/uexport.php:78 +#: 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 "Exporta la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)" -#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#: mod/mood.php:62 include/conversation.php:226 #, php-format msgid "%1$s is currently %2$s" msgstr "%1$s está actualmente %2$s" -#: ../../mod/mood.php:133 +#: mod/mood.php:133 msgid "Mood" msgstr "Ánimo" -#: ../../mod/mood.php:134 +#: mod/mood.php:134 msgid "Set your current mood and tell your friends" msgstr "Coloca tu ánimo actual y cuéntaselo a tus amigos" -#: ../../mod/suggest.php:27 +#: mod/suggest.php:27 msgid "Do you really want to delete this suggestion?" msgstr "¿Estás seguro de que quieres borrar esta sugerencia?" -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 msgid "Friend Suggestions" msgstr "Sugerencias de amigos" -#: ../../mod/suggest.php:74 +#: mod/suggest.php:76 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." -#: ../../mod/suggest.php:92 +#: mod/suggest.php:94 msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" -#: ../../mod/profiles.php:37 +#: mod/profiles.php:37 msgid "Profile deleted." msgstr "Perfil eliminado." -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +#: mod/profiles.php:55 mod/profiles.php:89 msgid "Profile-" msgstr "Perfil-" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +#: mod/profiles.php:74 mod/profiles.php:117 msgid "New profile created." msgstr "Nuevo perfil creado." -#: ../../mod/profiles.php:95 +#: mod/profiles.php:95 msgid "Profile unavailable to clone." msgstr "Imposible duplicar el perfil." -#: ../../mod/profiles.php:189 +#: mod/profiles.php:189 msgid "Profile Name is required." msgstr "Se necesita un nombre de perfil." -#: ../../mod/profiles.php:340 +#: mod/profiles.php:336 msgid "Marital Status" msgstr "Estado civil" -#: ../../mod/profiles.php:344 +#: mod/profiles.php:340 msgid "Romantic Partner" msgstr "Pareja sentimental" -#: ../../mod/profiles.php:348 +#: mod/profiles.php:344 msgid "Likes" msgstr "Me gusta" -#: ../../mod/profiles.php:352 +#: mod/profiles.php:348 msgid "Dislikes" msgstr "No me gusta" -#: ../../mod/profiles.php:356 +#: mod/profiles.php:352 msgid "Work/Employment" msgstr "Trabajo/estudios" -#: ../../mod/profiles.php:359 +#: mod/profiles.php:355 msgid "Religion" msgstr "Religión" -#: ../../mod/profiles.php:363 +#: mod/profiles.php:359 msgid "Political Views" msgstr "Preferencias políticas" -#: ../../mod/profiles.php:367 +#: mod/profiles.php:363 msgid "Gender" msgstr "Género" -#: ../../mod/profiles.php:371 +#: mod/profiles.php:367 msgid "Sexual Preference" msgstr "Orientación sexual" -#: ../../mod/profiles.php:375 +#: mod/profiles.php:371 msgid "Homepage" msgstr "Página de inicio" -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +#: mod/profiles.php:375 mod/profiles.php:695 msgid "Interests" msgstr "Intereses" -#: ../../mod/profiles.php:383 +#: mod/profiles.php:379 msgid "Address" msgstr "Dirección" -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +#: mod/profiles.php:386 mod/profiles.php:691 msgid "Location" msgstr "Ubicación" -#: ../../mod/profiles.php:473 +#: mod/profiles.php:469 msgid "Profile updated." msgstr "Perfil actualizado." -#: ../../mod/profiles.php:568 +#: mod/profiles.php:565 msgid " and " msgstr " y " -#: ../../mod/profiles.php:576 +#: mod/profiles.php:573 msgid "public profile" msgstr "perfil público" -#: ../../mod/profiles.php:579 +#: mod/profiles.php:576 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s cambió su %2$s a “%3$s”" -#: ../../mod/profiles.php:580 +#: mod/profiles.php:577 #, php-format msgid " - Visit %1$s's %2$s" msgstr " - Visita %1$s's %2$s" -#: ../../mod/profiles.php:583 +#: mod/profiles.php:580 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s tiene una actualización %2$s, cambiando %3$s." -#: ../../mod/profiles.php:658 +#: mod/profiles.php:655 msgid "Hide contacts and friends:" -msgstr "" +msgstr "Ocultar contactos y amigos" -#: ../../mod/profiles.php:663 +#: mod/profiles.php:660 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?" -#: ../../mod/profiles.php:685 +#: mod/profiles.php:682 msgid "Edit Profile Details" msgstr "Editar detalles de tu perfil" -#: ../../mod/profiles.php:687 +#: mod/profiles.php:684 msgid "Change Profile Photo" msgstr "Cambiar imagen del Perfil" -#: ../../mod/profiles.php:688 +#: mod/profiles.php:685 msgid "View this profile" msgstr "Ver este perfil" -#: ../../mod/profiles.php:689 +#: mod/profiles.php:686 msgid "Create a new profile using these settings" msgstr "¿Crear un nuevo perfil con esta configuración?" -#: ../../mod/profiles.php:690 +#: mod/profiles.php:687 msgid "Clone this profile" msgstr "Clonar este perfil" -#: ../../mod/profiles.php:691 +#: mod/profiles.php:688 msgid "Delete this profile" msgstr "Eliminar este perfil" -#: ../../mod/profiles.php:692 +#: mod/profiles.php:689 msgid "Basic information" -msgstr "" +msgstr "Información básica" -#: ../../mod/profiles.php:693 +#: mod/profiles.php:690 msgid "Profile picture" -msgstr "" +msgstr "Imagen del perfil" -#: ../../mod/profiles.php:695 +#: mod/profiles.php:692 msgid "Preferences" -msgstr "" +msgstr "Preferencias" -#: ../../mod/profiles.php:696 +#: mod/profiles.php:693 msgid "Status information" -msgstr "" +msgstr "Información del estatus" -#: ../../mod/profiles.php:697 +#: mod/profiles.php:694 msgid "Additional information" -msgstr "" +msgstr "Información addicional" -#: ../../mod/profiles.php:700 +#: mod/profiles.php:697 msgid "Profile Name:" msgstr "Nombres del perfil:" -#: ../../mod/profiles.php:701 +#: mod/profiles.php:698 msgid "Your Full Name:" msgstr "Tu nombre completo:" -#: ../../mod/profiles.php:702 +#: mod/profiles.php:699 msgid "Title/Description:" msgstr "Título/Descrición:" -#: ../../mod/profiles.php:703 +#: mod/profiles.php:700 msgid "Your Gender:" msgstr "Género:" -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Cumpleaños (%s):" +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "Día de nacimiento:" -#: ../../mod/profiles.php:705 +#: mod/profiles.php:702 msgid "Street Address:" msgstr "Dirección" -#: ../../mod/profiles.php:706 +#: mod/profiles.php:703 msgid "Locality/City:" msgstr "Localidad/Ciudad:" -#: ../../mod/profiles.php:707 +#: mod/profiles.php:704 msgid "Postal/Zip Code:" msgstr "Código postal:" -#: ../../mod/profiles.php:708 +#: mod/profiles.php:705 msgid "Country:" msgstr "País" -#: ../../mod/profiles.php:709 +#: mod/profiles.php:706 msgid "Region/State:" msgstr "Región/Estado:" -#: ../../mod/profiles.php:710 +#: mod/profiles.php:707 msgid " Marital Status:" msgstr " Estado civil:" -#: ../../mod/profiles.php:711 +#: mod/profiles.php:708 msgid "Who: (if applicable)" msgstr "¿Quién? (si es aplicable)" -#: ../../mod/profiles.php:712 +#: mod/profiles.php:709 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Ejemplos: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/profiles.php:713 +#: mod/profiles.php:710 msgid "Since [date]:" msgstr "Desde [fecha]:" -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 +#: mod/profiles.php:711 include/identity.php:569 msgid "Sexual Preference:" msgstr "Preferencia sexual:" -#: ../../mod/profiles.php:715 +#: mod/profiles.php:712 msgid "Homepage URL:" msgstr "Dirección de tu página:" -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 +#: mod/profiles.php:713 include/identity.php:573 msgid "Hometown:" msgstr "Ciudad de origen:" -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 +#: mod/profiles.php:714 include/identity.php:577 msgid "Political Views:" msgstr "Ideas políticas:" -#: ../../mod/profiles.php:718 +#: mod/profiles.php:715 msgid "Religious Views:" msgstr "Creencias religiosas:" -#: ../../mod/profiles.php:719 +#: mod/profiles.php:716 msgid "Public Keywords:" msgstr "Palabras clave públicas:" -#: ../../mod/profiles.php:720 +#: mod/profiles.php:717 msgid "Private Keywords:" msgstr "Palabras clave privadas:" -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 +#: mod/profiles.php:718 include/identity.php:585 msgid "Likes:" msgstr "Me gusta:" -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 +#: mod/profiles.php:719 include/identity.php:587 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../mod/profiles.php:723 +#: mod/profiles.php:720 msgid "Example: fishing photography software" msgstr "Ejemplo: pesca fotografía software" -#: ../../mod/profiles.php:724 +#: mod/profiles.php:721 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" -#: ../../mod/profiles.php:725 +#: mod/profiles.php:722 msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" -#: ../../mod/profiles.php:726 +#: mod/profiles.php:723 msgid "Tell us about yourself..." msgstr "Háblanos sobre ti..." -#: ../../mod/profiles.php:727 +#: mod/profiles.php:724 msgid "Hobbies/Interests" msgstr "Aficiones/Intereses" -#: ../../mod/profiles.php:728 +#: mod/profiles.php:725 msgid "Contact information and Social Networks" msgstr "Informacioń de contacto y Redes sociales" -#: ../../mod/profiles.php:729 +#: mod/profiles.php:726 msgid "Musical interests" msgstr "Gustos musicales" -#: ../../mod/profiles.php:730 +#: mod/profiles.php:727 msgid "Books, literature" msgstr "Libros, literatura" -#: ../../mod/profiles.php:731 +#: mod/profiles.php:728 msgid "Television" msgstr "Televisión" -#: ../../mod/profiles.php:732 +#: mod/profiles.php:729 msgid "Film/dance/culture/entertainment" msgstr "Películas/baile/cultura/entretenimiento" -#: ../../mod/profiles.php:733 +#: mod/profiles.php:730 msgid "Love/romance" msgstr "Amor/Romance" -#: ../../mod/profiles.php:734 +#: mod/profiles.php:731 msgid "Work/employment" msgstr "Trabajo/ocupación" -#: ../../mod/profiles.php:735 +#: mod/profiles.php:732 msgid "School/education" msgstr "Escuela/estudios" -#: ../../mod/profiles.php:740 +#: mod/profiles.php:737 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "Éste es tu perfil público.
    Puede ser visto por cualquier usuario de internet." -#: ../../mod/profiles.php:803 +#: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "Editar/Administrar perfiles" -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 msgid "Change profile photo" msgstr "Cambiar foto del perfil" -#: ../../mod/profiles.php:805 ../../boot.php:1612 +#: mod/profiles.php:802 include/identity.php:232 msgid "Create New Profile" msgstr "Crear nuevo perfil" -#: ../../mod/profiles.php:816 ../../boot.php:1622 +#: mod/profiles.php:813 include/identity.php:242 msgid "Profile Image" msgstr "Imagen del Perfil" -#: ../../mod/profiles.php:818 ../../boot.php:1625 +#: mod/profiles.php:815 include/identity.php:245 msgid "visible to everybody" msgstr "Visible para todos" -#: ../../mod/profiles.php:819 ../../boot.php:1626 +#: mod/profiles.php:816 include/identity.php:246 msgid "Edit visibility" msgstr "Editar visibilidad" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +#: mod/editpost.php:17 mod/editpost.php:27 msgid "Item not found" msgstr "Elemento no encontrado" -#: ../../mod/editpost.php:39 +#: mod/editpost.php:40 msgid "Edit post" msgstr "Editar publicación" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 +#: mod/editpost.php:111 include/conversation.php:1057 msgid "upload photo" msgstr "subir imagen" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 +#: mod/editpost.php:112 include/conversation.php:1058 msgid "Attach file" msgstr "Adjuntar archivo" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 +#: mod/editpost.php:113 include/conversation.php:1059 msgid "attach file" msgstr "adjuntar archivo" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 +#: mod/editpost.php:115 include/conversation.php:1061 msgid "web link" msgstr "enlace web" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 +#: mod/editpost.php:116 include/conversation.php:1062 msgid "Insert video link" msgstr "Insertar enlace del vídeo" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 +#: mod/editpost.php:117 include/conversation.php:1063 msgid "video link" msgstr "enlace de video" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 +#: mod/editpost.php:118 include/conversation.php:1064 msgid "Insert audio link" msgstr "Insertar vínculo del audio" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 +#: mod/editpost.php:119 include/conversation.php:1065 msgid "audio link" msgstr "enlace de audio" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 +#: mod/editpost.php:120 include/conversation.php:1066 msgid "Set your location" msgstr "Configurar tu localización" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 +#: mod/editpost.php:121 include/conversation.php:1067 msgid "set location" msgstr "establecer tu ubicación" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 +#: mod/editpost.php:122 include/conversation.php:1068 msgid "Clear browser location" msgstr "Borrar la localización del navegador" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 +#: mod/editpost.php:123 include/conversation.php:1069 msgid "clear location" msgstr "limpiar la localización" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 +#: mod/editpost.php:125 include/conversation.php:1075 msgid "Permission settings" msgstr "Configuración de permisos" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 +#: mod/editpost.php:133 include/acl_selectors.php:343 msgid "CC: email addresses" msgstr "CC: dirección de correo electrónico" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 +#: mod/editpost.php:134 include/conversation.php:1084 msgid "Public post" msgstr "Publicación pública" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +#: mod/editpost.php:137 include/conversation.php:1071 msgid "Set title" msgstr "Establecer el título" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +#: mod/editpost.php:139 include/conversation.php:1073 msgid "Categories (comma-separated list)" msgstr "Categorías (lista separada por comas)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 +#: mod/editpost.php:140 include/acl_selectors.php:344 msgid "Example: bob@example.com, mary@example.com" msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" -#: ../../mod/friendica.php:59 +#: mod/friendica.php:59 msgid "This is Friendica, version" msgstr "Esto es Friendica, versión" -#: ../../mod/friendica.php:60 +#: mod/friendica.php:60 msgid "running at web location" msgstr "ejecutándose en la dirección web" -#: ../../mod/friendica.php:62 +#: mod/friendica.php:62 msgid "" "Please visit Friendica.com to learn " "more about the Friendica project." msgstr "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica." -#: ../../mod/friendica.php:64 +#: mod/friendica.php:64 msgid "Bug reports and issues: please visit" msgstr "Reporte de fallos y problemas: por favor visita" -#: ../../mod/friendica.php:65 +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "aviso de fallas (bugs) en github" + +#: mod/friendica.php:65 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" msgstr "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com" -#: ../../mod/friendica.php:79 +#: mod/friendica.php:79 msgid "Installed plugins/addons/apps:" msgstr "Módulos/extensiones/aplicaciones instalados:" -#: ../../mod/friendica.php:92 +#: mod/friendica.php:92 msgid "No installed plugins/addons/apps" msgstr "Módulos/extensiones/aplicaciones no instalados" -#: ../../mod/api.php:76 ../../mod/api.php:102 +#: mod/api.php:76 mod/api.php:102 msgid "Authorize application connection" msgstr "Autorizar la conexión de la aplicación" -#: ../../mod/api.php:77 +#: mod/api.php:77 msgid "Return to your app and insert this Securty Code:" msgstr "Regresa a tu aplicación e introduce este código de seguridad:" -#: ../../mod/api.php:89 +#: mod/api.php:89 msgid "Please login to continue." msgstr "Inicia sesión para continuar." -#: ../../mod/api.php:104 +#: 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 "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +#: mod/lockview.php:31 mod/lockview.php:39 msgid "Remote privacy information not available." msgstr "Privacidad de la información remota no disponible." -#: ../../mod/lockview.php:48 +#: mod/lockview.php:48 msgid "Visible to:" msgstr "Visible para:" -#: ../../mod/notes.php:44 ../../boot.php:2150 +#: mod/notes.php:44 include/identity.php:675 msgid "Personal Notes" msgstr "Notas personales" -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: ../../mod/localtime.php:24 +#: mod/localtime.php:24 msgid "Time Conversion" msgstr "Conversión horária" -#: ../../mod/localtime.php:26 +#: mod/localtime.php:26 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." -msgstr "" +msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos." -#: ../../mod/localtime.php:30 +#: mod/localtime.php:30 #, php-format msgid "UTC time: %s" msgstr "Tiempo UTC: %s" -#: ../../mod/localtime.php:33 +#: mod/localtime.php:33 #, php-format msgid "Current timezone: %s" msgstr "Zona horaria actual: %s" -#: ../../mod/localtime.php:36 +#: mod/localtime.php:36 #, php-format msgid "Converted localtime: %s" msgstr "Zona horaria local convertida: %s" -#: ../../mod/localtime.php:41 +#: mod/localtime.php:41 msgid "Please select your timezone:" msgstr "Por favor, selecciona tu zona horaria:" -#: ../../mod/poke.php:192 +#: mod/poke.php:192 msgid "Poke/Prod" msgstr "Toque/Empujón" -#: ../../mod/poke.php:193 +#: mod/poke.php:193 msgid "poke, prod or do other things to somebody" msgstr "da un toque, empujón o similar a alguien" -#: ../../mod/poke.php:194 +#: mod/poke.php:194 msgid "Recipient" msgstr "Receptor" -#: ../../mod/poke.php:195 +#: mod/poke.php:195 msgid "Choose what you wish to do to recipient" msgstr "Elige qué desea hacer con el receptor" -#: ../../mod/poke.php:198 +#: mod/poke.php:198 msgid "Make this post private" msgstr "Hacer esta publicación privada" -#: ../../mod/invite.php:27 +#: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "Límite total de invitaciones excedido." -#: ../../mod/invite.php:49 +#: mod/invite.php:49 #, php-format msgid "%s : Not a valid email address." msgstr "%s : No es una dirección de correo válida." -#: ../../mod/invite.php:73 +#: mod/invite.php:73 msgid "Please join us on Friendica" msgstr "Únete a nosotros en Friendica" -#: ../../mod/invite.php:84 +#: mod/invite.php:84 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." -#: ../../mod/invite.php:89 +#: mod/invite.php:89 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Ha fallado la entrega del mensaje." -#: ../../mod/invite.php:93 +#: mod/invite.php:93 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d mensaje enviado." msgstr[1] "%d mensajes enviados." -#: ../../mod/invite.php:112 +#: mod/invite.php:112 msgid "You have no more invitations available" msgstr "No tienes más invitaciones disponibles" -#: ../../mod/invite.php:120 +#: mod/invite.php:120 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -5253,14 +5448,14 @@ msgid "" " other social networks." msgstr "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." -#: ../../mod/invite.php:122 +#: mod/invite.php:122 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." -#: ../../mod/invite.php:123 +#: mod/invite.php:123 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -5269,446 +5464,368 @@ msgid "" "sites you can join." msgstr "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." -#: ../../mod/invite.php:126 +#: mod/invite.php:126 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." -#: ../../mod/invite.php:132 +#: mod/invite.php:132 msgid "Send invitations" msgstr "Enviar invitaciones" -#: ../../mod/invite.php:133 +#: mod/invite.php:133 msgid "Enter email addresses, one per line:" msgstr "Introduce las direcciones de correo, una por línea:" -#: ../../mod/invite.php:135 +#: 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 cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." -#: ../../mod/invite.php:137 +#: mod/invite.php:137 msgid "You will need to supply this invitation code: $invite_code" msgstr "Tienes que proporcionar el siguiente código: $invite_code" -#: ../../mod/invite.php:137 +#: mod/invite.php:137 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" -#: ../../mod/invite.php:139 +#: 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 "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com" -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Álbum de Fotos" - -#: ../../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 +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "Foto del contacto" -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +#: mod/photos.php:84 include/identity.php:651 +msgid "Photo Albums" +msgstr "Álbum de Fotos" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../mod/photos.php:144 +#: mod/photos.php:166 msgid "Contact information unavailable" msgstr "Información del contacto no disponible" -#: ../../mod/photos.php:165 +#: mod/photos.php:187 msgid "Album not found." msgstr "Álbum no encontrado." -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 msgid "Delete Album" msgstr "Eliminar álbum" -#: ../../mod/photos.php:198 +#: mod/photos.php:220 msgid "Do you really want to delete this photo album and all its photos?" msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 msgid "Delete Photo" msgstr "Eliminar foto" -#: ../../mod/photos.php:287 +#: mod/photos.php:309 msgid "Do you really want to delete this photo?" msgstr "¿Estás seguro de que quieres borrar esta foto?" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s fue etiquetado en %2$s por %3$s" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 msgid "a photo" msgstr "una foto" -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "La imagen supera tamaño límite de " - -#: ../../mod/photos.php:775 +#: mod/photos.php:797 msgid "Image file is empty." msgstr "El archivo de imagen está vacío." -#: ../../mod/photos.php:930 +#: mod/photos.php:952 msgid "No photos selected" msgstr "Ninguna foto seleccionada" -#: ../../mod/photos.php:1094 +#: mod/photos.php:1114 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos." -#: ../../mod/photos.php:1129 +#: mod/photos.php:1149 msgid "Upload Photos" msgstr "Subir fotos" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +#: mod/photos.php:1153 mod/photos.php:1219 msgid "New album name: " msgstr "Nombre del nuevo álbum: " -#: ../../mod/photos.php:1134 +#: mod/photos.php:1154 msgid "or existing album name: " msgstr "o nombre de un álbum existente: " -#: ../../mod/photos.php:1135 +#: mod/photos.php:1155 msgid "Do not show a status post for this upload" msgstr "No actualizar tu estado con este envío" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 msgid "Permissions" msgstr "Permisos" -#: ../../mod/photos.php:1148 +#: mod/photos.php:1168 msgid "Private Photo" msgstr "Foto Privada" -#: ../../mod/photos.php:1149 +#: mod/photos.php:1169 msgid "Public Photo" msgstr "Foto Pública" -#: ../../mod/photos.php:1212 +#: mod/photos.php:1232 msgid "Edit Album" msgstr "Modificar álbum" -#: ../../mod/photos.php:1218 +#: mod/photos.php:1238 msgid "Show Newest First" msgstr "Mostrar más nuevos primero" -#: ../../mod/photos.php:1220 +#: mod/photos.php:1240 msgid "Show Oldest First" msgstr "Mostrar más antiguos primero" -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +#: mod/photos.php:1268 mod/photos.php:1821 msgid "View Photo" msgstr "Ver foto" -#: ../../mod/photos.php:1294 +#: mod/photos.php:1314 msgid "Permission denied. Access to this item may be restricted." msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: ../../mod/photos.php:1296 +#: mod/photos.php:1316 msgid "Photo not available" msgstr "Foto no disponible" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "View photo" msgstr "Ver foto" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "Edit photo" msgstr "Modificar foto" -#: ../../mod/photos.php:1353 +#: mod/photos.php:1373 msgid "Use as profile photo" msgstr "Usar como foto del perfil" -#: ../../mod/photos.php:1378 +#: mod/photos.php:1398 msgid "View Full Size" msgstr "Ver a tamaño completo" -#: ../../mod/photos.php:1457 +#: mod/photos.php:1477 msgid "Tags: " msgstr "Etiquetas: " -#: ../../mod/photos.php:1460 +#: mod/photos.php:1480 msgid "[Remove any tag]" msgstr "[Borrar todas las etiquetas]" -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Girar a la derecha" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Girar a la izquierda" - -#: ../../mod/photos.php:1503 +#: mod/photos.php:1520 msgid "New album name" msgstr "Nuevo nombre del álbum" -#: ../../mod/photos.php:1506 +#: mod/photos.php:1521 msgid "Caption" msgstr "Título" -#: ../../mod/photos.php:1508 +#: mod/photos.php:1522 msgid "Add a Tag" msgstr "Añadir una etiqueta" -#: ../../mod/photos.php:1512 +#: mod/photos.php:1522 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" -#: ../../mod/photos.php:1521 +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "No rotar" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Girar a la derecha" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Girar a la izquierda" + +#: mod/photos.php:1540 msgid "Private photo" msgstr "Foto privada" -#: ../../mod/photos.php:1522 +#: mod/photos.php:1541 msgid "Public photo" msgstr "Foto pública" -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 +#: mod/photos.php:1563 include/conversation.php:1055 msgid "Share" msgstr "Compartir" -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Fotos recientes" +#: mod/p.php:9 +msgid "Not Extended" +msgstr "No extendido" -#: ../../mod/regmod.php:55 +#: mod/regmod.php:55 msgid "Account approved." msgstr "Cuenta aprobada." -#: ../../mod/regmod.php:92 +#: mod/regmod.php:92 #, php-format msgid "Registration revoked for %s" msgstr "Registro anulado para %s" -#: ../../mod/regmod.php:104 +#: mod/regmod.php:104 msgid "Please login." msgstr "Por favor accede." -#: ../../mod/uimport.php:66 +#: mod/uimport.php:66 msgid "Move account" msgstr "Mover cuenta" -#: ../../mod/uimport.php:67 +#: mod/uimport.php:67 msgid "You can import an account from another Friendica server." msgstr "Puedes importar una cuenta desde otro servidor de Friendica." -#: ../../mod/uimport.php:68 +#: 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 "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." -#: ../../mod/uimport.php:69 +#: 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 "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora" -#: ../../mod/uimport.php:70 +#: mod/uimport.php:70 msgid "Account file" msgstr "Archivo de la cuenta" -#: ../../mod/uimport.php:70 +#: mod/uimport.php:70 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" -msgstr "" +msgstr "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" -#: ../../mod/attach.php:8 +#: mod/attach.php:8 msgid "Item not available." msgstr "Elemento no disponible." -#: ../../mod/attach.php:20 +#: mod/attach.php:20 msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../boot.php:749 +#: boot.php:763 msgid "Delete this item?" msgstr "¿Eliminar este elemento?" -#: ../../boot.php:752 +#: boot.php:766 msgid "show fewer" msgstr "ver menos" -#: ../../boot.php:1122 +#: boot.php:1140 #, php-format msgid "Update %s failed. See error logs." msgstr "Falló la actualización de %s. Mira los registros de errores." -#: ../../boot.php:1240 +#: boot.php:1247 msgid "Create a New Account" msgstr "Crear una nueva cuenta" -#: ../../boot.php:1265 ../../include/nav.php:73 +#: boot.php:1272 include/nav.php:73 msgid "Logout" msgstr "Salir" -#: ../../boot.php:1268 +#: boot.php:1275 msgid "Nickname or Email address: " msgstr "Apodo o dirección de email: " -#: ../../boot.php:1269 +#: boot.php:1276 msgid "Password: " msgstr "Contraseña: " -#: ../../boot.php:1270 +#: boot.php:1277 msgid "Remember me" -msgstr "" +msgstr "Recordarme" -#: ../../boot.php:1273 +#: boot.php:1280 msgid "Or login using OpenID: " msgstr "O inicia sesión usando OpenID: " -#: ../../boot.php:1279 +#: boot.php:1286 msgid "Forgot your password?" msgstr "¿Olvidaste la contraseña?" -#: ../../boot.php:1282 +#: boot.php:1289 msgid "Website Terms of Service" -msgstr "" +msgstr "Términos de uso del sitio" -#: ../../boot.php:1283 +#: boot.php:1290 msgid "terms of service" -msgstr "" +msgstr "Términos de uso" -#: ../../boot.php:1285 +#: boot.php:1292 msgid "Website Privacy Policy" -msgstr "" +msgstr "Política de privacidad del sitio" -#: ../../boot.php:1286 +#: boot.php:1293 msgid "privacy policy" -msgstr "" +msgstr "Política de privacidad" -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "La cuenta solicitada no está disponible." - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editar perfil" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Mensaje" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Perfiles" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[hoy]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Eventos de esta semana:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Estado" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Mensajes de Estado y Publicaciones" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Detalles del Perfil" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Eventos y Calendario" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Únicamente tú puedes ver esto" - -#: ../../object/Item.php:94 +#: object/Item.php:95 msgid "This entry was edited" -msgstr "" +msgstr "Esta entrada fue editada" -#: ../../object/Item.php:208 +#: object/Item.php:209 msgid "ignore thread" -msgstr "" +msgstr "ignorar publicación" -#: ../../object/Item.php:209 +#: object/Item.php:210 msgid "unignore thread" -msgstr "" +msgstr "revertir ignorar publicacion" -#: ../../object/Item.php:210 +#: object/Item.php:211 msgid "toggle ignore status" -msgstr "" +msgstr "cambiar estatus de observación" -#: ../../object/Item.php:213 +#: object/Item.php:214 msgid "ignored" -msgstr "" +msgstr "ignorado" -#: ../../object/Item.php:316 ../../include/conversation.php:666 +#: object/Item.php:318 include/conversation.php:665 msgid "Categories:" msgstr "Categorías:" -#: ../../object/Item.php:317 ../../include/conversation.php:667 +#: object/Item.php:319 include/conversation.php:666 msgid "Filed under:" msgstr "Archivado en:" -#: ../../object/Item.php:329 +#: object/Item.php:331 msgid "via" msgstr "vía" -#: ../../include/dbstructure.php:26 +#: include/dbstructure.php:26 #, php-format msgid "" "\n" @@ -5716,1393 +5833,1494 @@ msgid "" "\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 "" +msgstr "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido." -#: ../../include/dbstructure.php:31 +#: include/dbstructure.php:31 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" -msgstr "" +msgstr "El mensaje de error es\n[pre]%s[/pre]" -#: ../../include/dbstructure.php:162 +#: include/dbstructure.php:152 msgid "Errors encountered creating database tables." msgstr "Se han encontrados errores creando las tablas de la base de datos." -#: ../../include/dbstructure.php:220 +#: include/dbstructure.php:210 msgid "Errors encountered performing database changes." -msgstr "" +msgstr "Errores encontrados al ejecutar cambios en la base de datos." -#: ../../include/auth.php:38 +#: include/auth.php:38 msgid "Logged out." msgstr "Sesión finalizada" -#: ../../include/auth.php:128 ../../include/user.php:67 +#: include/auth.php:128 include/user.php:75 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." -#: ../../include/auth.php:128 ../../include/user.php:67 +#: include/auth.php:128 include/user.php:75 msgid "The error message was:" msgstr "El mensaje del error fue:" -#: ../../include/contact_widgets.php:6 +#: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Añadir nuevo contacto" -#: ../../include/contact_widgets.php:7 +#: include/contact_widgets.php:7 msgid "Enter address or web location" msgstr "Escribe la dirección o página web" -#: ../../include/contact_widgets.php:8 +#: include/contact_widgets.php:8 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" -#: ../../include/contact_widgets.php:24 +#: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitación disponible" msgstr[1] "%d invitaviones disponibles" -#: ../../include/contact_widgets.php:30 +#: include/contact_widgets.php:30 msgid "Find People" msgstr "Buscar personas" -#: ../../include/contact_widgets.php:31 +#: include/contact_widgets.php:31 msgid "Enter name or interest" msgstr "Introduzce nombre o intereses" -#: ../../include/contact_widgets.php:32 +#: include/contact_widgets.php:32 msgid "Connect/Follow" msgstr "Conectar/Seguir" -#: ../../include/contact_widgets.php:33 +#: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ejemplos: Robert Morgenstein, Pesca" -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 msgid "Similar Interests" msgstr "Intereses similares" -#: ../../include/contact_widgets.php:37 +#: include/contact_widgets.php:37 msgid "Random Profile" msgstr "Perfil aleatorio" -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 msgid "Invite Friends" msgstr "Invitar amigos" -#: ../../include/contact_widgets.php:71 +#: include/contact_widgets.php:71 msgid "Networks" msgstr "Redes" -#: ../../include/contact_widgets.php:74 +#: include/contact_widgets.php:74 msgid "All Networks" msgstr "Todas las redes" -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +#: include/contact_widgets.php:104 include/features.php:60 msgid "Saved Folders" msgstr "Directorios guardados" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +#: include/contact_widgets.php:107 include/contact_widgets.php:139 msgid "Everything" msgstr "Todo" -#: ../../include/contact_widgets.php:136 +#: include/contact_widgets.php:136 msgid "Categories" msgstr "Categorías" -#: ../../include/features.php:23 +#: include/features.php:23 msgid "General Features" -msgstr "" +msgstr "Opciones generales" -#: ../../include/features.php:25 +#: include/features.php:25 msgid "Multiple Profiles" -msgstr "" +msgstr "Perfiles multiples" -#: ../../include/features.php:25 +#: include/features.php:25 msgid "Ability to create multiple profiles" -msgstr "" +msgstr "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica." -#: ../../include/features.php:30 +#: include/features.php:30 msgid "Post Composition Features" -msgstr "" +msgstr "Opciones de edición de publicaciones." -#: ../../include/features.php:31 +#: include/features.php:31 msgid "Richtext Editor" -msgstr "" +msgstr "Editor de texto sofisticado (richt text editor)" -#: ../../include/features.php:31 +#: include/features.php:31 msgid "Enable richtext editor" -msgstr "" +msgstr "Habilitar editor de textos sofisticado" -#: ../../include/features.php:32 +#: include/features.php:32 msgid "Post Preview" -msgstr "" +msgstr "Previsualizar publicaciones" -#: ../../include/features.php:32 +#: include/features.php:32 msgid "Allow previewing posts and comments before publishing them" -msgstr "" +msgstr "Permitir la previsualización de publicaciones antes de publicar las mismas." -#: ../../include/features.php:33 +#: include/features.php:33 msgid "Auto-mention Forums" -msgstr "" +msgstr "Auto-mencionar foros" -#: ../../include/features.php:33 +#: include/features.php:33 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" +msgstr "Agregar/remover menciones cuando una pagina de foro es seleccionado/deseleccionado en la ventana ACL." -#: ../../include/features.php:38 +#: include/features.php:38 msgid "Network Sidebar Widgets" -msgstr "" +msgstr "Accesorios de red del panel lateral" -#: ../../include/features.php:39 +#: include/features.php:39 msgid "Search by Date" -msgstr "" +msgstr "Buscar por fecha" -#: ../../include/features.php:39 +#: include/features.php:39 msgid "Ability to select posts by date ranges" -msgstr "" +msgstr "Habilidad de seleccionar publicaciones por fecha" -#: ../../include/features.php:40 +#: include/features.php:40 msgid "Group Filter" -msgstr "" +msgstr "Filtro del grupo" -#: ../../include/features.php:40 +#: include/features.php:40 msgid "Enable widget to display Network posts only from selected group" -msgstr "" +msgstr "Habilitar accesorios para visualizar publicaciones en la red solo de grupos seleccionados" -#: ../../include/features.php:41 +#: include/features.php:41 msgid "Network Filter" -msgstr "" +msgstr "Filtro de red" -#: ../../include/features.php:41 +#: include/features.php:41 msgid "Enable widget to display Network posts only from selected network" -msgstr "" +msgstr "Habilitar accesorios para visualizar publicaciones solo de las redes seleccionadas." -#: ../../include/features.php:42 +#: include/features.php:42 msgid "Save search terms for re-use" -msgstr "" +msgstr "Guardar términos de búsqueda para su reutilizacion" -#: ../../include/features.php:47 +#: include/features.php:47 msgid "Network Tabs" -msgstr "" +msgstr "Pestañas de redes" -#: ../../include/features.php:48 +#: include/features.php:48 msgid "Network Personal Tab" -msgstr "" +msgstr "Pestaña actividad personal" -#: ../../include/features.php:48 +#: include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" +msgstr "Habilitar para visualizar solo publicaciones con las que se ha interactuado" -#: ../../include/features.php:49 +#: include/features.php:49 msgid "Network New Tab" -msgstr "" +msgstr "Pestaña nuevo en la red" -#: ../../include/features.php:49 +#: include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" +msgstr "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)" -#: ../../include/features.php:50 +#: include/features.php:50 msgid "Network Shared Links Tab" -msgstr "" +msgstr "Pestaña publicaciones con enlaces" -#: ../../include/features.php:50 +#: include/features.php:50 msgid "Enable tab to display only Network posts with links in them" -msgstr "" +msgstr "Habilitar para visualizar solo publicaciones que contienen enlaces" -#: ../../include/features.php:55 +#: include/features.php:55 msgid "Post/Comment Tools" -msgstr "" +msgstr "Herramienta de publicaciones/respuestas" -#: ../../include/features.php:56 +#: include/features.php:56 msgid "Multiple Deletion" -msgstr "" +msgstr "Borrar múltiples publicaciones" -#: ../../include/features.php:56 +#: include/features.php:56 msgid "Select and delete multiple posts/comments at once" -msgstr "" +msgstr "Habilidad de seleccionar y borrar varias publicaciones/comentarios a la vez" -#: ../../include/features.php:57 +#: include/features.php:57 msgid "Edit Sent Posts" -msgstr "" +msgstr "Editar temas enviados" -#: ../../include/features.php:57 +#: include/features.php:57 msgid "Edit and correct posts and comments after sending" -msgstr "" +msgstr "Editar y corregir publicaciones y respuestas enviados. Las ediciones solo son comunicados dentro de la red friendica. No se modificaran copias enviadas a diaspora, OStatus/GNUsocial/Quitter u otros servicios conectados." -#: ../../include/features.php:58 +#: include/features.php:58 msgid "Tagging" -msgstr "" +msgstr "taggear" -#: ../../include/features.php:58 +#: include/features.php:58 msgid "Ability to tag existing posts" -msgstr "" +msgstr "Habilidad de taggear publicaciones existentes" -#: ../../include/features.php:59 +#: include/features.php:59 msgid "Post Categories" -msgstr "" +msgstr "Categorías de publicaciones" -#: ../../include/features.php:59 +#: include/features.php:59 msgid "Add categories to your posts" -msgstr "" +msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio." -#: ../../include/features.php:60 +#: include/features.php:60 msgid "Ability to file posts under folders" -msgstr "" +msgstr "Archivar publicaciones en carpetas" -#: ../../include/features.php:61 +#: include/features.php:61 msgid "Dislike Posts" -msgstr "" +msgstr "Desaprobar publicación (dislike)" -#: ../../include/features.php:61 +#: include/features.php:61 msgid "Ability to dislike posts/comments" -msgstr "" +msgstr "Habilidad de expresar desacuerdo en publicaciones y comentarios. Esta función solo es visualizado en la red friendica." -#: ../../include/features.php:62 +#: include/features.php:62 msgid "Star Posts" -msgstr "" +msgstr "Fijar publicaciones" -#: ../../include/features.php:62 +#: include/features.php:62 msgid "Ability to mark special posts with a star indicator" -msgstr "" +msgstr "Habilidad de marcar - observar fijamente publicaciones.\nEl simbolo de estrella es habilitado. Se recibirán notificaciones sobre comentarios, además una pestaña de publicaciones fijadas es habilitada. En las opciones de expiración de publicaciones se puede filtrar estas publicaciones para no ser eliminados contrario a las publicaciones demás de los contactos." -#: ../../include/features.php:63 +#: include/features.php:63 msgid "Mute Post Notifications" -msgstr "" +msgstr "Silenciar notificaciones de una publicacion" -#: ../../include/features.php:63 +#: include/features.php:63 msgid "Ability to mute notifications for a thread" -msgstr "" +msgstr "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación." -#: ../../include/follow.php:32 +#: include/follow.php:75 msgid "Connect URL missing." msgstr "Falta el conector URL." -#: ../../include/follow.php:59 +#: include/follow.php:102 msgid "" "This site is not configured to allow communications with other networks." msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." -#: ../../include/follow.php:60 ../../include/follow.php:80 +#: include/follow.php:103 include/follow.php:123 msgid "No compatible communication protocols or feeds were discovered." msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." -#: ../../include/follow.php:78 +#: include/follow.php:121 msgid "The profile address specified does not provide adequate information." msgstr "La dirección del perfil especificado no proporciona información adecuada." -#: ../../include/follow.php:82 +#: include/follow.php:125 msgid "An author or name was not found." msgstr "No se ha encontrado un autor o nombre." -#: ../../include/follow.php:84 +#: include/follow.php:127 msgid "No browser URL could be matched to this address." msgstr "Ninguna dirección concuerda con la suministrada." -#: ../../include/follow.php:86 +#: include/follow.php:129 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." -#: ../../include/follow.php:87 +#: include/follow.php:130 msgid "Use mailto: in front of address to force email check." msgstr "Escribe mailto: al principio de la dirección para forzar el envío." -#: ../../include/follow.php:93 +#: include/follow.php:136 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." -#: ../../include/follow.php:103 +#: include/follow.php:146 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." -#: ../../include/follow.php:205 +#: include/follow.php:249 msgid "Unable to retrieve contact information." msgstr "No ha sido posible recibir la información del contacto." -#: ../../include/follow.php:258 +#: include/follow.php:302 msgid "following" msgstr "siguiendo" -#: ../../include/group.php:25 +#: 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 grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente." -#: ../../include/group.php:207 +#: include/group.php:207 msgid "Default privacy group for new contacts" msgstr "Grupo por defecto para nuevos contactos" -#: ../../include/group.php:226 +#: include/group.php:226 msgid "Everybody" msgstr "Todo el mundo" -#: ../../include/group.php:249 +#: include/group.php:249 msgid "edit" msgstr "editar" -#: ../../include/group.php:271 +#: include/group.php:271 msgid "Edit group" msgstr "Editar grupo" -#: ../../include/group.php:272 +#: include/group.php:272 msgid "Create a new group" msgstr "Crear un nuevo grupo" -#: ../../include/group.php:273 +#: include/group.php:275 msgid "Contacts not in any group" msgstr "Contactos sin grupo" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 +#: include/datetime.php:43 include/datetime.php:45 msgid "Miscellaneous" msgstr "Varios" -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "año" +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "mes" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "día" - -#: ../../include/datetime.php:276 +#: include/datetime.php:256 msgid "never" msgstr "nunca" -#: ../../include/datetime.php:282 +#: include/datetime.php:262 msgid "less than a second ago" msgstr "hace menos de un segundo" -#: ../../include/datetime.php:290 +#: include/datetime.php:272 +msgid "year" +msgstr "año" + +#: include/datetime.php:272 msgid "years" msgstr "años" -#: ../../include/datetime.php:291 +#: include/datetime.php:273 +msgid "month" +msgstr "mes" + +#: include/datetime.php:273 msgid "months" msgstr "meses" -#: ../../include/datetime.php:292 +#: include/datetime.php:274 msgid "week" msgstr "semana" -#: ../../include/datetime.php:292 +#: include/datetime.php:274 msgid "weeks" msgstr "semanas" -#: ../../include/datetime.php:293 +#: include/datetime.php:275 +msgid "day" +msgstr "día" + +#: include/datetime.php:275 msgid "days" msgstr "días" -#: ../../include/datetime.php:294 +#: include/datetime.php:276 msgid "hour" msgstr "hora" -#: ../../include/datetime.php:294 +#: include/datetime.php:276 msgid "hours" msgstr "horas" -#: ../../include/datetime.php:295 +#: include/datetime.php:277 msgid "minute" msgstr "minuto" -#: ../../include/datetime.php:295 +#: include/datetime.php:277 msgid "minutes" msgstr "minutos" -#: ../../include/datetime.php:296 +#: include/datetime.php:278 msgid "second" msgstr "segundo" -#: ../../include/datetime.php:296 +#: include/datetime.php:278 msgid "seconds" msgstr "segundos" -#: ../../include/datetime.php:305 +#: include/datetime.php:287 #, php-format msgid "%1$d %2$s ago" msgstr "hace %1$d %2$s" -#: ../../include/datetime.php:477 ../../include/items.php:2211 +#: include/datetime.php:459 include/items.php:2432 #, php-format msgid "%s's birthday" msgstr "Cumpleaños de %s" -#: ../../include/datetime.php:478 ../../include/items.php:2212 +#: include/datetime.php:460 include/items.php:2433 #, php-format msgid "Happy Birthday %s" msgstr "Feliz cumpleaños %s" -#: ../../include/acl_selectors.php:333 +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "La cuenta solicitada no está disponible." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "Editar perfil" + +#: include/identity.php:220 +msgid "Message" +msgstr "Mensaje" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Perfiles" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Administrar/editar perfiles" + +#: include/identity.php:341 +msgid "Network:" +msgstr "Red social:" + +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "F d" + +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "[hoy]" + +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" + +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "Cumpleaños esta semana:" + +#: include/identity.php:493 +msgid "[No description]" +msgstr "[Sin descripción]" + +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" + +#: include/identity.php:518 +msgid "Events this week:" +msgstr "Eventos de esta semana:" + +#: include/identity.php:545 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:546 +msgid "j F" +msgstr "j F" + +#: include/identity.php:553 +msgid "Birthday:" +msgstr "Fecha de nacimiento:" + +#: include/identity.php:557 +msgid "Age:" +msgstr "Edad:" + +#: include/identity.php:566 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "Religión:" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "Aficiones/Intereses:" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y Redes sociales:" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "Intereses musicales:" + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "Libros, literatura:" + +#: include/identity.php:596 +msgid "Television:" +msgstr "Televisión:" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "Películas/baile/cultura/entretenimiento:" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "Amor/Romance:" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "Trabajo/ocupación:" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "Escuela/estudios:" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "Estado" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "Mensajes de Estado y Publicaciones" + +#: include/identity.php:643 +msgid "Profile Details" +msgstr "Detalles del Perfil" + +#: include/identity.php:656 include/identity.php:659 include/nav.php:79 +msgid "Videos" +msgstr "Videos" + +#: include/identity.php:670 +msgid "Events and Calendar" +msgstr "Eventos y Calendario" + +#: include/identity.php:678 +msgid "Only You Can See This" +msgstr "Únicamente tú puedes ver esto" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Publicar mediante correo electrónico" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado." + +#: include/acl_selectors.php:335 msgid "Visible to everybody" msgstr "Visible para cualquiera" -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 msgid "show" msgstr "mostrar" -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 msgid "don't show" msgstr "no mostrar" -#: ../../include/message.php:15 ../../include/message.php:172 +#: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "[sin asunto]" -#: ../../include/Contact.php:115 +#: include/Contact.php:119 msgid "stopped following" msgstr "dejó de seguir" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 +#: include/Contact.php:232 include/conversation.php:881 msgid "Poke" msgstr "Toque" -#: ../../include/Contact.php:229 ../../include/conversation.php:876 +#: include/Contact.php:233 include/conversation.php:875 msgid "View Status" msgstr "Ver estado" -#: ../../include/Contact.php:230 ../../include/conversation.php:877 +#: include/Contact.php:234 include/conversation.php:876 msgid "View Profile" msgstr "Ver perfil" -#: ../../include/Contact.php:231 ../../include/conversation.php:878 +#: include/Contact.php:235 include/conversation.php:877 msgid "View Photos" msgstr "Ver fotos" -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 msgid "Network Posts" msgstr "Publicaciones en la red" -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 msgid "Edit Contact" msgstr "Editar contacto" -#: ../../include/Contact.php:234 +#: include/Contact.php:238 msgid "Drop Contact" -msgstr "" +msgstr "Eliminar contacto" -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 msgid "Send PM" msgstr "Enviar mensaje privado" -#: ../../include/security.php:22 +#: include/security.php:22 msgid "Welcome " msgstr "Bienvenido " -#: ../../include/security.php:23 +#: include/security.php:23 msgid "Please upload a profile photo." msgstr "Por favor sube una foto para tu perfil." -#: ../../include/security.php:26 +#: include/security.php:26 msgid "Welcome back " msgstr "Bienvenido de nuevo " -#: ../../include/security.php:366 +#: include/security.php:375 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 "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2032 view/theme/diabook/theme.php:463 msgid "event" msgstr "evento" -#: ../../include/conversation.php:207 +#: include/conversation.php:206 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s le dio un toque a %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "tocó a" - -#: ../../include/conversation.php:291 +#: include/conversation.php:290 msgid "post/item" msgstr "publicación/tema" -#: ../../include/conversation.php:292 +#: include/conversation.php:291 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s ha marcado %3$s de %2$s como Favorito" -#: ../../include/conversation.php:772 +#: include/conversation.php:771 msgid "remove" msgstr "eliminar" -#: ../../include/conversation.php:776 +#: include/conversation.php:775 msgid "Delete Selected Items" msgstr "Eliminar el elemento seleccionado" -#: ../../include/conversation.php:875 +#: include/conversation.php:874 msgid "Follow Thread" -msgstr "" +msgstr "Seguir publicacion" -#: ../../include/conversation.php:944 +#: include/conversation.php:943 #, php-format msgid "%s likes this." msgstr "A %s le gusta esto." -#: ../../include/conversation.php:944 +#: include/conversation.php:943 #, php-format msgid "%s doesn't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:949 +#: include/conversation.php:948 #, php-format msgid "%2$d people like this" -msgstr "" +msgstr "%2$d personas les gusta esto" -#: ../../include/conversation.php:952 +#: include/conversation.php:951 #, php-format msgid "%2$d people don't like this" -msgstr "" +msgstr "%2$d personas no les gusta esto" -#: ../../include/conversation.php:966 +#: include/conversation.php:965 msgid "and" msgstr "y" -#: ../../include/conversation.php:972 +#: include/conversation.php:971 #, php-format msgid ", and %d other people" msgstr " y a otras %d personas" -#: ../../include/conversation.php:974 +#: include/conversation.php:973 #, php-format msgid "%s like this." msgstr "Le gusta a %s." -#: ../../include/conversation.php:974 +#: include/conversation.php:973 #, php-format msgid "%s don't like this." msgstr "No le gusta a %s." -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +#: include/conversation.php:1000 include/conversation.php:1018 msgid "Visible to everybody" msgstr "Visible para cualquiera" -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +#: include/conversation.php:1002 include/conversation.php:1020 msgid "Please enter a video link/URL:" msgstr "Por favor, introduce la URL/enlace del vídeo:" -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +#: include/conversation.php:1003 include/conversation.php:1021 msgid "Please enter an audio link/URL:" msgstr "Por favor, introduce la URL/enlace del audio:" -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +#: include/conversation.php:1004 include/conversation.php:1022 msgid "Tag term:" msgstr "Etiquetar:" -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +#: include/conversation.php:1006 include/conversation.php:1024 msgid "Where are you right now?" msgstr "¿Dónde estás ahora?" -#: ../../include/conversation.php:1008 +#: include/conversation.php:1007 msgid "Delete item(s)?" -msgstr "" +msgstr "¿Borrar objeto(s)?" -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Publicar mediante correo electrónico" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 +#: include/conversation.php:1076 msgid "permissions" msgstr "permisos" -#: ../../include/conversation.php:1135 +#: include/conversation.php:1099 msgid "Post to Groups" -msgstr "" +msgstr "Publicar hacia grupos" -#: ../../include/conversation.php:1136 +#: include/conversation.php:1100 msgid "Post to Contacts" -msgstr "" +msgstr "Publicar hacia contactos" -#: ../../include/conversation.php:1137 +#: include/conversation.php:1101 msgid "Private post" -msgstr "" +msgstr "Publicación privada" -#: ../../include/network.php:895 +#: include/network.php:959 msgid "view full size" msgstr "Ver a tamaño completo" -#: ../../include/text.php:297 +#: include/text.php:299 msgid "newer" msgstr "más nuevo" -#: ../../include/text.php:299 +#: include/text.php:301 msgid "older" msgstr "más antiguo" -#: ../../include/text.php:304 +#: include/text.php:306 msgid "prev" msgstr "ant." -#: ../../include/text.php:306 +#: include/text.php:308 msgid "first" msgstr "primera" -#: ../../include/text.php:338 +#: include/text.php:340 msgid "last" msgstr "última" -#: ../../include/text.php:341 +#: include/text.php:343 msgid "next" msgstr "sig." -#: ../../include/text.php:855 +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "Cargar mas entradas .." + +#: include/text.php:399 +msgid "The end" +msgstr "El fin" + +#: include/text.php:890 msgid "No contacts" msgstr "Sin contactos" -#: ../../include/text.php:864 +#: include/text.php:905 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Contacto" msgstr[1] "%d Contactos" -#: ../../include/text.php:1005 +#: include/text.php:1003 include/nav.php:122 +msgid "Full Text" +msgstr "Texto completo" + +#: include/text.php:1004 include/nav.php:123 +msgid "Tags" +msgstr "Tags" + +#: include/text.php:1008 include/nav.php:127 +msgid "Forums" +msgstr "Foros" + +#: include/text.php:1058 msgid "poke" msgstr "tocar" -#: ../../include/text.php:1006 +#: include/text.php:1058 +msgid "poked" +msgstr "tocó a" + +#: include/text.php:1059 msgid "ping" msgstr "hacer \"ping\"" -#: ../../include/text.php:1006 +#: include/text.php:1059 msgid "pinged" msgstr "hizo \"ping\" a" -#: ../../include/text.php:1007 +#: include/text.php:1060 msgid "prod" msgstr "empujar" -#: ../../include/text.php:1007 +#: include/text.php:1060 msgid "prodded" msgstr "empujó a" -#: ../../include/text.php:1008 +#: include/text.php:1061 msgid "slap" msgstr "abofetear" -#: ../../include/text.php:1008 +#: include/text.php:1061 msgid "slapped" msgstr "abofeteó a" -#: ../../include/text.php:1009 +#: include/text.php:1062 msgid "finger" msgstr "meter dedo" -#: ../../include/text.php:1009 +#: include/text.php:1062 msgid "fingered" msgstr "le metió un dedo a" -#: ../../include/text.php:1010 +#: include/text.php:1063 msgid "rebuff" msgstr "desairar" -#: ../../include/text.php:1010 +#: include/text.php:1063 msgid "rebuffed" msgstr "desairó a" -#: ../../include/text.php:1024 +#: include/text.php:1077 msgid "happy" msgstr "feliz" -#: ../../include/text.php:1025 +#: include/text.php:1078 msgid "sad" msgstr "triste" -#: ../../include/text.php:1026 +#: include/text.php:1079 msgid "mellow" msgstr "sentimental" -#: ../../include/text.php:1027 +#: include/text.php:1080 msgid "tired" msgstr "cansado" -#: ../../include/text.php:1028 +#: include/text.php:1081 msgid "perky" msgstr "alegre" -#: ../../include/text.php:1029 +#: include/text.php:1082 msgid "angry" msgstr "furioso" -#: ../../include/text.php:1030 +#: include/text.php:1083 msgid "stupified" msgstr "estupefacto" -#: ../../include/text.php:1031 +#: include/text.php:1084 msgid "puzzled" msgstr "extrañado" -#: ../../include/text.php:1032 +#: include/text.php:1085 msgid "interested" msgstr "interesado" -#: ../../include/text.php:1033 +#: include/text.php:1086 msgid "bitter" msgstr "rencoroso" -#: ../../include/text.php:1034 +#: include/text.php:1087 msgid "cheerful" msgstr "jovial" -#: ../../include/text.php:1035 +#: include/text.php:1088 msgid "alive" msgstr "vivo" -#: ../../include/text.php:1036 +#: include/text.php:1089 msgid "annoyed" msgstr "enojado" -#: ../../include/text.php:1037 +#: include/text.php:1090 msgid "anxious" msgstr "ansioso" -#: ../../include/text.php:1038 +#: include/text.php:1091 msgid "cranky" msgstr "irritable" -#: ../../include/text.php:1039 +#: include/text.php:1092 msgid "disturbed" msgstr "perturbado" -#: ../../include/text.php:1040 +#: include/text.php:1093 msgid "frustrated" msgstr "frustrado" -#: ../../include/text.php:1041 +#: include/text.php:1094 msgid "motivated" msgstr "motivado" -#: ../../include/text.php:1042 +#: include/text.php:1095 msgid "relaxed" msgstr "relajado" -#: ../../include/text.php:1043 +#: include/text.php:1096 msgid "surprised" msgstr "sorprendido" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Monday" msgstr "Lunes" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Tuesday" msgstr "Martes" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Wednesday" msgstr "Miércoles" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Thursday" msgstr "Jueves" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Friday" msgstr "Viernes" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Saturday" msgstr "Sábado" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Sunday" msgstr "Domingo" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "January" msgstr "Enero" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "February" msgstr "Febrero" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "March" msgstr "Marzo" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "April" msgstr "Abril" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "May" msgstr "Mayo" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "June" msgstr "Junio" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "July" msgstr "Julio" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "August" msgstr "Agosto" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "September" msgstr "Septiembre" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "October" msgstr "Octubre" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "November" msgstr "Noviembre" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "December" msgstr "Diciembre" -#: ../../include/text.php:1437 +#: include/text.php:1492 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1461 ../../include/text.php:1473 +#: include/text.php:1524 include/text.php:1536 msgid "Click to open/close" msgstr "Pulsa para abrir/cerrar" -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 +#: include/text.php:1710 +msgid "View on separate page" +msgstr "Ver en pagina aparte" + +#: include/text.php:1711 +msgid "view on separate page" +msgstr "ver en pagina aparte" + +#: include/text.php:1768 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 msgid "default" msgstr "predeterminado" -#: ../../include/text.php:1714 +#: include/text.php:1780 msgid "Select an alternate language" msgstr "Elige otro idioma" -#: ../../include/text.php:1970 +#: include/text.php:2036 msgid "activity" msgstr "Actividad" -#: ../../include/text.php:1973 +#: include/text.php:2039 msgid "post" msgstr "Publicación" -#: ../../include/text.php:2141 +#: include/text.php:2207 msgid "Item filed" msgstr "Elemento archivado" -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 msgid "Image/photo" msgstr "Imagen/Foto" -#: ../../include/bbcode.php:528 +#: include/bbcode.php:556 #, php-format msgid "%2$s %3$s" -msgstr "" +msgstr "%2$s %3$s" -#: ../../include/bbcode.php:562 +#: include/bbcode.php:590 #, php-format msgid "" "%s wrote the following post" -msgstr "" +msgstr "%s escribió la siguiente publicación" -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 +#: include/bbcode.php:1076 include/bbcode.php:1096 msgid "$1 wrote:" msgstr "$1 escribió:" -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 +#: include/bbcode.php:1121 include/bbcode.php:1122 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/notifier.php:786 ../../include/delivery.php:456 +#: include/notifier.php:830 include/delivery.php:456 msgid "(no subject)" msgstr "(sin asunto)" -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 +#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 msgid "noreply" msgstr "no responder" -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "No se puede encontrar información DNS para la base de datos del servidor '%s'" -#: ../../include/contact_selectors.php:32 +#: include/contact_selectors.php:32 msgid "Unknown | Not categorised" msgstr "Desconocido | No clasificado" -#: ../../include/contact_selectors.php:33 +#: include/contact_selectors.php:33 msgid "Block immediately" msgstr "Bloquear inmediatamente" -#: ../../include/contact_selectors.php:34 +#: include/contact_selectors.php:34 msgid "Shady, spammer, self-marketer" msgstr "Sospechoso, spammer, auto-publicidad" -#: ../../include/contact_selectors.php:35 +#: include/contact_selectors.php:35 msgid "Known to me, but no opinion" msgstr "Le conozco, sin opinión" -#: ../../include/contact_selectors.php:36 +#: include/contact_selectors.php:36 msgid "OK, probably harmless" msgstr "OK, probablemente inofensivo" -#: ../../include/contact_selectors.php:37 +#: include/contact_selectors.php:37 msgid "Reputable, has my trust" msgstr "Buena reputación, tiene mi confianza" -#: ../../include/contact_selectors.php:60 +#: include/contact_selectors.php:60 msgid "Weekly" msgstr "Semanalmente" -#: ../../include/contact_selectors.php:61 +#: include/contact_selectors.php:61 msgid "Monthly" msgstr "Mensualmente" -#: ../../include/contact_selectors.php:77 +#: include/contact_selectors.php:77 msgid "OStatus" msgstr "OStatus" -#: ../../include/contact_selectors.php:78 +#: include/contact_selectors.php:78 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:82 +#: include/contact_selectors.php:82 msgid "Zot!" msgstr "Zot!" -#: ../../include/contact_selectors.php:83 +#: include/contact_selectors.php:83 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/contact_selectors.php:84 +#: include/contact_selectors.php:84 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/contact_selectors.php:85 +#: include/contact_selectors.php:85 msgid "MySpace" msgstr "MySpace" -#: ../../include/contact_selectors.php:87 +#: include/contact_selectors.php:87 msgid "Google+" -msgstr "" +msgstr "Google+" -#: ../../include/contact_selectors.php:88 +#: include/contact_selectors.php:88 msgid "pump.io" -msgstr "" +msgstr "pump.io" -#: ../../include/contact_selectors.php:89 +#: include/contact_selectors.php:89 msgid "Twitter" -msgstr "" +msgstr "Twitter" -#: ../../include/contact_selectors.php:90 +#: include/contact_selectors.php:90 msgid "Diaspora Connector" -msgstr "" +msgstr "Conector Diaspora" -#: ../../include/contact_selectors.php:91 +#: include/contact_selectors.php:91 msgid "Statusnet" -msgstr "" +msgstr "Statusnet/GNUsocial/Quitter/OStatus" -#: ../../include/contact_selectors.php:92 +#: include/contact_selectors.php:92 msgid "App.net" -msgstr "" +msgstr "App.net" -#: ../../include/Scrape.php:614 +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + +#: include/Scrape.php:603 msgid " on Last.fm" msgstr "en Last.fm" -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +#: include/bb2diaspora.php:154 include/event.php:22 msgid "Starts:" msgstr "Inicio:" -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +#: include/bb2diaspora.php:162 include/event.php:32 msgid "Finishes:" msgstr "Final:" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Fecha de nacimiento:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Edad:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Etiquetas:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religión:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y Redes sociales:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Intereses musicales:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Libros, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisión:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Películas/baile/cultura/entretenimiento:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amor/Romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Trabajo/ocupación:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Escuela/estudios:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 +#: include/plugin.php:458 include/plugin.php:460 msgid "Click here to upgrade." msgstr "Pulsa aquí para actualizar." -#: ../../include/plugin.php:463 +#: include/plugin.php:466 msgid "This action exceeds the limits set by your subscription plan." msgstr "Esta acción excede los límites permitidos por tu subscripción." -#: ../../include/plugin.php:468 +#: include/plugin.php:471 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está permitida para tu subscripción." -#: ../../include/nav.php:73 +#: include/nav.php:73 msgid "End this session" msgstr "Cerrar la sesión" -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 +#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 msgid "Your posts and conversations" msgstr "Tus publicaciones y conversaciones" -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +#: include/nav.php:77 view/theme/diabook/theme.php:124 msgid "Your profile page" msgstr "Tu página de perfil" -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 +#: include/nav.php:78 view/theme/diabook/theme.php:126 msgid "Your photos" msgstr "Tus fotos" -#: ../../include/nav.php:79 +#: include/nav.php:79 msgid "Your videos" -msgstr "" +msgstr "Tus videos" -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 +#: include/nav.php:80 view/theme/diabook/theme.php:127 msgid "Your events" msgstr "Tus eventos" -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 +#: include/nav.php:81 view/theme/diabook/theme.php:128 msgid "Personal notes" msgstr "Notas personales" -#: ../../include/nav.php:81 +#: include/nav.php:81 msgid "Your personal notes" -msgstr "" +msgstr "Tus notas personales" -#: ../../include/nav.php:92 +#: include/nav.php:92 msgid "Sign in" msgstr "Date de alta" -#: ../../include/nav.php:105 +#: include/nav.php:105 msgid "Home Page" msgstr "Página de inicio" -#: ../../include/nav.php:109 +#: include/nav.php:109 msgid "Create an account" msgstr "Crea una cuenta" -#: ../../include/nav.php:114 +#: include/nav.php:114 msgid "Help and documentation" msgstr "Ayuda y documentación" -#: ../../include/nav.php:117 +#: include/nav.php:117 msgid "Apps" msgstr "Aplicaciones" -#: ../../include/nav.php:117 +#: include/nav.php:117 msgid "Addon applications, utilities, games" msgstr "Aplicaciones, utilidades, juegos" -#: ../../include/nav.php:119 +#: include/nav.php:119 msgid "Search site content" msgstr " Busca contenido en la página" -#: ../../include/nav.php:129 +#: include/nav.php:137 msgid "Conversations on this site" msgstr "Conversaciones en este sitio" -#: ../../include/nav.php:131 +#: include/nav.php:139 msgid "Conversations on the network" -msgstr "" +msgstr "Conversaciones en la red" -#: ../../include/nav.php:133 +#: include/nav.php:141 msgid "Directory" msgstr "Directorio" -#: ../../include/nav.php:133 +#: include/nav.php:141 msgid "People directory" msgstr "Directorio de usuarios" -#: ../../include/nav.php:135 +#: include/nav.php:143 msgid "Information" -msgstr "" +msgstr "Información" -#: ../../include/nav.php:135 +#: include/nav.php:143 msgid "Information about this friendica instance" -msgstr "" +msgstr "Información sobre esta instancia de friendica" -#: ../../include/nav.php:145 +#: include/nav.php:153 msgid "Conversations from your friends" msgstr "Conversaciones de tus amigos" -#: ../../include/nav.php:146 +#: include/nav.php:154 msgid "Network Reset" -msgstr "" +msgstr "Reseteo de la red" -#: ../../include/nav.php:146 +#: include/nav.php:154 msgid "Load Network page with no filters" -msgstr "" +msgstr "Cargar pagina de redes sin filtros" -#: ../../include/nav.php:154 +#: include/nav.php:161 msgid "Friend Requests" msgstr "Solicitudes de amistad" -#: ../../include/nav.php:156 +#: include/nav.php:165 msgid "See all notifications" msgstr "Ver todas las notificaciones" -#: ../../include/nav.php:157 +#: include/nav.php:166 msgid "Mark all system notifications seen" msgstr "Marcar todas las notificaciones del sistema como leídas" -#: ../../include/nav.php:161 +#: include/nav.php:170 msgid "Private mail" msgstr "Correo privado" -#: ../../include/nav.php:162 +#: include/nav.php:171 msgid "Inbox" msgstr "Entrada" -#: ../../include/nav.php:163 +#: include/nav.php:172 msgid "Outbox" msgstr "Enviados" -#: ../../include/nav.php:167 +#: include/nav.php:176 msgid "Manage" msgstr "Administrar" -#: ../../include/nav.php:167 +#: include/nav.php:176 msgid "Manage other pages" msgstr "Administrar otras páginas" -#: ../../include/nav.php:172 +#: include/nav.php:181 msgid "Account settings" msgstr "Configuración de tu cuenta" -#: ../../include/nav.php:175 +#: include/nav.php:184 msgid "Manage/Edit Profiles" -msgstr "" +msgstr "Manejar/editar Perfiles" -#: ../../include/nav.php:177 +#: include/nav.php:186 msgid "Manage/edit friends and contacts" msgstr "Administrar/editar amigos y contactos" -#: ../../include/nav.php:184 +#: include/nav.php:193 msgid "Site setup and configuration" msgstr "Opciones y configuración del sitio" -#: ../../include/nav.php:188 +#: include/nav.php:197 msgid "Navigation" -msgstr "" +msgstr "Navegación" -#: ../../include/nav.php:188 +#: include/nav.php:197 msgid "Site map" -msgstr "" +msgstr "Mapa del sitio" -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1141 include/api.php:1143 msgid "User not found." -msgstr "" +msgstr "Perfil no encontrado" -#: ../../include/api.php:771 +#: include/api.php:795 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" +msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada." -#: ../../include/api.php:790 +#: include/api.php:814 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" +msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada." -#: ../../include/api.php:809 +#: include/api.php:833 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" +msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada." -#: ../../include/api.php:1272 +#: include/api.php:1350 msgid "There is no status with this id." -msgstr "" +msgstr "No hay estatus con esta ID " -#: ../../include/api.php:1342 +#: include/api.php:1424 msgid "There is no conversation with this id." -msgstr "" +msgstr "No hay conversaciones con esta ID" -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "" - -#: ../../include/api.php:1625 +#: include/api.php:1703 msgid "Invalid item." -msgstr "" +msgstr "Objeto invalido" -#: ../../include/api.php:1635 +#: include/api.php:1713 msgid "Invalid action. " -msgstr "" +msgstr "Acción invalida" -#: ../../include/api.php:1643 +#: include/api.php:1721 msgid "DB error" -msgstr "" +msgstr "Error de base de datos" -#: ../../include/user.php:40 +#: include/user.php:48 msgid "An invitation is required." msgstr "Se necesita invitación." -#: ../../include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "No se puede verificar la invitación." -#: ../../include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "Dirección OpenID no válida" -#: ../../include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "Por favor, introduce la información necesaria." -#: ../../include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "Por favor, usa un nombre más corto." -#: ../../include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "El nombre es demasiado corto." -#: ../../include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "No parece que ese sea tu nombre completo." -#: ../../include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." -#: ../../include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "No es una dirección de correo electrónico válida." -#: ../../include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "No se puede utilizar este correo electrónico." -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Tu \"apodo\" solo puede contener \"a-z\", \"0-9\", \"-\", y \"_\" y debe empezar por una letra." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"." -#: ../../include/user.php:138 ../../include/user.php:236 +#: include/user.php:146 include/user.php:244 msgid "Nickname is already registered. Please choose another." msgstr "Apodo ya registrado. Por favor, elije otro." -#: ../../include/user.php:148 +#: include/user.php:156 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro." -#: ../../include/user.php:164 +#: include/user.php:172 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." -#: ../../include/user.php:222 +#: include/user.php:230 msgid "An error occurred during registration. Please try again." msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." -#: ../../include/user.php:257 +#: include/user.php:265 msgid "An error occurred creating your default profile. Please try again." msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 msgid "Friends" msgstr "Amigos" -#: ../../include/user.php:377 +#: include/user.php:385 #, php-format msgid "" "\n" "\t\tDear %1$s,\n" "\t\t\tThank you for registering at %2$s. Your account has been created.\n" "\t" -msgstr "" +msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t" -#: ../../include/user.php:381 +#: include/user.php:389 #, php-format msgid "" "\n" @@ -7130,764 +7348,741 @@ msgid "" "\n" "\n" "\t\tThank you and welcome to %2$s." -msgstr "" +msgstr "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3$s\n\t\t\tNombre de la cuenta:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2$s." -#: ../../include/diaspora.php:703 +#: include/diaspora.php:717 msgid "Sharing notification from Diaspora network" msgstr "Compartir notificaciones con la red Diaspora*" -#: ../../include/diaspora.php:2520 +#: include/diaspora.php:2560 msgid "Attachments:" msgstr "Archivos adjuntos:" -#: ../../include/items.php:4555 +#: include/items.php:4853 msgid "Do you really want to delete this item?" -msgstr "" +msgstr "¿Realmente quieres borrar este objeto?" -#: ../../include/items.php:4778 +#: include/items.php:5128 msgid "Archives" msgstr "Archivos" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Male" msgstr "Hombre" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Female" msgstr "Mujer" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Currently Male" msgstr "Actualmente Hombre" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Currently Female" msgstr "Actualmente Mujer" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Mostly Male" msgstr "Mayormente Hombre" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Mostly Female" msgstr "Mayormente Mujer" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Transgender" msgstr "Transgenérico" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Intersex" msgstr "Bisexual" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Transsexual" msgstr "Transexual" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Neuter" msgstr "Neutro" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Non-specific" msgstr "Sin especificar" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Other" msgstr "Otro" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Undecided" msgstr "Indeciso" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Males" msgstr "Hombres" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Females" msgstr "Mujeres" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Gay" msgstr "Gay" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Lesbian" msgstr "Lesbiana" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "No Preference" msgstr "Sin preferencias" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Bisexual" msgstr "Bisexual" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Autosexual" msgstr "Autosexual" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Abstinent" msgstr "Célibe" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Virgin" msgstr "Virgen" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Deviant" msgstr "Desviado" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Fetish" msgstr "Fetichista" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Oodles" msgstr "Orgiástico" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Nonsexual" msgstr "Asexual" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Single" msgstr "Soltero" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Lonely" msgstr "Solitario" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Available" msgstr "Disponible" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unavailable" msgstr "No disponible" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Has crush" msgstr "Enamorado" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Infatuated" msgstr "Loco/a por alguien" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Dating" msgstr "De citas" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unfaithful" msgstr "Infiel" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Sex Addict" msgstr "Adicto al sexo" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amigos con beneficios" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Casual" msgstr "Casual" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Engaged" msgstr "Comprometido/a" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Married" msgstr "Casado/a" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Imaginarily married" msgstr "Casado imaginario" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Partners" msgstr "Socios" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Cohabiting" msgstr "Cohabitando" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Common law" msgstr "Pareja de hecho" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Happy" msgstr "Feliz" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Not looking" msgstr "No busca relación" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Swinger" msgstr "Swinger" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Betrayed" msgstr "Traicionado/a" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Separated" msgstr "Separado/a" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unstable" msgstr "Inestable" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Divorced" msgstr "Divorciado/a" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Imaginarily divorced" msgstr "Divorciado imaginario" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Widowed" msgstr "Viudo/a" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Uncertain" msgstr "Incierto" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "It's complicated" msgstr "Es complicado" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Don't care" msgstr "No te importa" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Ask me" msgstr "Pregúntame" -#: ../../include/enotify.php:18 +#: include/enotify.php:18 msgid "Friendica Notification" msgstr "Notificación de Friendica" -#: ../../include/enotify.php:21 +#: include/enotify.php:21 msgid "Thank You," msgstr "Gracias," -#: ../../include/enotify.php:23 +#: include/enotify.php:23 #, php-format msgid "%s Administrator" msgstr "%s Administrador" -#: ../../include/enotify.php:64 +#: include/enotify.php:64 #, php-format msgid "%s " msgstr "%s " -#: ../../include/enotify.php:68 +#: include/enotify.php:78 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Notificación] Nuevo correo recibido de %s" -#: ../../include/enotify.php:70 +#: include/enotify.php:80 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s te ha enviado un mensaje privado desde %2$s." -#: ../../include/enotify.php:71 +#: include/enotify.php:81 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s te ha enviado %2$s." -#: ../../include/enotify.php:71 +#: include/enotify.php:81 msgid "a private message" msgstr "un mensaje privado" -#: ../../include/enotify.php:72 +#: include/enotify.php:82 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Por favor, visita %s para ver y/o responder a tus mensajes privados." -#: ../../include/enotify.php:124 +#: include/enotify.php:134 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s comentó en [url=%2$s]a %3$s[/url]" -#: ../../include/enotify.php:131 +#: include/enotify.php:141 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s comentó en [url=%2$s] %4$s de %3$s[/url]" -#: ../../include/enotify.php:139 +#: include/enotify.php:149 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s comentó en [url=%2$s] tu %3$s[/url]" -#: ../../include/enotify.php:149 +#: include/enotify.php:159 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Notificación] Comentario en la conversación de #%1$d por %2$s" -#: ../../include/enotify.php:150 +#: include/enotify.php:160 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha comentado en una conversación/elemento que sigues." -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 +#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Por favor, visita %s para ver y/o responder a la conversación." -#: ../../include/enotify.php:160 +#: include/enotify.php:170 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notificación] %s publicó en tu muro" -#: ../../include/enotify.php:162 +#: include/enotify.php:172 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s publicó en tu perfil de %2$s" -#: ../../include/enotify.php:164 +#: include/enotify.php:174 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s publicó en [url=%2$s]tu muro[/url]" -#: ../../include/enotify.php:175 +#: include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notificación] %s te ha nombrado" -#: ../../include/enotify.php:176 +#: include/enotify.php:186 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s te ha nombrado en %2$s" -#: ../../include/enotify.php:177 +#: include/enotify.php:187 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]te nombró[/url]." -#: ../../include/enotify.php:188 +#: include/enotify.php:198 #, php-format msgid "[Friendica:Notify] %s shared a new post" -msgstr "" +msgstr "[Notificacion Friendica] %s compartio una nueva publicacion" -#: ../../include/enotify.php:189 +#: include/enotify.php:199 #, php-format msgid "%1$s shared a new post at %2$s" -msgstr "" +msgstr "%1$s compartió un nuevo tema en %2$s" -#: ../../include/enotify.php:190 +#: include/enotify.php:200 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" +msgstr "%1$s [url=%2$s]compartió una publicación[/url]." -#: ../../include/enotify.php:202 +#: include/enotify.php:212 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s te dio un toque" -#: ../../include/enotify.php:203 +#: include/enotify.php:213 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s te dio un toque en %2$s" -#: ../../include/enotify.php:204 +#: include/enotify.php:214 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]te dio un toque[/url]." -#: ../../include/enotify.php:219 +#: include/enotify.php:229 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notificación] %s ha etiquetado tu publicación" -#: ../../include/enotify.php:220 +#: include/enotify.php:230 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s ha etiquetado tu publicación en %2$s" -#: ../../include/enotify.php:221 +#: include/enotify.php:231 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s ha etiquetado [url=%2$s]tu publicación[/url]" -#: ../../include/enotify.php:232 +#: include/enotify.php:242 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notificación] Presentación recibida" -#: ../../include/enotify.php:233 +#: include/enotify.php:243 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Has recibido una presentación de '%1$s' en %2$s" -#: ../../include/enotify.php:234 +#: include/enotify.php:244 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Has recibido [url=%1$s]una presentación[/url] de %2$s." -#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#: include/enotify.php:247 include/enotify.php:289 #, php-format msgid "You may visit their profile at %s" msgstr "Puedes visitar su perfil en %s" -#: ../../include/enotify.php:239 +#: include/enotify.php:249 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Visita %s para aceptar o rechazar la presentación por favor." -#: ../../include/enotify.php:247 +#: include/enotify.php:257 msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" +msgstr "[Notificación:Friendica] Un nuevo contacto comparte contigo" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#: include/enotify.php:258 include/enotify.php:259 #, php-format msgid "%1$s is sharing with you at %2$s" -msgstr "" +msgstr "%1$s comparte con tigo en %2$s" -#: ../../include/enotify.php:255 +#: include/enotify.php:265 msgid "[Friendica:Notify] You have a new follower" -msgstr "" +msgstr "[Notificación:Friendica] Tienes un nuevo seguidor" -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: include/enotify.php:266 include/enotify.php:267 #, php-format msgid "You have a new follower at %2$s : %1$s" -msgstr "" +msgstr "Tienes un nuevo seguidor en %2$s : %1$s" -#: ../../include/enotify.php:270 +#: include/enotify.php:280 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notificación] Sugerencia de amigo recibida" -#: ../../include/enotify.php:271 +#: include/enotify.php:281 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Has recibido una sugerencia de amigo de '%1$s' en %2$s" -#: ../../include/enotify.php:272 +#: include/enotify.php:282 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Has recibido [url=%1$s]una sugerencia de amigo[/url] en %2$s de %3$s." -#: ../../include/enotify.php:277 +#: include/enotify.php:287 msgid "Name:" msgstr "Nombre: " -#: ../../include/enotify.php:278 +#: include/enotify.php:288 msgid "Photo:" msgstr "Foto: " -#: ../../include/enotify.php:281 +#: include/enotify.php:291 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s para aceptar o rechazar la sugerencia por favor." -#: ../../include/enotify.php:289 ../../include/enotify.php:302 +#: include/enotify.php:299 include/enotify.php:312 msgid "[Friendica:Notify] Connection accepted" -msgstr "" +msgstr "[Notificación:Friendica] Conexión aceptada" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#: include/enotify.php:300 include/enotify.php:313 #, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' acepto tu consulta de conexión %2$s" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#: include/enotify.php:301 include/enotify.php:314 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" +msgstr "%2$s hacepto tu [url=%1$s]consulta de conexión[/url]." -#: ../../include/enotify.php:294 +#: include/enotify.php:304 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." -msgstr "" +msgstr "Ahora tienes una amistad mutua y podrán intercambiar actualizaciones de estados, imágenes, y correo\n\tsin restricciones" -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: include/enotify.php:307 include/enotify.php:321 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" +msgstr "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto." -#: ../../include/enotify.php:307 +#: include/enotify.php:317 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " "communication - such as private messaging and some profile interactions. If " "this is a celebrity or community page, these settings were applied " "automatically." -msgstr "" +msgstr "'%1$s' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente." -#: ../../include/enotify.php:309 +#: include/enotify.php:319 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " -msgstr "" +msgstr "'%1$s' puede elegir de extender la relación hacia una relación de ida y vuelta o otras configuración mas permisiva en el futuro." -#: ../../include/enotify.php:322 +#: include/enotify.php:332 msgid "[Friendica System:Notify] registration request" -msgstr "" +msgstr "[Notificacion:Friendica] consulta de registro" -#: ../../include/enotify.php:323 +#: include/enotify.php:333 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" +msgstr "Recibiste una consulta de registro de '%1$s' en %2$s" -#: ../../include/enotify.php:324 +#: include/enotify.php:334 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" +msgstr "Recibiste una [url=%1$s]consulta de registro[/url] from %2$s." -#: ../../include/enotify.php:327 +#: include/enotify.php:337 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" +msgstr "Nombre completo:\t%1$s\\nUbicación del sitio:\t%2$s\\nLogin Nombre:\t%3$s (%4$s)" -#: ../../include/enotify.php:330 +#: include/enotify.php:340 #, php-format msgid "Please visit %s to approve or reject the request." -msgstr "" +msgstr "Por favor visita %s para aprobar o negar la solicitud." -#: ../../include/oembed.php:212 +#: include/oembed.php:220 msgid "Embedded content" msgstr "Contenido integrado" -#: ../../include/oembed.php:221 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "Contenido incrustrado desabilitado" -#: ../../include/uimport.php:94 +#: include/uimport.php:94 msgid "Error decoding account file" -msgstr "" +msgstr "Error decodificando el archivo de cuenta" -#: ../../include/uimport.php:100 +#: include/uimport.php:100 msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" +msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " -#: ../../include/uimport.php:116 ../../include/uimport.php:127 +#: include/uimport.php:116 include/uimport.php:127 msgid "Error! Cannot check nickname" -msgstr "" +msgstr "Error! No puedo consultar el apodo" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: include/uimport.php:120 include/uimport.php:131 #, php-format msgid "User '%s' already exists on this server!" -msgstr "" +msgstr "La cuenta '%s' ya existe en este servidor!" -#: ../../include/uimport.php:153 +#: include/uimport.php:153 msgid "User creation error" -msgstr "" +msgstr "Error al crear la cuenta" -#: ../../include/uimport.php:171 +#: include/uimport.php:173 msgid "User profile creation error" -msgstr "" +msgstr "Error de creación del perfil de la cuenta" -#: ../../include/uimport.php:220 +#: include/uimport.php:222 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d contactos no encontrado" +msgstr[1] "%d contactos no importado" -#: ../../include/uimport.php:290 +#: include/uimport.php:292 msgid "Done. You can now login with your username and password" -msgstr "" +msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña." -#: ../../index.php:428 +#: index.php:441 msgid "toggle mobile" msgstr "Cambiar a versión móvil" -#: ../../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 "Configuración del Tema" - -#: ../../view/theme/cleanzero/config.php:83 +#: view/theme/cleanzero/config.php:83 msgid "Set resize level for images in posts and comments (width and height)" msgstr "Configurar el tamaño de las imágenes en las publicaciones" -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 +#: 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 "Tamaño del texto para publicaciones y comentarios" -#: ../../view/theme/cleanzero/config.php:85 +#: view/theme/cleanzero/config.php:85 msgid "Set theme width" msgstr "Establecer el ancho para el tema" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 msgid "Color scheme" msgstr "Esquema de color" -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 msgid "Set line-height for posts and comments" msgstr "Altura para las publicaciones y comentarios" -#: ../../view/theme/dispy/config.php:75 +#: view/theme/dispy/config.php:75 msgid "Set colour scheme" msgstr "Configurar esquema de color" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "Alineación" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Left" msgstr "Izquierda" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Center" msgstr "Centrado" -#: ../../view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:69 msgid "Posts font size" -msgstr "" +msgstr "Tamaño de letra del titulo de las publicaciones" -#: ../../view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:70 msgid "Textareas font size" -msgstr "" +msgstr "Tamaño de letra del área de texto" -#: ../../view/theme/diabook/config.php:153 +#: view/theme/diabook/config.php:153 msgid "Set resolution for middle column" msgstr "Resolución para la columna central" -#: ../../view/theme/diabook/config.php:154 +#: view/theme/diabook/config.php:154 msgid "Set color scheme" msgstr "Configurar esquema de color" -#: ../../view/theme/diabook/config.php:155 +#: view/theme/diabook/config.php:155 msgid "Set zoomfactor for Earth Layer" msgstr "Establecer zoom para Minimapa" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 msgid "Set longitude (X) for Earth Layers" msgstr "Configurar longitud (X) en Minimapa" -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 msgid "Set latitude (Y) for Earth Layers" msgstr "Configurar latitud (Y) en Minimapa" -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 +#: view/theme/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áginas de Comunidad" -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 msgid "Earth Layers" msgstr "Minimapa" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 msgid "Community Profiles" msgstr "Perfiles de la Comunidad" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 msgid "Help or @NewHere ?" msgstr "¿Ayuda o @NuevoAquí?" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 msgid "Connect Services" msgstr "Servicios conectados" -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 msgid "Find Friends" msgstr "Buscar amigos" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 msgid "Last users" msgstr "Últimos usuarios" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 msgid "Last photos" msgstr "Últimas fotos" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 msgid "Last likes" msgstr "Últimos \"me gusta\"" -#: ../../view/theme/diabook/theme.php:125 +#: view/theme/diabook/theme.php:125 msgid "Your contacts" msgstr "Tus contactos" -#: ../../view/theme/diabook/theme.php:128 +#: view/theme/diabook/theme.php:128 msgid "Your personal photos" msgstr "Tus fotos personales" -#: ../../view/theme/diabook/theme.php:524 +#: view/theme/diabook/theme.php:524 msgid "Local Directory" msgstr "Directorio local" -#: ../../view/theme/diabook/theme.php:584 +#: view/theme/diabook/theme.php:584 msgid "Set zoomfactor for Earth Layers" msgstr "Configurar zoom en Minimapa" -#: ../../view/theme/diabook/theme.php:622 +#: view/theme/diabook/theme.php:622 msgid "Show/hide boxes at right-hand column:" msgstr "Mostrar/Ocultar casillas en la columna derecha:" -#: ../../view/theme/vier/config.php:56 +#: view/theme/vier/config.php:59 msgid "Set style" -msgstr "" +msgstr "Definir estilo" -#: ../../view/theme/duepuntozero/config.php:45 +#: view/theme/duepuntozero/config.php:45 msgid "greenzero" -msgstr "" +msgstr "greenzero" -#: ../../view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:46 msgid "purplezero" -msgstr "" +msgstr "purplezero" -#: ../../view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:47 msgid "easterbunny" -msgstr "" +msgstr "easterbunny" -#: ../../view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:48 msgid "darkzero" -msgstr "" +msgstr "darkzero" -#: ../../view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:49 msgid "comix" -msgstr "" +msgstr "comix" -#: ../../view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:50 msgid "slackr" -msgstr "" +msgstr "slackr" -#: ../../view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:62 msgid "Variations" -msgstr "" +msgstr "Variaciones" diff --git a/view/es/strings.php b/view/es/strings.php index 808c53db5..3eb6ae050 100644 --- a/view/es/strings.php +++ b/view/es/strings.php @@ -6,8 +6,8 @@ function string_plural_select_es($n){ }} ; $a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", + 0 => "%d contactos editados", + 1 => "%d contactos editados", ); $a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; $a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; @@ -50,6 +50,10 @@ $a->strings["Toggle Archive status"] = "Cambiar archivados"; $a->strings["Repair"] = "Reparar"; $a->strings["Advanced Contact Settings"] = "Configuración avanzada"; $a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; +$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds"; +$a->strings["Disabled"] = "Deshabilitado"; +$a->strings["Fetch information"] = "Recaudar informacion"; +$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves"; $a->strings["Contact Editor"] = "Editor de contactos"; $a->strings["Submit"] = "Envíar"; $a->strings["Profile Visibility"] = "Visibilidad del Perfil"; @@ -70,14 +74,11 @@ $a->strings["Currently ignored"] = "Ignorados"; $a->strings["Currently archived"] = "Archivados"; $a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás."; $a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; -$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["Notification for new posts"] = "Notificacion de nuevos temas."; +$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto."; +$a->strings["Blacklisted keywords"] = "Lista negra de palabras"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"; +$a->strings["Profile URL"] = "URL Perfil"; $a->strings["Suggestions"] = "Sugerencias"; $a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas"; $a->strings["All Contacts"] = "Todos los contactos"; @@ -92,16 +93,16 @@ $a->strings["Archived"] = "Archivados"; $a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; $a->strings["Hidden"] = "Ocultos"; $a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; -$a->strings["Mutual Friendship"] = "Amistad recíproca"; -$a->strings["is a fan of yours"] = "es tu fan"; -$a->strings["you are a fan of"] = "eres fan de"; -$a->strings["Edit contact"] = "Modificar contacto"; $a->strings["Contacts"] = "Contactos"; $a->strings["Search your contacts"] = "Buscar en tus contactos"; $a->strings["Finding: "] = "Buscando: "; $a->strings["Find"] = "Buscar"; $a->strings["Update"] = "Actualizar"; $a->strings["Delete"] = "Eliminar"; +$a->strings["Mutual Friendship"] = "Amistad recíproca"; +$a->strings["is a fan of yours"] = "es tu fan"; +$a->strings["you are a fan of"] = "eres fan de"; +$a->strings["Edit contact"] = "Modificar contacto"; $a->strings["No profile"] = "Nigún perfil"; $a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar"; @@ -162,7 +163,7 @@ $a->strings["Profile Photos"] = "Foto del perfil"; $a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s]."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente."; $a->strings["Unable to process image"] = "Imposible procesar la imagen"; -$a->strings["Image exceeds size limit of %d"] = "El tamaño de la imagen supera el límite de %d"; +$a->strings["Image exceeds size limit of %s"] = "La imagen excede el limite de %s"; $a->strings["Unable to process image."] = "Imposible procesar la imagen."; $a->strings["Upload File:"] = "Subir archivo:"; $a->strings["Select a profile:"] = "Elige un perfil:"; @@ -185,6 +186,13 @@ $a->strings["Remove"] = "Eliminar"; $a->strings["Save to Folder:"] = "Guardar en directorio:"; $a->strings["- select -"] = "- seleccionar -"; $a->strings["Save"] = "Guardar"; +$a->strings["You already added this contact."] = "Ya has añadido este contacto."; +$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; +$a->strings["Does %s know you?"] = "¿%s te conoce?"; +$a->strings["No"] = "No"; +$a->strings["Add a personal note:"] = "Añade una nota personal:"; +$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; +$a->strings["Submit Request"] = "Enviar solicitud"; $a->strings["Contact added"] = "Contacto añadido"; $a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; $a->strings["Empty post discarded."] = "Publicación vacía descartada."; @@ -198,14 +206,14 @@ $a->strings["Group created."] = "Grupo creado."; $a->strings["Could not create group."] = "Imposible crear el grupo."; $a->strings["Group not found."] = "Grupo no encontrado."; $a->strings["Group name changed."] = "El nombre del grupo ha cambiado."; -$a->strings["Save Group"] = ""; +$a->strings["Save Group"] = "Guardar grupo"; $a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; $a->strings["Group Name: "] = "Nombre del grupo: "; $a->strings["Group removed."] = "Grupo eliminado."; $a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; $a->strings["Group Editor"] = "Editor de grupos"; $a->strings["Members"] = "Miembros"; -$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios."; $a->strings["Applications"] = "Aplicaciones"; $a->strings["No installed applications."] = "Sin aplicaciones"; $a->strings["Profile not found."] = "Perfil no encontrado."; @@ -231,20 +239,23 @@ $a->strings["[Name Withheld]"] = "[Nombre oculto]"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s se ha unido a %2\$s"; $a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; $a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; -$a->strings["No videos selected"] = ""; +$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?"; +$a->strings["Delete Video"] = "Borrar vídeo"; +$a->strings["No videos selected"] = "Ningún vídeo seleccionado"; $a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -$a->strings["View Video"] = ""; +$a->strings["View Video"] = "Ver vídeo"; $a->strings["View Album"] = "Ver Álbum"; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; +$a->strings["Recent Videos"] = "Vídeos recientes"; +$a->strings["Upload New Videos"] = "Subir nuevos vídeos"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado el %3\$s de %2\$s con %4\$s"; $a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; $a->strings["Suggest Friends"] = "Sugerencias de amistad"; $a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; +$a->strings["Invalid request."] = "Consulta invalida"; $a->strings["No valid account found."] = "No se ha encontrado ninguna cuenta válida"; $a->strings["Password reset request issued. Check your email."] = "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo."; -$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["\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."] = "\n\t\tEstimado %1\$s,\n\t\t\tUna consulta llego recientemente a \"%2\$s\" para renovar su\n\t\tcontraseña. Para confirmar esta solicitud por favor seleccione el enlace de verificación mas \n\t\tabajo o copie a pegue el mismo en la barra de dirección de su navegador.\n\n\t\tSi NO ha solicitado este cambio por favor NO SIGA este enlace\n\t\tproporcionado y ignore o borre este mail.\n\n\t\tSu contraseña no sera cambiada hasta que podamos verificar que usted haza\n\t\tsolicitado este cambio.."; +$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\tSiga este enlace para verificar su identidad:\n\n\t\t%1\$s\n\n\t\tA continuación recibirá un mensaje consecutivo conteniendo la nueva contraseña.\n\t\tPodrá cambiar la contraseña después de haber accedido a la cuenta.\n\n\t\tLos detalles del acceso son las siguientes:\n\n\t\tDirección del sitio:\t%2\$s\n\t\tNombre de la cuenta:\t%3\$s"; $a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; $a->strings["Password Reset"] = "Restablecer la contraseña"; @@ -253,8 +264,8 @@ $a->strings["Your new password is"] = "Tu nueva contraseña es"; $a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña y luego"; $a->strings["click here to login"] = "pulsa aquí para acceder"; $a->strings["Your password may be changed from the Settings page after successful login."] = "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito."; -$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["\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\tEstimado %1\$s,\n\t\t\t\t\tSu contraseña ha cambiado como solicitado. Por favor guarde esta\n\t\t\t\tinformación para sus documentación (o cambie su contraseña inmediatamente a\n\t\t\t\talgo que pueda recordar).\n\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"] = "\n\t\t\t\tSus datos de acceso son las siguientes:\n\n\t\t\t\tDirección del sitio:\t%1\$s\n\t\t\t\tNombre de cuenta:\t%2\$s\n\t\t\t\tContraseña:\t%3\$s\n\n\t\t\t\tPodrá cambiar esta contraseña después de ingresar al sitio en su pagina de configuración.\n\t\t\t"; $a->strings["Your password has been changed at %s"] = "Tu contraseña se ha cambiado por %s"; $a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; @@ -265,13 +276,6 @@ $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de $a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo"; $a->strings["{0} sent you a message"] = "{0} te ha enviado un mensaje"; $a->strings["{0} requested registration"] = "{0} solicitudes de registro"; -$a->strings["{0} commented %s's post"] = "{0} comentó la publicación de %s"; -$a->strings["{0} liked %s's post"] = "A {0} le ha gustado la publicación de %s"; -$a->strings["{0} disliked %s's post"] = "A {0} no le ha gustado la publicación de %s"; -$a->strings["{0} is now friends with %s"] = "{0} ahora es amigo de %s"; -$a->strings["{0} posted"] = "{0} publicado"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetó la publicación de %s como #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} te mencionó en una publicación"; $a->strings["No contacts."] = "Ningún contacto."; $a->strings["View Contacts"] = "Ver contactos"; $a->strings["Invalid request identifier."] = "Solicitud de identificación no válida."; @@ -292,12 +296,17 @@ $a->strings["Approve"] = "Aprobar"; $a->strings["Claims to be known to you: "] = "Dice conocerte: "; $a->strings["yes"] = "sí"; $a->strings["no"] = "no"; -$a->strings["Approve as: "] = "Aprobar como: "; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Admirador\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Sharer\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:"; $a->strings["Friend"] = "Amigo"; $a->strings["Sharer"] = "Lector"; $a->strings["Fan/Admirer"] = "Fan/Admirador"; $a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; $a->strings["New Follower"] = "Nuevo seguidor"; +$a->strings["Location:"] = "Localización:"; +$a->strings["About:"] = "Acerca de:"; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Gender:"] = "Género:"; $a->strings["No introductions."] = "Sin presentaciones."; $a->strings["Notifications"] = "Notificaciones"; $a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; @@ -366,9 +375,10 @@ $a->strings["Repair Contact Settings"] = "Reparar la configuración del Contacto $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página."; $a->strings["Return to contact editor"] = "Volver al editor de contactos"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; +$a->strings["No mirroring"] = "No espejar"; +$a->strings["Mirror as forwarded posting"] = "Espejar como reenvio"; +$a->strings["Mirror as my own posting"] = "Espejar como publicación propia"; +$a->strings["Refetch contact data"] = "Volver a solicitar datos del contacto."; $a->strings["Name"] = "Nombre"; $a->strings["Account Nickname"] = "Apodo de la cuenta"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Etiqueta - Sobrescribe el Nombre/Apodo"; @@ -378,13 +388,14 @@ $a->strings["Friend Confirm URL"] = "Dirección de confirmación de tu amigo "; $a->strings["Notification Endpoint URL"] = "Dirección URL de la notificación"; $a->strings["Poll/Feed URL"] = "Dirección del Sondeo/Fuentes"; $a->strings["New photo from this URL"] = "Nueva foto de esta dirección"; -$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["Remote Self"] = "Perfil remoto"; +$a->strings["Mirror postings from this contact"] = "Espejar publicaciones de este contacto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta."; $a->strings["Login"] = "Acceder"; -$a->strings["The post was created"] = ""; +$a->strings["The post was created"] = "La publicación fue creada"; $a->strings["Access denied."] = "Acceso denegado."; -$a->strings["People Search"] = "Buscar personas"; +$a->strings["People Search - %s"] = "Buscar perfiles - %s"; +$a->strings["Connect"] = "Conectar"; $a->strings["No matches"] = "Sin conincidencias"; $a->strings["Photos"] = "Fotografías"; $a->strings["Files"] = "Archivos"; @@ -395,13 +406,21 @@ $a->strings["Users"] = "Usuarios"; $a->strings["Plugins"] = "Módulos"; $a->strings["Themes"] = "Temas"; $a->strings["DB updates"] = "Actualizaciones de la Base de Datos"; +$a->strings["Inspect Queue"] = "Inspeccionar cola"; $a->strings["Logs"] = "Registros"; -$a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; +$a->strings["probe address"] = "probar direccion"; +$a->strings["check webfinger"] = "Verificar webfinger"; $a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Características del módulo"; -$a->strings["diagnostics"] = ""; +$a->strings["diagnostics"] = "diagnosticos"; $a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación"; +$a->strings["Administration"] = "Administración"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Nombre del recipiente"; +$a->strings["Recipient Profile"] = "Perfil del recipiente"; +$a->strings["Created"] = "Creado"; +$a->strings["Last Tried"] = "Ultimo intento"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. "; $a->strings["Normal Account"] = "Cuenta normal"; $a->strings["Soapbox Account"] = "Cuenta tribuna"; $a->strings["Community/Celebrity Account"] = "Cuenta de Comunidad/Celebridad"; @@ -409,23 +428,28 @@ $a->strings["Automatic Friend Account"] = "Cuenta de amistad automática"; $a->strings["Blog Account"] = "Cuenta de blog"; $a->strings["Private Forum"] = "Foro privado"; $a->strings["Message queues"] = "Cola de mensajes"; -$a->strings["Administration"] = "Administración"; $a->strings["Summary"] = "Resumen"; $a->strings["Registered users"] = "Usuarios registrados"; $a->strings["Pending registrations"] = "Pendientes de registro"; $a->strings["Version"] = "Versión"; $a->strings["Active plugins"] = "Módulos activos"; -$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["Can not parse base url. Must have at least ://"] = "No se puede resolver la direccion URL base.\nDeberá tener al menos ://"; $a->strings["Site settings updated."] = "Configuración de actualización."; $a->strings["No special theme for mobile devices"] = "No hay tema especial para dispositivos móviles"; -$a->strings["No community page"] = ""; -$a->strings["Public postings from users of this site"] = ""; -$a->strings["Global community page"] = ""; -$a->strings["At post arrival"] = ""; +$a->strings["No community page"] = "No hay pagina de comunidad"; +$a->strings["Public postings from users of this site"] = "Temas públicos de perfiles de este sitio."; +$a->strings["Global community page"] = "Pagina global de comunidad"; +$a->strings["At post arrival"] = "A la llegada de una publicación"; $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "Cada hora"; $a->strings["Twice daily"] = "Dos veces al día"; $a->strings["Daily"] = "Diariamente"; +$a->strings["Users, Global Contacts"] = "Perfiles, contactos globales"; +$a->strings["Users, Global Contacts/fallback"] = "Perfiles, contactos globales/fallback"; +$a->strings["One month"] = "Un mes"; +$a->strings["Three months"] = "Tres meses"; +$a->strings["Half a year"] = "Medio año"; +$a->strings["One year"] = "Un año"; $a->strings["Multi user instance"] = "Sesión multi usuario"; $a->strings["Closed"] = "Cerrado"; $a->strings["Requires approval"] = "Requiere aprobación"; @@ -433,21 +457,25 @@ $a->strings["Open"] = "Abierto"; $a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"; $a->strings["Force all links to use SSL"] = "Forzar todos los enlaces a utilizar SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"; -$a->strings["Save Settings"] = ""; +$a->strings["Save Settings"] = "Guardar configuración"; $a->strings["Registration"] = "Registro"; $a->strings["File upload"] = "Subida de archivo"; $a->strings["Policies"] = "Políticas"; $a->strings["Advanced"] = "Avanzado"; +$a->strings["Auto Discovered Contact Directory"] = "Directorio de contactos descubierto automáticamente"; $a->strings["Performance"] = "Rendimiento"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. "; $a->strings["Site name"] = "Nombre del sitio"; -$a->strings["Host name"] = ""; -$a->strings["Sender Email"] = ""; +$a->strings["Host name"] = "Nombre de dominio"; +$a->strings["Sender Email"] = "Dirección de origen de correo electrónico"; +$a->strings["The email address your server shall use to send notification emails from."] = ""; $a->strings["Banner/Logo"] = "Imagen/Logotipo"; -$a->strings["Shortcut icon"] = ""; -$a->strings["Touch icon"] = ""; -$a->strings["Additional Info"] = ""; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; +$a->strings["Shortcut icon"] = "Icono de atajo"; +$a->strings["Link to an icon that will be used for browsers."] = ""; +$a->strings["Touch icon"] = "Icono touch"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; +$a->strings["Additional Info"] = "Información adicional"; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Para servidores públicos: información adicional que sera publicado en %s/siteinfo."; $a->strings["System language"] = "Idioma"; $a->strings["System theme"] = "Tema"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema"; @@ -455,10 +483,10 @@ $a->strings["Mobile system theme"] = "Tema de sistema móvil"; $a->strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; $a->strings["SSL link policy"] = "Política de enlaces SSL"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si los enlaces generados deben ser forzados a utilizar 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["Force SSL"] = "Forzar SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."; +$a->strings["Old style 'Share'"] = "Viejo estilo de 'reenviar'"; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Desactiva el elemento bbcode 'reenviar' para objetos repetidos."; $a->strings["Hide help entry from navigation menu"] = "Ocultar la ayuda en el menú de navegación"; $a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente."; $a->strings["Single user instance"] = "Sesión de usuario único"; @@ -492,12 +520,12 @@ $a->strings["Private posts by default for new users"] = "Publicaciones privadas $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público."; $a->strings["Don't include post content in email notifications"] = "No incluir el contenido del post en las notificaciones de correo electrónico"; $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."] = "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad."; -$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["Disallow public access to addons listed in the apps menu."] = "Deshabilitar acceso a addons listados en el menú de aplicaciones."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."; +$a->strings["Don't embed private images in posts"] = "No agregar imágenes privados en las publicaciones"; +$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."] = "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar."; +$a->strings["Allow Users to set remote_self"] = "Permitir a los usuarios de definir perfiles_remotos"; +$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."] = "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil."; $a->strings["Block multiple registrations"] = "Bloquear registros multiples"; $a->strings["Disallow users to register additional accounts for use as pages."] = "Impedir que los usuarios registren cuentas adicionales para su uso como páginas."; $a->strings["OpenID support"] = "Soporte OpenID"; @@ -506,14 +534,14 @@ $a->strings["Fullname check"] = "Comprobar Nombre completo"; $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam"; $a->strings["UTF-8 Regular expressions"] = "Expresiones regulares UTF-8"; $a->strings["Use PHP UTF8 regular expressions"] = "Usar expresiones regulares de UTF8 en PHP"; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Community Page Style"] = "Estilo de pagina de comunidad"; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo de pagina de comunidad a visualizar. 'Comunidad global' muestra todas las publicaciones publicas de la red abierta federada que llega a este servidor."; +$a->strings["Posts per user on community page"] = "Publicaciones por usuario en la pagina de comunidad"; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')"; $a->strings["Enable OStatus support"] = "Permitir soporte 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."] = ""; -$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["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Proporcionar OStatus compatibilidad integrada (StatusNet, GNU Social, Quitter etc.). Todas las comunicaciones en OStatus son publicas así que eventuales advertencias serán ocasionalmente desplegadas."; +$a->strings["OStatus conversation completion interval"] = "Intervalo de actualización de conversaciones OStatus"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Cuan seguido el recolector deberá buscar nuevas entradas en OStatus? Esto puede ser un trabajo de mucha carga para los recursos del servidor."; $a->strings["Enable Diaspora support"] = "Habilitar el soporte para Diaspora*"; $a->strings["Provide built-in Diaspora network compatibility."] = "Provee una compatibilidad con la red de Diaspora."; $a->strings["Only allow Friendica contacts"] = "Permitir solo contactos de Friendica"; @@ -530,42 +558,63 @@ $a->strings["Poll interval"] = "Intervalo de sondeo"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar los procesos en segundo plano de sondeo en esta cantidad de segundos para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega."; $a->strings["Maximum Load Average"] = "Promedio de carga máxima"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50."; +$a->strings["Maximum Load Average (Frontend)"] = "Carga máxima promedio (frontend)"; +$a->strings["Maximum system load before the frontend quits service - default 50."] = "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50."; +$a->strings["Periodical check of global contacts"] = "Verificación periódica de los contactos globales."; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Habilitado los contactos globales son verificado periódicamente por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores."; +$a->strings["Discover contacts from other servers"] = "Descubrir contactos de otros servidores"; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'"; +$a->strings["Timeframe for fetching global contacts"] = "Intervalos de tiempo para revisar contactos globales."; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)"; +$a->strings["Search the local directory"] = "Buscar el directorio local"; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida."; +$a->strings["Publish server information"] = "Publicar información del servidor"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Si habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea the-federation.info por detalles."; $a->strings["Use MySQL full text engine"] = "Usar motor MySQL de texto completo"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activa el motor de texto completo. Agiliza las búsquedas, pero solo busca cuatro o más caracteres."; -$a->strings["Suppress Language"] = ""; -$a->strings["Suppress language information in meta information about a posting."] = ""; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Suppress Language"] = "Suprimir idiomas"; +$a->strings["Suppress language information in meta information about a posting."] = "Suprimir la información de datos meta sobre informaciones de idiomas en las publicaciones."; +$a->strings["Suppress Tags"] = "Suprimir tags"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Suprimir la lista de tags al final de una publicación."; $a->strings["Path to item cache"] = "Ruta a la caché del objeto"; +$a->strings["The item caches buffers generated bbcode and external images."] = "El buffer de cache de items generado para bbcodes e imágenes externas. "; $a->strings["Cache duration in seconds"] = "Duración de la caché en segundos"; -$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["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."] = "¿Por cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1."; +$a->strings["Maximum numbers of comments per post"] = "Numero máximo de respuestas por tema"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."; $a->strings["Path for lock file"] = "Ruta al archivo protegido"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "El archivo lock es usado para evitar multiples pooler (recolectores de información) a la vez. Defina solo una carpeta aquí."; $a->strings["Temp path"] = "Ruta a los temporales"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. "; $a->strings["Base path to installation"] = "Ruta base para la instalación"; -$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["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"] = ""; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."; +$a->strings["Disable picture proxy"] = "Deshabilitar proxy de imagen"; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda."; +$a->strings["Enable old style pager"] = "Habilitar paginación estilo viejo"; +$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "La paginación al estilo viejo tiene números de paginas pero enlentece masivamente la velocidad de la pagina."; +$a->strings["Only search in tags"] = "Solo buscar en tags"; +$a->strings["On large systems the text search can slow down the system extremely."] = "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."; +$a->strings["New base url"] = "Nueva URLbase"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Cambiar base URL para este servidor. Envía mensajes de relocalisación a todos los contactos DFRN."; +$a->strings["RINO Encryption"] = "Encryptado RINO"; +$a->strings["Encryption layer between nodes."] = "Capa de encryptación entre nodos."; +$a->strings["Embedly API key"] = "Embedly llave de API (API key) "; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = "Embedly es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional."; $a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito"; -$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."] = "Actualización de base de datos %s fue aplicada con éxito."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"; +$a->strings["Executing %s failed with error: %s"] = "Paso %s fallo con el error: %s"; $a->strings["Update %s was successfully applied."] = "Actualización %s aplicada con éxito."; $a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización %s no ha informado, se desconoce el estado."; -$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."] = "No había función adicional de actualización %s que necesitaba ser requerida."; $a->strings["No failed updates."] = "Actualizaciones sin fallos."; -$a->strings["Check database structure"] = ""; +$a->strings["Check database structure"] = "Revisar estructura de la base de datos"; $a->strings["Failed Updates"] = "Actualizaciones fallidas"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "No se incluyen las anteriores a la 1139, que no indicaban su estado."; $a->strings["Mark success (if update was manually applied)"] = "Marcar como correcta (si actualizaste manualmente)"; $a->strings["Attempt to execute this update step automatically"] = "Intentando ejecutar este paso automáticamente"; -$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["\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\tEstimado %1\$s,\n\t\t\t\tel administrador de %2\$s ha creado una cuenta para usted."; +$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."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%1\$s\n\t\t\tNombre de la cuenta:\t\t%2\$s\n\t\t\tContraseña:\t\t%3\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %4\$s."; $a->strings["Registration details for %s"] = "Detalles de registro para %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s usuario bloqueado/desbloqueado", @@ -578,28 +627,28 @@ $a->strings["%s user deleted"] = array( $a->strings["User '%s' deleted"] = "Usuario '%s' eliminado"; $a->strings["User '%s' unblocked"] = "Usuario '%s' desbloqueado"; $a->strings["User '%s' blocked"] = "Usuario '%s' bloqueado'"; -$a->strings["Add User"] = ""; +$a->strings["Add User"] = "Agregar usuario"; $a->strings["select all"] = "seleccionar todo"; $a->strings["User registrations waiting for confirm"] = "Registro de usuarios esperando confirmación"; -$a->strings["User waiting for permanent deletion"] = ""; +$a->strings["User waiting for permanent deletion"] = "Usuario esperando anulación permanente."; $a->strings["Request date"] = "Solicitud de fecha"; $a->strings["Email"] = "Correo electrónico"; $a->strings["No registrations."] = "Sin registros."; $a->strings["Deny"] = "Denegado"; $a->strings["Site admin"] = "Administrador de la web"; $a->strings["Account expired"] = "Cuenta caducada"; -$a->strings["New User"] = ""; +$a->strings["New User"] = "Nuevo usuario"; $a->strings["Register date"] = "Fecha de registro"; $a->strings["Last login"] = "Último acceso"; $a->strings["Last item"] = "Último elemento"; -$a->strings["Deleted since"] = ""; +$a->strings["Deleted since"] = "Borrado desde"; $a->strings["Account"] = "Cuenta"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; $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?"] = "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; -$a->strings["Name of the new user."] = ""; -$a->strings["Nickname"] = ""; -$a->strings["Nickname of the new user."] = ""; -$a->strings["Email address of the new user."] = ""; +$a->strings["Name of the new user."] = "Nombre del nuevo usuario"; +$a->strings["Nickname"] = "Apodo"; +$a->strings["Nickname of the new user."] = "Apodo del nuevo perfil."; +$a->strings["Email address of the new user."] = "Dirección de correo del nuevo perfil."; $a->strings["Plugin %s disabled."] = "Módulo %s deshabilitado."; $a->strings["Plugin %s enabled."] = "Módulo %s habilitado."; $a->strings["Disable"] = "Desactivado"; @@ -613,7 +662,7 @@ $a->strings["[Experimental]"] = "[Experimental]"; $a->strings["[Unsupported]"] = "[Sin soporte]"; $a->strings["Log settings updated."] = "Configuración de registro actualizada."; $a->strings["Clear"] = "Limpiar"; -$a->strings["Enable Debugging"] = ""; +$a->strings["Enable Debugging"] = "Habilitar debugging"; $a->strings["Log file"] = "Archivo de registro"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."; $a->strings["Log level"] = "Nivel de registro"; @@ -622,7 +671,7 @@ $a->strings["FTP Host"] = "Hospedaje FTP"; $a->strings["FTP Path"] = "Ruta FTP"; $a->strings["FTP User"] = "Usuario FTP"; $a->strings["FTP Password"] = "Contraseña FTP"; -$a->strings["Search Results For:"] = "Resultados de la busqueda para:"; +$a->strings["Search Results For: %s"] = "Buscar resultados para: %s"; $a->strings["Remove term"] = "Eliminar término"; $a->strings["Saved Searches"] = "Búsquedas guardadas"; $a->strings["add"] = "añadir"; @@ -644,12 +693,13 @@ $a->strings["Warning: This group contains %s member from an insecure network."] $a->strings["Private messages to this group are at risk of public disclosure."] = "Los mensajes privados a este grupo corren el riesgo de ser mostrados públicamente."; $a->strings["No such group"] = "Ningún grupo"; $a->strings["Group is empty"] = "El grupo está vacío"; -$a->strings["Group: "] = "Grupo: "; -$a->strings["Contact: "] = "Contacto: "; +$a->strings["Group: %s"] = "Grupo: %s"; +$a->strings["Contact: %s"] = "Contacto: %s"; $a->strings["Private messages to this person are at risk of public disclosure."] = "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente."; $a->strings["Invalid contact."] = "Contacto erróneo."; $a->strings["Friends of %s"] = "Amigos de %s"; $a->strings["No friends to display."] = "No hay amigos para mostrar."; +$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de su comienzo."; $a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editar evento"; @@ -658,18 +708,17 @@ $a->strings["Events"] = "Eventos"; $a->strings["Create New Event"] = "Crea un evento nuevo"; $a->strings["Previous"] = "Previo"; $a->strings["Next"] = "Siguiente"; -$a->strings["hour:minute"] = "hora:minuto"; $a->strings["Event details"] = "Detalles del evento"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "El formato es %s %s. Fecha de inicio y título son obligatorios."; +$a->strings["Starting date and Title are required."] = "Se requiere fecha de comienzo y titulo"; $a->strings["Event Starts:"] = "Inicio del evento:"; $a->strings["Required"] = "Obligatorio"; $a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante."; $a->strings["Event Finishes:"] = "Finalización del evento:"; $a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria"; $a->strings["Description:"] = "Descripción:"; -$a->strings["Location:"] = "Localización:"; $a->strings["Title:"] = "Título:"; $a->strings["Share this event"] = "Comparte este evento"; +$a->strings["Preview"] = "Vista previa"; $a->strings["Select"] = "Seleccionar"; $a->strings["View %s's profile @ %s"] = "Ver perfil de %s @ %s"; $a->strings["%s from %s"] = "%s de %s"; @@ -700,7 +749,6 @@ $a->strings["Code"] = "Código"; $a->strings["Image"] = "Imagen"; $a->strings["Link"] = "Enlace"; $a->strings["Video"] = "Vídeo"; -$a->strings["Preview"] = "Vista previa"; $a->strings["Edit"] = "Editar"; $a->strings["add star"] = "Añadir estrella"; $a->strings["remove star"] = "Quitar estrella"; @@ -714,12 +762,13 @@ $a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:"; $a->strings["Remove My Account"] = "Eliminar mi cuenta"; $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; $a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; -$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Friendica Communications Server - Setup"] = "Servidor de comunicación Friendica - Configuración"; $a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos."; $a->strings["Could not create table."] = "No se puede crear la tabla."; $a->strings["Your Friendica site database has been installed."] = "La base de datos de su sitio web de Friendica ha sido instalada."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, consulta el archivo \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Base de datos ya se encuentra en uso"; $a->strings["System check"] = "Verificación del sistema"; $a->strings["Check again"] = "Compruebalo de nuevo"; $a->strings["Database connection"] = "Conexión con la base de datos"; @@ -739,9 +788,9 @@ $a->strings["If you don't have a command line version of PHP installed on server $a->strings["PHP executable path"] = "Dirección al ejecutable PHP"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación."; $a->strings["Command line PHP"] = "Línea de comandos PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = ""; -$a->strings["PHP cli binary"] = ""; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)"; +$a->strings["Found PHP version: "] = "Versión PHP encontrada:"; +$a->strings["PHP cli binary"] = "PHP cli binario"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado."; $a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes."; $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; @@ -765,11 +814,11 @@ $a->strings["This is most often a permission setting, as the web server may not $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."] = "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica."; $a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones."; $a->strings[".htconfig.php is writable"] = ".htconfig.php tiene permiso de escritura"; -$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["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar."; +$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."] = "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene."; +$a->strings["view/smarty3 is writable"] = "Se puede escribir en /view/smarty3"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración."; $a->strings["Url rewrite is working"] = "Reescribiendo la direcció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."] = "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web."; @@ -785,23 +834,22 @@ $a->strings["Not Found"] = "No se ha encontrado"; $a->strings["Page not found."] = "Página no encontrada."; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s"; $a->strings["Welcome to %s"] = "Bienvenido a %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"] = "El tamaño del archivo excede el límite de %d"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."; +$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?"; +$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s"; $a->strings["File upload failed."] = "Ha fallado la subida del archivo."; $a->strings["Profile Match"] = "Coincidencias de Perfil"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado."; $a->strings["is interested in:"] = "estás interesado en:"; -$a->strings["Connect"] = "Conectar"; $a->strings["link"] = "enlace"; $a->strings["Not available."] = "No disponible"; $a->strings["Community"] = "Comunidad"; $a->strings["No results."] = "Sin resultados."; $a->strings["everybody"] = "todos"; $a->strings["Additional features"] = "Características adicionales"; -$a->strings["Display"] = ""; -$a->strings["Social Networks"] = ""; -$a->strings["Delegations"] = ""; +$a->strings["Display"] = "Interfaz del usuario"; +$a->strings["Social Networks"] = "Redes sociales"; +$a->strings["Delegations"] = "Delegaciones"; $a->strings["Connected apps"] = "Aplicaciones conectadas"; $a->strings["Export personal data"] = "Exportación de datos personales"; $a->strings["Remove account"] = "Eliminar cuenta"; @@ -809,15 +857,15 @@ $a->strings["Missing some important data!"] = "¡Faltan algunos datos importante $a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; $a->strings["Email settings updated."] = "Configuración de correo actualizada."; $a->strings["Features updated"] = "Actualizaciones"; -$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Relocate message has been send to your contacts"] = "Mensaje de reubicación ha sido enviado a sus contactos."; $a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no ha sido modificada."; -$a->strings["Wrong password."] = ""; +$a->strings["Wrong password."] = "Contraseña incorrecta"; $a->strings["Password changed."] = "Contraseña modificada."; $a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."; $a->strings[" Please use a shorter name."] = " Usa un nombre más corto."; $a->strings[" Name too short."] = " Nombre demasiado corto."; -$a->strings["Wrong Password"] = ""; +$a->strings["Wrong Password"] = "Contraseña incorrecta"; $a->strings[" Not valid email."] = " Correo no válido."; $a->strings[" Cannot change to that email."] = " No se puede usar ese correo."; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto."; @@ -838,11 +886,16 @@ $a->strings["Plugin Settings"] = "Configuración de los módulos"; $a->strings["Off"] = "Apagado"; $a->strings["On"] = "Encendido"; $a->strings["Additional Features"] = "Características adicionales"; +$a->strings["General Social Media Settings"] = "Configuración general de social media "; +$a->strings["Disable intelligent shortening"] = "Deshabilitar recorte inteligente de URL"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones "; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario."; $a->strings["Built-in support for %s connectivity is %s"] = "El soporte integrado de conexión con %s está %s"; $a->strings["Diaspora"] = "Diaspora*"; $a->strings["enabled"] = "habilitado"; $a->strings["disabled"] = "deshabilitado"; -$a->strings["StatusNet"] = "StatusNet"; +$a->strings["GNU Social (OStatus)"] = "GNUsocial (OStatus)"; $a->strings["Email access is disabled on this site."] = "El acceso por correo está deshabilitado en esta web."; $a->strings["Email/Mailbox Setup"] = "Configuración del correo/buzón"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."; @@ -866,13 +919,14 @@ $a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx s $a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo 10 segundos, sin máximo"; $a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:"; $a->strings["Maximum of 100 items"] = "Máximo 100 elementos"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Cantidad de objetos a visualizar cuando se usa un movil"; $a->strings["Don't show emoticons"] = "No mostrar emoticones"; -$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["Don't show notices"] = "No mostrara avisos"; +$a->strings["Infinite scroll"] = "pagina infinita (sroll)"; +$a->strings["Automatic updates only at the top of the network page"] = "Actualizaciones automaticas solo estando al principio de la pagina"; +$a->strings["Theme settings"] = "Configuración del Tema"; +$a->strings["User Types"] = "Tipos de perfiles"; +$a->strings["Community Types"] = "Tipos de comunidades"; $a->strings["Normal Account Page"] = "Página de cuenta normal"; $a->strings["This account is a normal personal profile"] = "Esta cuenta es el perfil personal normal"; $a->strings["Soapbox Page"] = "Página de tribuna"; @@ -886,17 +940,16 @@ $a->strings["Private forum - approved members only"] = "Foro privado - solo miem $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; $a->strings["Publish your default profile in your local site directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?"; -$a->strings["No"] = "No"; $a->strings["Publish your default profile in the global social directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"; $a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. "; $a->strings["Allow friends to post to your profile page?"] = "¿Permites que tus amigos publiquen en tu página de perfil?"; $a->strings["Allow friends to tag your posts?"] = "¿Permites a los amigos etiquetar tus publicaciones?"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?"; $a->strings["Permit unknown people to send you private mail?"] = "¿Permites que desconocidos te manden correos privados?"; $a->strings["Profile is not published."] = "El perfil no está publicado."; -$a->strings["Your Identity Address is"] = "Tu dirección personal es"; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Su dirección de identidad es '%s' o '%s'."; $a->strings["Automatically expire posts after this many days:"] = "Las publicaciones expirarán automáticamente después de estos días:"; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"; $a->strings["Advanced expiration settings"] = "Configuración avanzada de expiración"; @@ -911,8 +964,8 @@ $a->strings["Password Settings"] = "Configuración de la contraseña"; $a->strings["New Password:"] = "Contraseña nueva:"; $a->strings["Confirm:"] = "Confirmar:"; $a->strings["Leave password fields blank unless changing"] = "Deja la contraseña en blanco si no quieres cambiarla"; -$a->strings["Current Password:"] = ""; -$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Current Password:"] = "Contraseña actual:"; +$a->strings["Your current password to confirm the changes"] = "Su contraseña actual para confirmar los cambios."; $a->strings["Password:"] = "Contraseña:"; $a->strings["Basic Settings"] = "Configuración básica"; $a->strings["Full Name:"] = "Nombre completo:"; @@ -945,13 +998,15 @@ $a->strings["You receive a private message"] = "Recibas un mensaje privado"; $a->strings["You receive a friend suggestion"] = "Recibas una sugerencia de amistad"; $a->strings["You are tagged in a post"] = "Seas etiquetado en una publicación"; $a->strings["You are poked/prodded/etc. in a post"] = "Te han tocado/empujado/etc. en una publicación"; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Activate desktop notifications"] = "Activar notificaciones en pantalla."; +$a->strings["Show desktop popup on new notifications"] = "Mostrar notificaciones emergentes en caso de nuevos eventos."; +$a->strings["Text-only notification emails"] = "Notificaciones e-mail de solo texto"; +$a->strings["Send text only notification emails, without the html part"] = "Enviar las notificaciones por correo con formato de solo texto sin html."; $a->strings["Advanced Account/Page Type Settings"] = "Configuración avanzada de tipo de Cuenta/Página"; $a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta para situaciones especiales"; -$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["Relocate"] = "Relocalizar"; +$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."] = "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)"; +$a->strings["Resend relocate message to contacts"] = "Reenviar mensaje de relocalización a los contactos"; $a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; $a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; $a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; @@ -977,24 +1032,19 @@ $a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; $a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; $a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; +$a->strings["Confirm"] = "Confirmar"; $a->strings["Hide this contact"] = "Ocultar este contacto"; $a->strings["Welcome home %s."] = "Bienvenido a casa %s"; $a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; -$a->strings["Confirm"] = "Confirmar"; $a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:"; -$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 aún no eres miembro de la red social libre sigue este enlace para encontrar un servidor público de Friendica y unirte a nosotros."; +$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 aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo"; $a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; -$a->strings["Does %s know you?"] = "¿%s te conoce?"; -$a->strings["Add a personal note:"] = "Añade una nota personal:"; $a->strings["Friendica"] = "Friendica"; $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Web Social Federada"; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."; -$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; -$a->strings["Submit Request"] = "Enviar solicitud"; $a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
    login: %s
    contraseña: %s

    Puede cambiar su contraseña después de ingresar al sitio."; $a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; $a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; @@ -1006,22 +1056,23 @@ $a->strings["Membership on this site is by invitation only."] = "Sitio solo acce $a->strings["Your invitation ID: "] = "ID de tu invitación: "; $a->strings["Your Full Name (e.g. Joe Smith): "] = "Tu nombre completo (por ejemplo, Manuel Pérez): "; $a->strings["Your Email Address: "] = "Tu dirección de correo: "; +$a->strings["Leave empty for an auto generated password."] = "Dejar vacío para autogenerar una contraseña"; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@\$nombredelsitio\"."; $a->strings["Choose a nickname: "] = "Escoge un apodo: "; $a->strings["Register"] = "Registrarse"; $a->strings["Import"] = "Importar"; -$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica"; $a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento"; $a->strings["Search"] = "Buscar"; +$a->strings["Items tagged with: %s"] = "Objetos taggeado con: %s"; +$a->strings["Search results for: %s"] = "Resultados de búsqueda para: %s"; $a->strings["Global Directory"] = "Directorio global"; $a->strings["Find on this site"] = "Buscar en este sitio"; $a->strings["Site Directory"] = "Directorio del sitio"; $a->strings["Age: "] = "Edad: "; $a->strings["Gender: "] = "Género:"; -$a->strings["Gender:"] = "Género:"; $a->strings["Status:"] = "Estado:"; $a->strings["Homepage:"] = "Página de inicio:"; -$a->strings["About:"] = "Acerca de:"; $a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; $a->strings["No potential page delegates located."] = "No se han localizado delegados potenciales de la página."; $a->strings["Delegate Page Management"] = "Delegar la administración de la página"; @@ -1068,7 +1119,7 @@ $a->strings["public profile"] = "perfil público"; $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió su %2\$s a “%3\$s”"; $a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s's %2\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s tiene una actualización %2\$s, cambiando %3\$s."; -$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide contacts and friends:"] = "Ocultar contactos y amigos"; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar tu lista de contactos/amigos en este perfil?"; $a->strings["Edit Profile Details"] = "Editar detalles de tu perfil"; $a->strings["Change Profile Photo"] = "Cambiar imagen del Perfil"; @@ -1076,16 +1127,16 @@ $a->strings["View this profile"] = "Ver este perfil"; $a->strings["Create a new profile using these settings"] = "¿Crear un nuevo perfil con esta configuración?"; $a->strings["Clone this profile"] = "Clonar este perfil"; $a->strings["Delete this profile"] = "Eliminar este perfil"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; +$a->strings["Basic information"] = "Información básica"; +$a->strings["Profile picture"] = "Imagen del perfil"; +$a->strings["Preferences"] = "Preferencias"; +$a->strings["Status information"] = "Información del estatus"; +$a->strings["Additional information"] = "Información addicional"; $a->strings["Profile Name:"] = "Nombres del perfil:"; $a->strings["Your Full Name:"] = "Tu nombre completo:"; $a->strings["Title/Description:"] = "Título/Descrición:"; $a->strings["Your Gender:"] = "Género:"; -$a->strings["Birthday (%s):"] = "Cumpleaños (%s):"; +$a->strings["Birthday :"] = "Día de nacimiento:"; $a->strings["Street Address:"] = "Dirección"; $a->strings["Locality/City:"] = "Localidad/Ciudad:"; $a->strings["Postal/Zip Code:"] = "Código postal:"; @@ -1148,6 +1199,7 @@ $a->strings["This is Friendica, version"] = "Esto es Friendica, versión"; $a->strings["running at web location"] = "ejecutándose en la dirección web"; $a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica."; $a->strings["Bug reports and issues: please visit"] = "Reporte de fallos y problemas: por favor visita"; +$a->strings["the bugtracker at github"] = "aviso de fallas (bugs) en github"; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com"; $a->strings["Installed plugins/addons/apps:"] = "Módulos/extensiones/aplicaciones instalados:"; $a->strings["No installed plugins/addons/apps"] = "Módulos/extensiones/aplicaciones no instalados"; @@ -1160,7 +1212,7 @@ $a->strings["Visible to:"] = "Visible para:"; $a->strings["Personal Notes"] = "Notas personales"; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Conversión horária"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos."; $a->strings["UTC time: %s"] = "Tiempo UTC: %s"; $a->strings["Current timezone: %s"] = "Zona horaria actual: %s"; $a->strings["Converted localtime: %s"] = "Zona horaria local convertida: %s"; @@ -1190,8 +1242,9 @@ $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"] = "Tienes que proporcionar el siguiente código: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com"; -$a->strings["Photo Albums"] = "Álbum de Fotos"; $a->strings["Contact Photos"] = "Foto del contacto"; +$a->strings["Photo Albums"] = "Álbum de Fotos"; +$a->strings["Recent Photos"] = "Fotos recientes"; $a->strings["Upload New Photos"] = "Subir nuevas fotos"; $a->strings["Contact information unavailable"] = "Información del contacto no disponible"; $a->strings["Album not found."] = "Álbum no encontrado."; @@ -1201,7 +1254,6 @@ $a->strings["Delete Photo"] = "Eliminar foto"; $a->strings["Do you really want to delete this photo?"] = "¿Estás seguro de que quieres borrar esta foto?"; $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s fue etiquetado en %2\$s por %3\$s"; $a->strings["a photo"] = "una foto"; -$a->strings["Image exceeds size limit of "] = "La imagen supera tamaño límite de "; $a->strings["Image file is empty."] = "El archivo de imagen está vacío."; $a->strings["No photos selected"] = "Ninguna foto seleccionada"; $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos."; @@ -1224,16 +1276,17 @@ $a->strings["Use as profile photo"] = "Usar como foto del perfil"; $a->strings["View Full Size"] = "Ver a tamaño completo"; $a->strings["Tags: "] = "Etiquetas: "; $a->strings["[Remove any tag]"] = "[Borrar todas las etiquetas]"; -$a->strings["Rotate CW (right)"] = "Girar a la derecha"; -$a->strings["Rotate CCW (left)"] = "Girar a la izquierda"; $a->strings["New album name"] = "Nuevo nombre del álbum"; $a->strings["Caption"] = "Título"; $a->strings["Add a Tag"] = "Añadir una etiqueta"; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "No rotar"; +$a->strings["Rotate CW (right)"] = "Girar a la derecha"; +$a->strings["Rotate CCW (left)"] = "Girar a la izquierda"; $a->strings["Private photo"] = "Foto privada"; $a->strings["Public photo"] = "Foto pública"; $a->strings["Share"] = "Compartir"; -$a->strings["Recent Photos"] = "Fotos recientes"; +$a->strings["Not Extended"] = "No extendido"; $a->strings["Account approved."] = "Cuenta aprobada."; $a->strings["Registration revoked for %s"] = "Registro anulado para %s"; $a->strings["Please login."] = "Por favor accede."; @@ -1242,7 +1295,7 @@ $a->strings["You can import an account from another Friendica server."] = "Puede $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."] = "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado."; $a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora"; $a->strings["Account file"] = "Archivo de la cuenta"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""; $a->strings["Item not available."] = "Elemento no disponible."; $a->strings["Item was not found."] = "Elemento no encontrado."; $a->strings["Delete this item?"] = "¿Eliminar este elemento?"; @@ -1252,45 +1305,25 @@ $a->strings["Create a New Account"] = "Crear una nueva cuenta"; $a->strings["Logout"] = "Salir"; $a->strings["Nickname or Email address: "] = "Apodo o dirección de email: "; $a->strings["Password: "] = "Contraseña: "; -$a->strings["Remember me"] = ""; +$a->strings["Remember me"] = "Recordarme"; $a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; $a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; -$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."] = "La cuenta solicitada no está disponible."; -$a->strings["Edit profile"] = "Editar perfil"; -$a->strings["Message"] = "Mensaje"; -$a->strings["Profiles"] = "Perfiles"; -$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[hoy]"; -$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; -$a->strings["[No description]"] = "[Sin descripción]"; -$a->strings["Event Reminders"] = "Recordatorios de eventos"; -$a->strings["Events this week:"] = "Eventos de esta semana:"; -$a->strings["Status"] = "Estado"; -$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; -$a->strings["Profile Details"] = "Detalles del Perfil"; -$a->strings["Videos"] = ""; -$a->strings["Events and Calendar"] = "Eventos y Calendario"; -$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; -$a->strings["This entry was edited"] = ""; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; +$a->strings["Website Terms of Service"] = "Términos de uso del sitio"; +$a->strings["terms of service"] = "Términos de uso"; +$a->strings["Website Privacy Policy"] = "Política de privacidad del sitio"; +$a->strings["privacy policy"] = "Política de privacidad"; +$a->strings["This entry was edited"] = "Esta entrada fue editada"; +$a->strings["ignore thread"] = "ignorar publicación"; +$a->strings["unignore thread"] = "revertir ignorar publicacion"; +$a->strings["toggle ignore status"] = "cambiar estatus de observación"; +$a->strings["ignored"] = "ignorado"; $a->strings["Categories:"] = "Categorías:"; $a->strings["Filed under:"] = "Archivado en:"; $a->strings["via"] = "vía"; -$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["\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\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]"; $a->strings["Errors encountered creating database tables."] = "Se han encontrados errores creando las tablas de la base de datos."; -$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["Errors encountered performing database changes."] = "Errores encontrados al ejecutar cambios en la base de datos."; $a->strings["Logged out."] = "Sesión finalizada"; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; $a->strings["The error message was:"] = "El mensaje del error fue:"; @@ -1313,47 +1346,47 @@ $a->strings["All Networks"] = "Todas las redes"; $a->strings["Saved Folders"] = "Directorios guardados"; $a->strings["Everything"] = "Todo"; $a->strings["Categories"] = "Categorías"; -$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["General Features"] = "Opciones generales"; +$a->strings["Multiple Profiles"] = "Perfiles multiples"; +$a->strings["Ability to create multiple profiles"] = "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica."; +$a->strings["Post Composition Features"] = "Opciones de edición de publicaciones."; +$a->strings["Richtext Editor"] = "Editor de texto sofisticado (richt text editor)"; +$a->strings["Enable richtext editor"] = "Habilitar editor de textos sofisticado"; +$a->strings["Post Preview"] = "Previsualizar publicaciones"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permitir la previsualización de publicaciones antes de publicar las mismas."; +$a->strings["Auto-mention Forums"] = "Auto-mencionar foros"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Agregar/remover menciones cuando una pagina de foro es seleccionado/deseleccionado en la ventana ACL."; +$a->strings["Network Sidebar Widgets"] = "Accesorios de red del panel lateral"; +$a->strings["Search by Date"] = "Buscar por fecha"; +$a->strings["Ability to select posts by date ranges"] = "Habilidad de seleccionar publicaciones por fecha"; +$a->strings["Group Filter"] = "Filtro del grupo"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Habilitar accesorios para visualizar publicaciones en la red solo de grupos seleccionados"; +$a->strings["Network Filter"] = "Filtro de red"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Habilitar accesorios para visualizar publicaciones solo de las redes seleccionadas."; +$a->strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilizacion"; +$a->strings["Network Tabs"] = "Pestañas de redes"; +$a->strings["Network Personal Tab"] = "Pestaña actividad personal"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar para visualizar solo publicaciones con las que se ha interactuado"; +$a->strings["Network New Tab"] = "Pestaña nuevo en la red"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)"; +$a->strings["Network Shared Links Tab"] = "Pestaña publicaciones con enlaces"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Habilitar para visualizar solo publicaciones que contienen enlaces"; +$a->strings["Post/Comment Tools"] = "Herramienta de publicaciones/respuestas"; +$a->strings["Multiple Deletion"] = "Borrar múltiples publicaciones"; +$a->strings["Select and delete multiple posts/comments at once"] = "Habilidad de seleccionar y borrar varias publicaciones/comentarios a la vez"; +$a->strings["Edit Sent Posts"] = "Editar temas enviados"; +$a->strings["Edit and correct posts and comments after sending"] = "Editar y corregir publicaciones y respuestas enviados. Las ediciones solo son comunicados dentro de la red friendica. No se modificaran copias enviadas a diaspora, OStatus/GNUsocial/Quitter u otros servicios conectados."; +$a->strings["Tagging"] = "taggear"; +$a->strings["Ability to tag existing posts"] = "Habilidad de taggear publicaciones existentes"; +$a->strings["Post Categories"] = "Categorías de publicaciones"; +$a->strings["Add categories to your posts"] = "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio."; +$a->strings["Ability to file posts under folders"] = "Archivar publicaciones en carpetas"; +$a->strings["Dislike Posts"] = "Desaprobar publicación (dislike)"; +$a->strings["Ability to dislike posts/comments"] = "Habilidad de expresar desacuerdo en publicaciones y comentarios. Esta función solo es visualizado en la red friendica."; +$a->strings["Star Posts"] = "Fijar publicaciones"; +$a->strings["Ability to mark special posts with a star indicator"] = "Habilidad de marcar - observar fijamente publicaciones.\nEl simbolo de estrella es habilitado. Se recibirán notificaciones sobre comentarios, además una pestaña de publicaciones fijadas es habilitada. En las opciones de expiración de publicaciones se puede filtrar estas publicaciones para no ser eliminados contrario a las publicaciones demás de los contactos."; +$a->strings["Mute Post Notifications"] = "Silenciar notificaciones de una publicacion"; +$a->strings["Ability to mute notifications for a thread"] = "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación."; $a->strings["Connect URL missing."] = "Falta el conector URL."; $a->strings["This site is not configured to allow communications with other networks."] = "Este sitio no está configurado para permitir la comunicación con otras redes."; $a->strings["No compatible communication protocols or feeds were discovered."] = "No se ha descubierto protocolos de comunicación o fuentes compatibles."; @@ -1374,15 +1407,16 @@ $a->strings["Edit group"] = "Editar grupo"; $a->strings["Create a new group"] = "Crear un nuevo grupo"; $a->strings["Contacts not in any group"] = "Contactos sin grupo"; $a->strings["Miscellaneous"] = "Varios"; -$a->strings["year"] = "año"; -$a->strings["month"] = "mes"; -$a->strings["day"] = "día"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; $a->strings["never"] = "nunca"; $a->strings["less than a second ago"] = "hace menos de un segundo"; +$a->strings["year"] = "año"; $a->strings["years"] = "años"; +$a->strings["month"] = "mes"; $a->strings["months"] = "meses"; $a->strings["week"] = "semana"; $a->strings["weeks"] = "semanas"; +$a->strings["day"] = "día"; $a->strings["days"] = "días"; $a->strings["hour"] = "hora"; $a->strings["hours"] = "horas"; @@ -1393,6 +1427,43 @@ $a->strings["seconds"] = "segundos"; $a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s"; $a->strings["%s's birthday"] = "Cumpleaños de %s"; $a->strings["Happy Birthday %s"] = "Feliz cumpleaños %s"; +$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible."; +$a->strings["Edit profile"] = "Editar perfil"; +$a->strings["Message"] = "Mensaje"; +$a->strings["Profiles"] = "Perfiles"; +$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; +$a->strings["Network:"] = "Red social:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[hoy]"; +$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; +$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; +$a->strings["[No description]"] = "[Sin descripción]"; +$a->strings["Event Reminders"] = "Recordatorios de eventos"; +$a->strings["Events this week:"] = "Eventos de esta semana:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Fecha de nacimiento:"; +$a->strings["Age:"] = "Edad:"; +$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +$a->strings["Religion:"] = "Religión:"; +$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; +$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:"; +$a->strings["Musical interests:"] = "Intereses musicales:"; +$a->strings["Books, literature:"] = "Libros, literatura:"; +$a->strings["Television:"] = "Televisión:"; +$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:"; +$a->strings["Love/Romance:"] = "Amor/Romance:"; +$a->strings["Work/employment:"] = "Trabajo/ocupación:"; +$a->strings["School/education:"] = "Escuela/estudios:"; +$a->strings["Status"] = "Estado"; +$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; +$a->strings["Profile Details"] = "Detalles del Perfil"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Eventos y Calendario"; +$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; +$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores deshabilitados, ya que \"%s\" es habilitado."; $a->strings["Visible to everybody"] = "Visible para cualquiera"; $a->strings["show"] = "mostrar"; $a->strings["don't show"] = "no mostrar"; @@ -1404,7 +1475,7 @@ $a->strings["View Profile"] = "Ver perfil"; $a->strings["View Photos"] = "Ver fotos"; $a->strings["Network Posts"] = "Publicaciones en la red"; $a->strings["Edit Contact"] = "Editar contacto"; -$a->strings["Drop Contact"] = ""; +$a->strings["Drop Contact"] = "Eliminar contacto"; $a->strings["Send PM"] = "Enviar mensaje privado"; $a->strings["Welcome "] = "Bienvenido "; $a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; @@ -1412,16 +1483,15 @@ $a->strings["Welcome back "] = "Bienvenido de nuevo "; $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."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; $a->strings["event"] = "evento"; $a->strings["%1\$s poked %2\$s"] = "%1\$s le dio un toque a %2\$s"; -$a->strings["poked"] = "tocó a"; $a->strings["post/item"] = "publicación/tema"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha marcado %3\$s de %2\$s como Favorito"; $a->strings["remove"] = "eliminar"; $a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado"; -$a->strings["Follow Thread"] = ""; +$a->strings["Follow Thread"] = "Seguir publicacion"; $a->strings["%s likes this."] = "A %s le gusta esto."; $a->strings["%s doesn't like this."] = "A %s no le gusta esto."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%2\$d people like this"] = "%2\$d personas les gusta esto"; +$a->strings["%2\$d people don't like this"] = "%2\$d personas no les gusta esto"; $a->strings["and"] = "y"; $a->strings[", and %d other people"] = " y a otras %d personas"; $a->strings["%s like this."] = "Le gusta a %s."; @@ -1431,13 +1501,11 @@ $a->strings["Please enter a video link/URL:"] = "Por favor, introduce la URL/enl $a->strings["Please enter an audio link/URL:"] = "Por favor, introduce la URL/enlace del audio:"; $a->strings["Tag term:"] = "Etiquetar:"; $a->strings["Where are you right now?"] = "¿Dónde estás ahora?"; -$a->strings["Delete item(s)?"] = ""; -$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Delete item(s)?"] = "¿Borrar objeto(s)?"; $a->strings["permissions"] = "permisos"; -$a->strings["Post to Groups"] = ""; -$a->strings["Post to Contacts"] = ""; -$a->strings["Private post"] = ""; +$a->strings["Post to Groups"] = "Publicar hacia grupos"; +$a->strings["Post to Contacts"] = "Publicar hacia contactos"; +$a->strings["Private post"] = "Publicación privada"; $a->strings["view full size"] = "Ver a tamaño completo"; $a->strings["newer"] = "más nuevo"; $a->strings["older"] = "más antiguo"; @@ -1445,12 +1513,18 @@ $a->strings["prev"] = "ant."; $a->strings["first"] = "primera"; $a->strings["last"] = "última"; $a->strings["next"] = "sig."; +$a->strings["Loading more entries..."] = "Cargar mas entradas .."; +$a->strings["The end"] = "El fin"; $a->strings["No contacts"] = "Sin contactos"; $a->strings["%d Contact"] = array( 0 => "%d Contacto", 1 => "%d Contactos", ); +$a->strings["Full Text"] = "Texto completo"; +$a->strings["Tags"] = "Tags"; +$a->strings["Forums"] = "Foros"; $a->strings["poke"] = "tocar"; +$a->strings["poked"] = "tocó a"; $a->strings["ping"] = "hacer \"ping\""; $a->strings["pinged"] = "hizo \"ping\" a"; $a->strings["prod"] = "empujar"; @@ -1502,14 +1576,16 @@ $a->strings["November"] = "Noviembre"; $a->strings["December"] = "Diciembre"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; +$a->strings["View on separate page"] = "Ver en pagina aparte"; +$a->strings["view on separate page"] = "ver en pagina aparte"; $a->strings["default"] = "predeterminado"; $a->strings["Select an alternate language"] = "Elige otro idioma"; $a->strings["activity"] = "Actividad"; $a->strings["post"] = "Publicación"; $a->strings["Item filed"] = "Elemento archivado"; $a->strings["Image/photo"] = "Imagen/Foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s escribió la siguiente publicación"; $a->strings["$1 wrote:"] = "$1 escribió:"; $a->strings["Encrypted content"] = "Contenido cifrado"; $a->strings["(no subject)"] = "(sin asunto)"; @@ -1529,31 +1605,16 @@ $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = ""; -$a->strings["pump.io"] = ""; -$a->strings["Twitter"] = ""; -$a->strings["Diaspora Connector"] = ""; -$a->strings["Statusnet"] = ""; -$a->strings["App.net"] = ""; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Conector Diaspora"; +$a->strings["Statusnet"] = "Statusnet/GNUsocial/Quitter/OStatus"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; $a->strings[" on Last.fm"] = "en Last.fm"; $a->strings["Starts:"] = "Inicio:"; $a->strings["Finishes:"] = "Final:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Fecha de nacimiento:"; -$a->strings["Age:"] = "Edad:"; -$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -$a->strings["Tags:"] = "Etiquetas:"; -$a->strings["Religion:"] = "Religión:"; -$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; -$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:"; -$a->strings["Musical interests:"] = "Intereses musicales:"; -$a->strings["Books, literature:"] = "Libros, literatura:"; -$a->strings["Television:"] = "Televisión:"; -$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:"; -$a->strings["Love/Romance:"] = "Amor/Romance:"; -$a->strings["Work/employment:"] = "Trabajo/ocupación:"; -$a->strings["School/education:"] = "Escuela/estudios:"; $a->strings["Click here to upgrade."] = "Pulsa aquí para actualizar."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Esta acción excede los límites permitidos por tu subscripción."; $a->strings["This action is not available under your subscription plan."] = "Esta acción no está permitida para tu subscripción."; @@ -1561,10 +1622,10 @@ $a->strings["End this session"] = "Cerrar la sesión"; $a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; $a->strings["Your profile page"] = "Tu página de perfil"; $a->strings["Your photos"] = "Tus fotos"; -$a->strings["Your videos"] = ""; +$a->strings["Your videos"] = "Tus videos"; $a->strings["Your events"] = "Tus eventos"; $a->strings["Personal notes"] = "Notas personales"; -$a->strings["Your personal notes"] = ""; +$a->strings["Your personal notes"] = "Tus notas personales"; $a->strings["Sign in"] = "Date de alta"; $a->strings["Home Page"] = "Página de inicio"; $a->strings["Create an account"] = "Crea una cuenta"; @@ -1573,14 +1634,14 @@ $a->strings["Apps"] = "Aplicaciones"; $a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; $a->strings["Search site content"] = " Busca contenido en la página"; $a->strings["Conversations on this site"] = "Conversaciones en este sitio"; -$a->strings["Conversations on the network"] = ""; +$a->strings["Conversations on the network"] = "Conversaciones en la red"; $a->strings["Directory"] = "Directorio"; $a->strings["People directory"] = "Directorio de usuarios"; -$a->strings["Information"] = ""; -$a->strings["Information about this friendica instance"] = ""; +$a->strings["Information"] = "Información"; +$a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica"; $a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; +$a->strings["Network Reset"] = "Reseteo de la red"; +$a->strings["Load Network page with no filters"] = "Cargar pagina de redes sin filtros"; $a->strings["Friend Requests"] = "Solicitudes de amistad"; $a->strings["See all notifications"] = "Ver todas las notificaciones"; $a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; @@ -1590,21 +1651,20 @@ $a->strings["Outbox"] = "Enviados"; $a->strings["Manage"] = "Administrar"; $a->strings["Manage other pages"] = "Administrar otras páginas"; $a->strings["Account settings"] = "Configuración de tu cuenta"; -$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Manage/Edit Profiles"] = "Manejar/editar Perfiles"; $a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; $a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; -$a->strings["Navigation"] = ""; -$a->strings["Site map"] = ""; -$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["Navigation"] = "Navegación"; +$a->strings["Site map"] = "Mapa del sitio"; +$a->strings["User not found."] = "Perfil no encontrado"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["There is no status with this id."] = "No hay estatus con esta ID "; +$a->strings["There is no conversation with this id."] = "No hay conversaciones con esta ID"; +$a->strings["Invalid item."] = "Objeto invalido"; +$a->strings["Invalid action. "] = "Acción invalida"; +$a->strings["DB error"] = "Error de base de datos"; $a->strings["An invitation is required."] = "Se necesita invitación."; $a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; $a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; @@ -1615,18 +1675,18 @@ $a->strings["That doesn't appear to be your full (First Last) name."] = "No pare $a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio."; $a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida."; $a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Tu \"apodo\" solo puede contener \"a-z\", \"0-9\", \"-\", y \"_\" y debe empezar por una letra."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"."; $a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; $a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; $a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; $a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; $a->strings["Friends"] = "Amigos"; -$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["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrar en %2\$s. Su cuenta ha sido creada.\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."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3\$s\n\t\t\tNombre de la cuenta:\t\t%1\$s\n\t\t\tContraseña:\t\t%5\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2\$s."; $a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*"; $a->strings["Attachments:"] = "Archivos adjuntos:"; -$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?"; $a->strings["Archives"] = "Archivos"; $a->strings["Male"] = "Hombre"; $a->strings["Female"] = "Mujer"; @@ -1706,9 +1766,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicó en [ $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificación] %s te ha nombrado"; $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s te ha nombrado en %2\$s"; $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]te nombró[/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] %s shared a new post"] = "[Notificacion Friendica] %s compartio una nueva publicacion"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartió un nuevo tema en %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartió una publicación[/url]."; $a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s te dio un toque"; $a->strings["%1\$s poked you at %2\$s"] = "%1\$s te dio un toque en %2\$s"; $a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]te dio un toque[/url]."; @@ -1720,43 +1780,42 @@ $a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has reci $a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Has recibido [url=%1\$s]una presentación[/url] de %2\$s."; $a->strings["You may visit their profile at %s"] = "Puedes visitar su perfil en %s"; $a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s para aceptar o rechazar la presentación por favor."; -$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] A new person is sharing with you"] = "[Notificación:Friendica] Un nuevo contacto comparte contigo"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s comparte con tigo en %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Notificación:Friendica] Tienes un nuevo seguidor"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Tienes un nuevo seguidor en %2\$s : %1\$s"; $a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificación] Sugerencia de amigo recibida"; $a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has recibido una sugerencia de amigo de '%1\$s' en %2\$s"; $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Has recibido [url=%1\$s]una sugerencia de amigo[/url] en %2\$s de %3\$s."; $a->strings["Name:"] = "Nombre: "; $a->strings["Photo:"] = "Foto: "; $a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s para aceptar o rechazar la sugerencia por favor."; -$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["[Friendica:Notify] Connection accepted"] = "[Notificación:Friendica] Conexión aceptada"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' acepto tu consulta de conexión %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hacepto tu [url=%1\$s]consulta de conexión[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ahora tienes una amistad mutua y podrán intercambiar actualizaciones de estados, imágenes, y correo\n\tsin restricciones"; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto."; +$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' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' puede elegir de extender la relación hacia una relación de ida y vuelta o otras configuración mas permisiva en el futuro."; +$a->strings["[Friendica System:Notify] registration request"] = "[Notificacion:Friendica] consulta de registro"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Recibiste una consulta de registro de '%1\$s' en %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Recibiste una [url=%1\$s]consulta de registro[/url] from %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nombre completo:\t%1\$s\\nUbicación del sitio:\t%2\$s\\nLogin Nombre:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Por favor visita %s para aprobar o negar la solicitud."; $a->strings["Embedded content"] = "Contenido integrado"; $a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; +$a->strings["Error decoding account file"] = "Error decodificando el archivo de cuenta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? "; +$a->strings["Error! Cannot check nickname"] = "Error! No puedo consultar el apodo"; +$a->strings["User '%s' already exists on this server!"] = "La cuenta '%s' ya existe en este servidor!"; +$a->strings["User creation error"] = "Error al crear la cuenta"; +$a->strings["User profile creation error"] = "Error de creación del perfil de la cuenta"; $a->strings["%d contact not imported"] = array( - 0 => "", - 1 => "", + 0 => "%d contactos no encontrado", + 1 => "%d contactos no importado", ); -$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."; $a->strings["toggle mobile"] = "Cambiar a versión móvil"; -$a->strings["Theme settings"] = "Configuración del Tema"; $a->strings["Set resize level for images in posts and comments (width and height)"] = "Configurar el tamaño de las imágenes en las publicaciones"; $a->strings["Set font-size for posts and comments"] = "Tamaño del texto para publicaciones y comentarios"; $a->strings["Set theme width"] = "Establecer el ancho para el tema"; @@ -1766,8 +1825,8 @@ $a->strings["Set colour scheme"] = "Configurar esquema de color"; $a->strings["Alignment"] = "Alineación"; $a->strings["Left"] = "Izquierda"; $a->strings["Center"] = "Centrado"; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; +$a->strings["Posts font size"] = "Tamaño de letra del titulo de las publicaciones"; +$a->strings["Textareas font size"] = "Tamaño de letra del área de texto"; $a->strings["Set resolution for middle column"] = "Resolución para la columna central"; $a->strings["Set color scheme"] = "Configurar esquema de color"; $a->strings["Set zoomfactor for Earth Layer"] = "Establecer zoom para Minimapa"; @@ -1787,11 +1846,11 @@ $a->strings["Your personal photos"] = "Tus fotos personales"; $a->strings["Local Directory"] = "Directorio local"; $a->strings["Set zoomfactor for Earth Layers"] = "Configurar zoom en Minimapa"; $a->strings["Show/hide boxes at right-hand column:"] = "Mostrar/Ocultar casillas en la columna derecha:"; -$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"] = ""; +$a->strings["Set style"] = "Definir estilo"; +$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"] = "Variaciones"; diff --git a/view/fr/messages.po b/view/fr/messages.po index 000a146cf..5ecb81cee 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -20,5358 +20,2361 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-04-14 10:22+0000\n" -"Last-Translator: StefOfficiel \n" -"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" +"POT-Creation-Date: 2015-08-26 07:53+0200\n" +"PO-Revision-Date: 2015-08-26 09:32+0000\n" +"Last-Translator: fabrixxm \n" +"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:56 -#: ../../view/theme/duepuntozero/config.php:59 -#: ../../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:492 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 -#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 -#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Envoyer" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:58 -#: ../../view/theme/duepuntozero/config.php:61 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Réglages du thème graphique" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Largeur du thème" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Palette de couleurs" - -#: ../../view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Définir le style" - -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 -#: ../../include/user.php:247 -msgid "default" -msgstr "défaut" - -#: ../../view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variations" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 -msgid "don't show" -msgstr "cacher" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 -msgid "show" -msgstr "montrer" - -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Réglez la résolution de la colonne centrale" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Choisir le schéma de couleurs" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Niveau de zoom" - -#: ../../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" - -#: ../../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" - -#: ../../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é" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Géolocalisation" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profils communautaires" - -#: ../../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?" - -#: ../../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" - -#: ../../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" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Derniers utilisateurs" - -#: ../../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" - -#: ../../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é" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Profil" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" - -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 -#: ../../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" - -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Votre page de profil" - -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 -msgid "Contacts" -msgstr "Contacts" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Vos contacts" - -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Photos" - -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Vos photos" - -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Événements" - -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Vos événements" - -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Notes personnelles" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Vos photos personnelles" - -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../mod/community.php:32 -msgid "Community" -msgstr "Communauté" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 -msgid "event" -msgstr "évènement" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "le statut" - -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011 -#: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../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:2027 -#: ../../include/conversation.php:137 ../../mod/like.php:166 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s aime %3$s de %2$s" - -#: ../../view/theme/diabook/theme.php:499 ../../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 -msgid "Contact Photos" -msgstr "Photos du 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:1187 -#: ../../mod/photos.php:1210 ../../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 "Photos du profil" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Annuaire local" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Annuaire global" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Intérêts similaires" - -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:68 -msgid "Friend Suggestions" -msgstr "Suggestions d'amitiés/contacts" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Réglages" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Régler le niveau de zoom pour la géolocalisation" - -#: ../../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 :" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Alignement" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Gauche" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centre" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Taille de texte des publications" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Taille de police des zones de texte" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Choisir le schéma de couleurs" - -#: ../../index.php:211 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Vous devez être connecté pour utiliser les greffons." - -#: ../../index.php:255 ../../mod/help.php:42 -msgid "Not Found" -msgstr "Non trouvé" - -#: ../../index.php:258 ../../mod/help.php:45 -msgid "Page not found." -msgstr "Page introuvable." - -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Permission refusée" - -#: ../../index.php:368 ../../include/items.php:4815 ../../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:12 -#: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:24 ../../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:165 ../../mod/profiles.php:618 -#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:169 ../../mod/item.php:185 -#: ../../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 "Permission refusée." - -#: ../../index.php:427 -msgid "toggle mobile" -msgstr "activ. mobile" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "Voulez-vous confirmer votre identité (%s) avec %se" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Confirmer" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "Ne pas confirmer" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "Faire confiance à ce site" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "Aucun identifiant envoyé" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "La requête d'identité ne correspond pas à l'utilisateur connecté." - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "Veuillez patienter, vous êtes redirigé vers <%s>" - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Effacer cet élément?" - -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 -#: ../../mod/photos.php:1696 ../../mod/content.php:709 -msgid "Comment" -msgstr "Commenter" - -#: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "montrer plus" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "montrer moins" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." - -#: ../../boot.php:1229 -msgid "Create a New Account" -msgstr "Créer un nouveau compte" - -#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 -msgid "Register" -msgstr "S'inscrire" - -#: ../../boot.php:1254 ../../include/nav.php:73 -msgid "Logout" -msgstr "Se déconnecter" - -#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 -msgid "Login" -msgstr "Connexion" - -#: ../../boot.php:1257 -msgid "Nickname or Email address: " -msgstr "Pseudo ou courriel: " - -#: ../../boot.php:1258 -msgid "Password: " -msgstr "Mot de passe: " - -#: ../../boot.php:1259 -msgid "Remember me" -msgstr "Se souvenir de moi" - -#: ../../boot.php:1262 -msgid "Or login using OpenID: " -msgstr "Ou connectez-vous via OpenID: " - -#: ../../boot.php:1268 -msgid "Forgot your password?" -msgstr "Mot de passe oublié?" - -#: ../../boot.php:1269 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../boot.php:1271 -msgid "Website Terms of Service" -msgstr "Conditions d'utilisation du site internet" - -#: ../../boot.php:1272 -msgid "terms of service" -msgstr "conditions d'utilisation" - -#: ../../boot.php:1274 -msgid "Website Privacy Policy" -msgstr "Politique de confidentialité du site internet" - -#: ../../boot.php:1275 -msgid "privacy policy" -msgstr "politique de confidentialité" - -#: ../../boot.php:1408 -msgid "Requested account is not available." -msgstr "Le compte demandé n'est pas disponible." - -#: ../../boot.php:1447 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Le profil demandé n'est pas disponible." - -#: ../../boot.php:1490 ../../boot.php:1624 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editer le profil" - -#: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 -msgid "Connect" -msgstr "Relier" - -#: ../../boot.php:1589 -msgid "Message" -msgstr "Message" - -#: ../../boot.php:1595 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profils" - -#: ../../boot.php:1595 -msgid "Manage/edit profiles" -msgstr "Gérer/éditer les profils" - -#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 -msgid "Change profile photo" -msgstr "Changer de photo de profil" - -#: ../../boot.php:1601 ../../mod/profiles.php:805 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: ../../boot.php:1611 ../../mod/profiles.php:816 -msgid "Profile Image" -msgstr "Image du profil" - -#: ../../boot.php:1614 ../../mod/profiles.php:818 -msgid "visible to everybody" -msgstr "visible par tous" - -#: ../../boot.php:1615 ../../mod/profiles.php:819 -msgid "Edit visibility" -msgstr "Changer la visibilité" - -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Localisation:" - -#: ../../boot.php:1639 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Genre:" - -#: ../../boot.php:1642 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Statut:" - -#: ../../boot.php:1644 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Page personnelle:" - -#: ../../boot.php:1646 ../../include/profile_advanced.php:58 -#: ../../mod/directory.php:144 -msgid "About:" -msgstr "À propos:" - -#: ../../boot.php:1711 -msgid "Network:" -msgstr "Réseau" - -#: ../../boot.php:1743 ../../boot.php:1829 -msgid "g A l F d" -msgstr "g A | F d" - -#: ../../boot.php:1744 ../../boot.php:1830 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1789 ../../boot.php:1877 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../boot.php:1801 -msgid "Birthday Reminders" -msgstr "Rappels d'anniversaires" - -#: ../../boot.php:1802 -msgid "Birthdays this week:" -msgstr "Anniversaires cette semaine:" - -#: ../../boot.php:1864 -msgid "[No description]" -msgstr "[Sans description]" - -#: ../../boot.php:1888 -msgid "Event Reminders" -msgstr "Rappels d'événements" - -#: ../../boot.php:1889 -msgid "Events this week:" -msgstr "Evénements cette semaine :" - -#: ../../boot.php:2126 ../../include/nav.php:76 -msgid "Status" -msgstr "Statut" - -#: ../../boot.php:2129 -msgid "Status Messages and Posts" -msgstr "Messages d'état et publications" - -#: ../../boot.php:2136 -msgid "Profile Details" -msgstr "Détails du profil" - -#: ../../boot.php:2143 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Albums photo" - -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 -msgid "Videos" -msgstr "Vidéos" - -#: ../../boot.php:2160 -msgid "Events and Calendar" -msgstr "Événements et agenda" - -#: ../../boot.php:2164 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Notes personnelles" - -#: ../../boot.php:2167 -msgid "Only You Can See This" -msgstr "Vous seul pouvez voir ça" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Fonctions générales" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profils multiples" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilité de créer plusieurs profils" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Caractéristiques de composition de publication" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Éditeur de texte enrichi" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Activer l'éditeur de texte enrichi" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Aperçu de la publication" - -#: ../../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" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widgets réseau pour barre latérale" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Rechercher par Date" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Capacité de sélectionner les publications par intervalles de dates" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtre de groupe" - -#: ../../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é" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Filtre de réseau" - -#: ../../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é" - -#: ../../include/features.php:42 ../../mod/network.php:194 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Recherches" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Sauvegarder la recherche pour une utilisation ultérieure" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Onglets Réseau" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Onglet Réseau Personnel" - -#: ../../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" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nouvel onglet réseaux" - -#: ../../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)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Onglet réseau partagé" - -#: ../../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" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "outils de publication/commentaire" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Suppression multiple" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Éditer les publications envoyées" - -#: ../../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" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Étiquettage" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Possibilité d'étiqueter les publications existantes" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Catégories des publications" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Ajouter des catégories à vos publications" - -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Possibilité d'afficher les publications sous les répertoires" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Publications non aimées" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Possibilité de ne pas aimer les publications/commentaires" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Publications spéciales" - -#: ../../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" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: ../../include/items.php:2307 ../../include/datetime.php:477 -#, php-format -msgid "%s's birthday" -msgstr "Anniversaire de %s's" - -#: ../../include/items.php:2308 ../../include/datetime.php:478 -#, php-format -msgid "Happy Birthday %s" -msgstr "Joyeux anniversaire, %s !" - -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Nom non-publié]" - -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 -msgid "Item not found." -msgstr "Élément introuvable." - -#: ../../include/items.php:4658 -msgid "Do you really want to delete this item?" -msgstr "Voulez-vous vraiment supprimer cet élément ?" - -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 -msgid "Yes" -msgstr "Oui" - -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../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 "Annuler" - -#: ../../include/items.php:4881 -msgid "Archives" -msgstr "Archives" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tout le monde" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "éditer" - -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Groupes" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editer groupe" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Créer un nouveau groupe" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contacts n'appartenant à aucun groupe" - -#: ../../include/group.php:275 ../../mod/network.php:195 -msgid "add" -msgstr "ajouter" - -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:485 -msgid "Wall Photos" -msgstr "Photos du mur" - -#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Ajouter un nouveau contact" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Entrez son adresse ou sa localisation web" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemple: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trouver des personnes" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Entrez un nom ou un centre d'intérêt" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connecter/Suivre" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Robert Morgenstein, Pêche" - -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Trouver" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profil au hasard" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Réseaux" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tous réseaux" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tout" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Catégories" - -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact en commun" -msgstr[1] "%d contacts en commun" - -#: ../../include/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:33 ../../include/delivery.php:467 -#: ../../include/notifier.php:796 -msgid "noreply" -msgstr "noreply" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s vous a envoyé %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "un message privé" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s a commenté un élément que vous suivez." - -#: ../../include/enotify.php: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 "Merci de visiter %s pour voir la conversation et/ou y répondre." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s a publié sur votre mur à %2$s" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notification] %s vous a étiqueté" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s vous a étiqueté sur %2$s" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]vous a étiqueté[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notification] %s partage une nouvelle publication" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s a partagé une nouvelle publication sur %2$s" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]partage une publication[/url]." - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s vous a sollicité" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s vous a sollicité via %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s vous a [url=%2$s]sollicité[/url]." - -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notification] %s a étiqueté votre publication" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s a étiqueté votre publication sur %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notification] Introduction reçue" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Vous pouvez visiter son profil sur %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Notification Friendica] Une nouvelle personne partage avec vous" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Nom :" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Photo :" - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s." - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." - -#: ../../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 "Utilisateur non trouvé" - -#: ../../include/api.php:770 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée." - -#: ../../include/api.php:789 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée." - -#: ../../include/api.php:808 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." - -#: ../../include/api.php:1271 -msgid "There is no status with this id." -msgstr "Il n'y a pas de statut avec cet id." - -#: ../../include/api.php:1341 -msgid "There is no conversation with this id." -msgstr "Il n'y a pas de conversation avec cet id." - -#: ../../include/api.php:1613 -msgid "Invalid request." -msgstr "Requête invalide." - -#: ../../include/api.php:1624 -msgid "Invalid item." -msgstr "Item invalide." - -#: ../../include/api.php:1634 -msgid "Invalid action. " -msgstr "Action invalide." - -#: ../../include/api.php:1642 -msgid "DB error" -msgstr "" - -#: ../../include/network.php:890 -msgid "view full size" -msgstr "voir en pleine taille" - -#: ../../include/Scrape.php:608 -msgid " on Last.fm" -msgstr "sur Last.fm" - -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 -msgid "Full Name:" -msgstr "Nom complet:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Anniversaire:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Age:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" - -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 -msgid "Sexual Preference:" -msgstr "Préférence sexuelle:" - -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 -msgid "Hometown:" -msgstr " Ville d'origine:" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Étiquette:" - -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 -msgid "Political Views:" -msgstr "Opinions politiques:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Passe-temps/Centres d'intérêt:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 -msgid "Likes:" -msgstr "J'aime :" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 -msgid "Dislikes:" -msgstr "Je n'aime pas :" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées/Réseaux sociaux:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Goûts musicaux:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Lectures:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Télévision:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/Danse/Culture/Divertissement:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amour/Romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Activité professionnelle/Occupation:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Études/Formation:" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Rien de neuf ici" - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Effacer les notifications" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Mettre fin à cette session" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Vos vidéos" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Vos notes personnelles" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Se connecter" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Page d'accueil" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:114 ../../mod/help.php:36 -msgid "Help" -msgstr "Aide" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Applications" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applications supplémentaires, utilitaires, jeux" - -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 -msgid "Search" -msgstr "Recherche" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Rechercher dans le contenu du site" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversations ayant cours sur ce site" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Annuaire" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Annuaire des utilisateurs" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Information" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Information au sujet de cette instance de friendica" - -#: ../../include/nav.php:145 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Réseau" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversations de vos amis" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Réinitialiser le réseau" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Chargement des pages du réseau sans filtre" - -#: ../../include/nav.php:154 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Introductions" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Demande d'amitié" - -#: ../../include/nav.php:155 ../../mod/notifications.php:224 -msgid "Notifications" -msgstr "Notifications" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Voir toute notification" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme 'vues'" - -#: ../../include/nav.php:161 ../../mod/message.php:182 -msgid "Messages" -msgstr "Messages" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Messages privés" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Messages entrants" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Messages sortants" - -#: ../../include/nav.php:164 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Gérer" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Gérer les autres pages" - -#: ../../include/nav.php:170 ../../mod/settings.php:67 -msgid "Delegations" -msgstr "Délégations" - -#: ../../include/nav.php:170 ../../mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Déléguer la gestion de la page" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Compte" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Gérer/Éditer les profiles" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Gérer/éditer les amitiés et contacts" - -#: ../../include/nav.php:184 ../../mod/admin.php:130 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Démarrage et configuration du site" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigation" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Carte du site" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: ../../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." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre abonnement." - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "URL de profil interdite." - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL de connexion manquante." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Aucune URL de navigation ne correspond à cette adresse." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossible de récupérer les informations du contact." - -#: ../../include/follow.php:258 -msgid "following" -msgstr "following" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Une erreur a été détecté en décodant un fichier utilisateur" - -#: ../../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 ?" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Erreur! Pseudo invalide" - -#: ../../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!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Erreur de création d'utilisateur" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Erreur de création du profil utilisateur" - -#: ../../include/uimport.php:220 -#, php-format -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" - -#: ../../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" - -#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 -msgid "Starts:" -msgstr "Débute:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 -msgid "Finishes:" -msgstr "Finit:" - -#: ../../include/Contact.php:119 -msgid "stopped following" -msgstr "retiré de la liste de suivi" - -#: ../../include/Contact.php:232 ../../include/conversation.php:881 -msgid "Poke" -msgstr "Sollicitations (pokes)" - -#: ../../include/Contact.php:233 ../../include/conversation.php:875 -msgid "View Status" -msgstr "Voir les statuts" - -#: ../../include/Contact.php:234 ../../include/conversation.php:876 -msgid "View Profile" -msgstr "Voir le profil" - -#: ../../include/Contact.php:235 ../../include/conversation.php:877 -msgid "View Photos" -msgstr "Voir les photos" - -#: ../../include/Contact.php:236 ../../include/Contact.php:259 -#: ../../include/conversation.php:878 -msgid "Network Posts" -msgstr "Publications du réseau" - -#: ../../include/Contact.php:237 ../../include/Contact.php:259 -#: ../../include/conversation.php:879 -msgid "Edit Contact" -msgstr "Éditer le contact" - -#: ../../include/Contact.php:238 -msgid "Drop Contact" -msgstr "Supprimer le contact" - -#: ../../include/Contact.php:239 ../../include/Contact.php:259 -#: ../../include/conversation.php:880 -msgid "Send PM" -msgstr "Message privé" - -#: ../../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 "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue." - -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Le message d’erreur est\n[pre]%s[/pre]" - -#: ../../include/dbstructure.php:150 -msgid "Errors encountered creating database tables." -msgstr "Des erreurs ont été signalées lors de la création des tables." - -#: ../../include/dbstructure.php:208 -msgid "Errors encountered performing database changes." -msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Divers" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "an" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "mois" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "jour" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "il y a moins d'une seconde" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "ans" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "mois" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "semaine" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "semaines" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "jours" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "heure" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "heures" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minute" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minutes" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s auparavant" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[pas de sujet]" - -#: ../../include/delivery.php:456 ../../include/notifier.php:786 -msgid "(no subject)" -msgstr "(sans titre)" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Inconnu | Non-classé" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquer immédiatement" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Douteux, spammeur, accro à l'auto-promotion" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Connu de moi, mais sans opinion" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, probablement inoffensif" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Réputé, a toute ma confiance" - -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 -msgid "Frequently" -msgstr "Fréquemment" - -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 -msgid "Hourly" -msgstr "Toutes les heures" - -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 -msgid "Twice daily" -msgstr "Deux fois par jour" - -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 -msgid "Daily" -msgstr "Chaque jour" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Chaque semaine" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Chaque mois" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 -msgid "Email" -msgstr "Courriel" - -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connecteur Diaspora" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s est désormais lié à %2$s" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Notification de partage du réseau Diaspora" - -#: ../../include/diaspora.php:2444 -msgid "Attachments:" -msgstr "Pièces jointes : " - -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s n'aime pas %3$s de %2$s" - -#: ../../include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a sollicité %2$s" - -#: ../../include/conversation.php:226 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s est d'humeur %2$s" - -#: ../../include/conversation.php:265 ../../mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" - -#: ../../include/conversation.php:290 -msgid "post/item" -msgstr "publication/élément" - -#: ../../include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s a marqué le %3$s de %2$s comme favori" - -#: ../../include/conversation.php:612 ../../object/Item.php:129 -#: ../../mod/photos.php:1653 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Sélectionner" - -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 -#: ../../mod/photos.php:1654 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Supprimer" - -#: ../../include/conversation.php:653 ../../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 "Voir le profil de %s @ %s" - -#: ../../include/conversation.php:665 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Catégories:" - -#: ../../include/conversation.php:666 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Rangé sous:" - -#: ../../include/conversation.php:673 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: ../../include/conversation.php:689 ../../mod/content.php:497 -msgid "View in context" -msgstr "Voir dans le contexte" - -#: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Patientez" - -#: ../../include/conversation.php:771 -msgid "remove" -msgstr "enlever" - -#: ../../include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Supprimer les éléments sélectionnés" - -#: ../../include/conversation.php:874 -msgid "Follow Thread" -msgstr "Suivre le fil" - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s aime ça." - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." - -#: ../../include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d personnes aiment ça" - -#: ../../include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personnes n'aiment pas ça" - -#: ../../include/conversation.php:965 -msgid "and" -msgstr "et" - -#: ../../include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr ", et %d autres personnes" - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s aiment ça." - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s n'aiment pas ça." - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -msgid "Please enter a link URL:" -msgstr "Entrez un lien web:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Entrez un lien/URL video :" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Entrez un lien/URL audio :" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Tag term:" -msgstr "Terme d'étiquette:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Sauver dans le Dossier:" - -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Où êtes-vous présentemment?" - -#: ../../include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Supprimer les élément(s) ?" - -#: ../../include/conversation.php:1050 -msgid "Post to Email" -msgstr "Publier aux courriels" - -#: ../../include/conversation.php:1055 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 -msgid "Hide your profile details from unknown viewers?" -msgstr "Cacher les détails du profil aux visiteurs inconnus?" - -#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 -msgid "Share" -msgstr "Partager" - -#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Joindre photo" - -#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "envoi image" - -#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Joindre fichier" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "ajout fichier" - -#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 -msgid "web link" -msgstr "lien web" - -#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Insérer un lien video" - -#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 -msgid "video link" -msgstr "lien vidéo" - -#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Insérer un lien audio" - -#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "lien audio" - -#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Définir votre localisation" - -#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 -msgid "set location" -msgstr "spéc. localisation" - -#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Effacer la localisation du navigateur" - -#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "supp. localisation" - -#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Définir un titre" - -#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Réglages des permissions" - -#: ../../include/conversation.php:1110 -msgid "permissions" -msgstr "permissions" - -#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: adresses de courriel" - -#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Publication publique" - -#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@exemple.com, mary@exemple.com" - -#: ../../include/conversation.php:1125 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 -#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Aperçu" - -#: ../../include/conversation.php:1134 -msgid "Post to Groups" -msgstr "Publier aux groupes" - -#: ../../include/conversation.php:1135 -msgid "Post to Contacts" -msgstr "Publier aux contacts" - -#: ../../include/conversation.php:1136 -msgid "Private post" -msgstr "Message privé" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "Plus récent" - -#: ../../include/text.php:299 -msgid "older" -msgstr "Plus ancien" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "précédent" - -#: ../../include/text.php:306 -msgid "first" -msgstr "premier" - -#: ../../include/text.php:338 -msgid "last" -msgstr "dernier" - -#: ../../include/text.php:341 -msgid "next" -msgstr "suivant" - -#: ../../include/text.php:396 -msgid "Loading more entries..." -msgstr "" - -#: ../../include/text.php:397 -msgid "The end" -msgstr "" - -#: ../../include/text.php:870 -msgid "No contacts" -msgstr "Aucun contact" - -#: ../../include/text.php:879 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" - -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 -msgid "View Contacts" -msgstr "Voir les contacts" - -#: ../../include/text.php:971 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Sauver" - -#: ../../include/text.php:1020 -msgid "poke" -msgstr "titiller" - -#: ../../include/text.php:1020 -msgid "poked" -msgstr "a titillé" - -#: ../../include/text.php:1021 -msgid "ping" -msgstr "attirer l'attention" - -#: ../../include/text.php:1021 -msgid "pinged" -msgstr "a attiré l'attention de" - -#: ../../include/text.php:1022 -msgid "prod" -msgstr "aiguillonner" - -#: ../../include/text.php:1022 -msgid "prodded" -msgstr "a aiguillonné" - -#: ../../include/text.php:1023 -msgid "slap" -msgstr "gifler" - -#: ../../include/text.php:1023 -msgid "slapped" -msgstr "a giflé" - -#: ../../include/text.php:1024 -msgid "finger" -msgstr "tripoter" - -#: ../../include/text.php:1024 -msgid "fingered" -msgstr "a tripoté" - -#: ../../include/text.php:1025 -msgid "rebuff" -msgstr "rabrouer" - -#: ../../include/text.php:1025 -msgid "rebuffed" -msgstr "a rabroué" - -#: ../../include/text.php:1039 -msgid "happy" -msgstr "heureuse" - -#: ../../include/text.php:1040 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1041 -msgid "mellow" -msgstr "suave" - -#: ../../include/text.php:1042 -msgid "tired" -msgstr "fatiguée" - -#: ../../include/text.php:1043 -msgid "perky" -msgstr "guillerette" - -#: ../../include/text.php:1044 -msgid "angry" -msgstr "colérique" - -#: ../../include/text.php:1045 -msgid "stupified" -msgstr "stupéfaite" - -#: ../../include/text.php:1046 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1047 -msgid "interested" -msgstr "intéressée" - -#: ../../include/text.php:1048 -msgid "bitter" -msgstr "amère" - -#: ../../include/text.php:1049 -msgid "cheerful" -msgstr "entraînante" - -#: ../../include/text.php:1050 -msgid "alive" -msgstr "vivante" - -#: ../../include/text.php:1051 -msgid "annoyed" -msgstr "ennuyée" - -#: ../../include/text.php:1052 -msgid "anxious" -msgstr "anxieuse" - -#: ../../include/text.php:1053 -msgid "cranky" -msgstr "excentrique" - -#: ../../include/text.php:1054 -msgid "disturbed" -msgstr "dérangée" - -#: ../../include/text.php:1055 -msgid "frustrated" -msgstr "frustrée" - -#: ../../include/text.php:1056 -msgid "motivated" -msgstr "motivée" - -#: ../../include/text.php:1057 -msgid "relaxed" -msgstr "détendue" - -#: ../../include/text.php:1058 -msgid "surprised" -msgstr "surprise" - -#: ../../include/text.php:1228 -msgid "Monday" -msgstr "Lundi" - -#: ../../include/text.php:1228 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../include/text.php:1228 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../include/text.php:1228 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../include/text.php:1228 -msgid "Friday" -msgstr "Vendredi" - -#: ../../include/text.php:1228 -msgid "Saturday" -msgstr "Samedi" - -#: ../../include/text.php:1228 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../include/text.php:1232 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:1232 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:1232 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1232 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:1232 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1232 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:1232 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:1232 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:1232 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:1232 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:1232 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1232 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1422 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Regarder la vidéo" - -#: ../../include/text.php:1454 -msgid "bytes" -msgstr "octets" - -#: ../../include/text.php:1478 ../../include/text.php:1490 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "lien original" - -#: ../../include/text.php:1731 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/text.php:1987 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commentaire" - -#: ../../include/text.php:1990 -msgid "post" -msgstr "publication" - -#: ../../include/text.php:2158 -msgid "Item filed" -msgstr "Élément classé" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Déconnecté." - -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Échec de connexion." - -#: ../../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." - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Le message d'erreur était :" - -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/bbcode.php:531 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:565 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 -msgid "$1 wrote:" -msgstr "$1 a écrit:" - -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Bienvenue " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Merci d'illustrer votre profil d'une image." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Bienvenue à nouveau, " - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." - -#: ../../include/oembed.php:213 -msgid "Embedded content" -msgstr "Contenu incorporé" - -#: ../../include/oembed.php:222 -msgid "Embedding disabled" -msgstr "Incorporation désactivée" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actuellement masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actuellement féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Principalement masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Principalement féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgenre" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Inter-sexe" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermaphrodite" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutre" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non-spécifique" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Autre" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indécis" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Hommes" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmes" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../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 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Amis" - -#: ../../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/user.php:40 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "L'invitation fournie n'a pu être validée." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Adresse OpenID invalide" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Entrez les informations requises." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Utilisez un nom plus court." - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Nom trop court." - -#: ../../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)." - -#: ../../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." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Ceci n'est pas une adresse courriel valide." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Impossible d'utiliser ce courriel." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." - -#: ../../include/user.php: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é." - -#: ../../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." - -#: ../../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." - -#: ../../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\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t" - -#: ../../include/user.php: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 "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s." - -#: ../../include/user.php:413 ../../mod/admin.php:838 -#, php-format -msgid "Registration details for %s" -msgstr "Détails d'inscription pour %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Cette entrée à été édité" - -#: ../../object/Item.php:116 ../../mod/photos.php:1359 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Message privé" - -#: ../../object/Item.php:120 ../../mod/settings.php:681 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Éditer" - -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "sauver vers dossier" - -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "mett en avant" - -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "ne plus mettre en avant" - -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "mettre en avant" - -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "mis en avant" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "ignorer le fil" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "Ne plus ignorer le fil" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "Ignorer le statut" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignoré" - -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "ajouter une étiquette" - -#: ../../object/Item.php:231 ../../mod/photos.php:1542 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" -msgstr "J'aime" - -#: ../../object/Item.php:231 ../../mod/content.php:684 -msgid "like" -msgstr "aime" - -#: ../../object/Item.php:232 ../../mod/photos.php:1543 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" -msgstr "Je n'aime pas" - -#: ../../object/Item.php:232 ../../mod/content.php:685 -msgid "dislike" -msgstr "n'aime pas" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "Share this" -msgstr "Partager" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "share" -msgstr "partager" - -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "à" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "Inter-mur" - -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "en Inter-mur:" - -#: ../../object/Item.php:387 ../../mod/content.php:603 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commentaire" -msgstr[1] "%d commentaires" - -#: ../../object/Item.php:675 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../mod/content.php:707 -msgid "This is you" -msgstr "C'est vous" - -#: ../../object/Item.php:679 ../../mod/content.php:711 -msgid "Bold" -msgstr "Gras" - -#: ../../object/Item.php:680 ../../mod/content.php:712 -msgid "Italic" -msgstr "Italique" - -#: ../../object/Item.php:681 ../../mod/content.php:713 -msgid "Underline" -msgstr "Souligné" - -#: ../../object/Item.php:682 ../../mod/content.php:714 -msgid "Quote" -msgstr "Citation" - -#: ../../object/Item.php:683 ../../mod/content.php:715 -msgid "Code" -msgstr "Code" - -#: ../../object/Item.php:684 ../../mod/content.php:716 -msgid "Image" -msgstr "Image" - -#: ../../object/Item.php:685 ../../mod/content.php:717 -msgid "Link" -msgstr "Lien" - -#: ../../object/Item.php:686 ../../mod/content.php:718 -msgid "Video" -msgstr "Vidéo" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elément non disponible." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element introuvable." - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Pas de destinataire sélectionné." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossible de vérifier votre localisation." - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Impossible d'envoyer le message." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Récupération des messages infructueuse." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Message envoyé." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Pas de destinataire." - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Envoyer un message privé" - -#: ../../mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." - -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "À:" - -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Sujet:" - -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Votre message:" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Groupe créé." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Impossible de créer le groupe." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Groupe introuvable." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Groupe renommé." - -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Sauvegarder le groupe" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Créez un groupe de contacts/amis." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nom du groupe: " - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Groupe enlevé." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossible d'enlever le groupe." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Éditeur de groupe" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membres" - -#: ../../mod/group.php:194 ../../mod/contacts.php:586 -msgid "All Contacts" -msgstr "Tous les contacts" - -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Pas de délégataire potentiel." - -#: ../../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/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestionnaires existants" - -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Délégataires existants" - -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Délégataires potentiels" - -#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Utiliser comme photo de profil" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Ajouter" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Aucune entrée." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identifiant de demande invalide." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:215 -msgid "Discard" -msgstr "Rejeter" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Système" - -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Personnel" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Voir les demandes ignorées" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Cacher les demandes ignorées" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 -msgid "Notification type: " -msgstr "Type de notification: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Suggestion d'amitié/contact" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "suggéré(e) par %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 -msgid "Hide this contact from others" -msgstr "Cacher ce contact aux autres" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Poster une nouvelle avtivité d'ami" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "if applicable" -msgstr "si possible" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Approuver" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Prétend que vous le connaissez: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "oui" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "non" - -#: ../../mod/notifications.php:182 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: ../../mod/notifications.php:185 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: ../../mod/notifications.php:193 -msgid "Friend" -msgstr "Ami" - -#: ../../mod/notifications.php:194 -msgid "Sharer" -msgstr "Initiateur du partage" - -#: ../../mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fan/Admirateur" - -#: ../../mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Demande de connexion/relation" - -#: ../../mod/notifications.php:200 -msgid "New Follower" -msgstr "Nouvel abonné" - -#: ../../mod/notifications.php:221 -msgid "No introductions." -msgstr "Aucune demande d'introduction." - -#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "%s a aimé la publication de %s" - -#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s n'a pas aimé la publication de %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 -#: ../../mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s est désormais ami(e) avec %s" - -#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s a créé une nouvelle publication" - -#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 -#: ../../mod/notifications.php:517 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s a commenté la publication de %s" - -#: ../../mod/notifications.php:310 -msgid "No more network notifications." -msgstr "Aucune notification du réseau." - -#: ../../mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Notifications du réseau" - -#: ../../mod/notifications.php:340 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Pas plus de notifications système." - -#: ../../mod/notifications.php:344 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Notifications du système" - -#: ../../mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Aucun notification personnelle." - -#: ../../mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Notifications personnelles" - -#: ../../mod/notifications.php:524 -msgid "No more home notifications." -msgstr "Aucune notification de la page d'accueil." - -#: ../../mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Notifications de page d'accueil" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Aucun profil" - -#: ../../mod/settings.php:34 ../../mod/photos.php:80 -msgid "everybody" -msgstr "tout le monde" - -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 -msgid "Account" -msgstr "Compte" - -#: ../../mod/settings.php:46 -msgid "Additional features" -msgstr "Fonctions supplémentaires" - -#: ../../mod/settings.php:51 -msgid "Display" -msgstr "Afficher" - -#: ../../mod/settings.php:57 ../../mod/settings.php:785 -msgid "Social Networks" -msgstr "Réseaux sociaux" - -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 -msgid "Plugins" -msgstr "Extensions" - -#: ../../mod/settings.php:72 -msgid "Connected apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:77 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Exporter" - -#: ../../mod/settings.php:82 -msgid "Remove account" -msgstr "Supprimer le compte" - -#: ../../mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Il manque certaines informations importantes!" - -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 -msgid "Update" -msgstr "Mises-à-jour" - -#: ../../mod/settings.php:243 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossible de se connecter au compte courriel configuré." - -#: ../../mod/settings.php:248 -msgid "Email settings updated." -msgstr "Réglages de courriel mis-à-jour." - -#: ../../mod/settings.php:263 -msgid "Features updated" -msgstr "Fonctionnalités mises à jour" - -#: ../../mod/settings.php:326 -msgid "Relocate message has been send to your contacts" -msgstr "Un message de relocalisation a été envoyé à vos contacts." - -#: ../../mod/settings.php:340 -msgid "Passwords do not match. Password unchanged." -msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." - -#: ../../mod/settings.php:345 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." - -#: ../../mod/settings.php:353 -msgid "Wrong password." -msgstr "Mauvais mot de passe." - -#: ../../mod/settings.php:364 -msgid "Password changed." -msgstr "Mots de passe changés." - -#: ../../mod/settings.php:366 -msgid "Password update failed. Please try again." -msgstr "Le changement de mot de passe a échoué. Merci de recommencer." - -#: ../../mod/settings.php:433 -msgid " Please use a shorter name." -msgstr " Merci d'utiliser un nom plus court." - -#: ../../mod/settings.php:435 -msgid " Name too short." -msgstr " Nom trop court." - -#: ../../mod/settings.php:444 -msgid "Wrong Password" -msgstr "Mauvais mot de passe" - -#: ../../mod/settings.php:449 -msgid " Not valid email." -msgstr " Email invalide." - -#: ../../mod/settings.php:455 -msgid " Cannot change to that email." -msgstr " Impossible de changer pour cet email." - -#: ../../mod/settings.php:511 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." - -#: ../../mod/settings.php:515 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." - -#: ../../mod/settings.php:545 -msgid "Settings updated." -msgstr "Réglages mis à jour." - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 -msgid "Add application" -msgstr "Ajouter une application" - -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 -msgid "Save Settings" -msgstr "Sauvegarder les paramétres" - -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 -msgid "Name" -msgstr "Nom" - -#: ../../mod/settings.php:622 ../../mod/settings.php:648 -msgid "Consumer Key" -msgstr "Clé utilisateur" - -#: ../../mod/settings.php:623 ../../mod/settings.php:649 -msgid "Consumer Secret" -msgstr "Secret utilisateur" - -#: ../../mod/settings.php:624 ../../mod/settings.php:650 -msgid "Redirect" -msgstr "Rediriger" - -#: ../../mod/settings.php:625 ../../mod/settings.php:651 -msgid "Icon url" -msgstr "URL de l'icône" - -#: ../../mod/settings.php:636 -msgid "You can't edit this application." -msgstr "Vous ne pouvez pas éditer cette application." - -#: ../../mod/settings.php:679 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:683 -msgid "Client key starts with" -msgstr "La clé cliente commence par" - -#: ../../mod/settings.php:684 -msgid "No name" -msgstr "Sans nom" - -#: ../../mod/settings.php:685 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: ../../mod/settings.php:697 -msgid "No Plugin settings configured" -msgstr "Pas de réglages d'extensions configurés" - -#: ../../mod/settings.php:705 -msgid "Plugin Settings" -msgstr "Extensions" - -#: ../../mod/settings.php:719 -msgid "Off" -msgstr "Éteint" - -#: ../../mod/settings.php:719 -msgid "On" -msgstr "Allumé" - -#: ../../mod/settings.php:727 -msgid "Additional Features" -msgstr "Fonctions supplémentaires" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Le support natif pour la connectivité %s est %s" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -msgid "enabled" -msgstr "activé" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -msgid "disabled" -msgstr "désactivé" - -#: ../../mod/settings.php:742 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:778 -msgid "Email access is disabled on this site." -msgstr "L'accès courriel est désactivé sur ce site." - -#: ../../mod/settings.php:790 -msgid "Email/Mailbox Setup" -msgstr "Réglages de courriel/boîte à lettre" - -#: ../../mod/settings.php:791 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." - -#: ../../mod/settings.php:792 -msgid "Last successful email check:" -msgstr "Dernière vérification réussie des courriels:" - -#: ../../mod/settings.php:794 -msgid "IMAP server name:" -msgstr "Nom du serveur IMAP:" - -#: ../../mod/settings.php:795 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: ../../mod/settings.php:796 -msgid "Security:" -msgstr "Sécurité:" - -#: ../../mod/settings.php:796 ../../mod/settings.php:801 -msgid "None" -msgstr "Aucun(e)" - -#: ../../mod/settings.php:797 -msgid "Email login name:" -msgstr "Nom de connexion:" - -#: ../../mod/settings.php:798 -msgid "Email password:" -msgstr "Mot de passe:" - -#: ../../mod/settings.php:799 -msgid "Reply-to address:" -msgstr "Adresse de réponse:" - -#: ../../mod/settings.php:800 -msgid "Send public posts to all email contacts:" -msgstr "Envoyer les publications publiques à tous les contacts courriels:" - -#: ../../mod/settings.php:801 -msgid "Action after import:" -msgstr "Action après import:" - -#: ../../mod/settings.php:801 -msgid "Mark as seen" -msgstr "Marquer comme vu" - -#: ../../mod/settings.php:801 -msgid "Move to folder" -msgstr "Déplacer vers" - -#: ../../mod/settings.php:802 -msgid "Move to folder:" -msgstr "Déplacer vers:" - -#: ../../mod/settings.php:833 ../../mod/admin.php:545 -msgid "No special theme for mobile devices" -msgstr "Pas de thème particulier pour les terminaux mobiles" - -#: ../../mod/settings.php:883 -msgid "Display Settings" -msgstr "Affichage" - -#: ../../mod/settings.php:889 ../../mod/settings.php:904 -msgid "Display Theme:" -msgstr "Thème d'affichage:" - -#: ../../mod/settings.php:890 -msgid "Mobile Theme:" -msgstr "Thème mobile:" - -#: ../../mod/settings.php:891 -msgid "Update browser every xx seconds" -msgstr "Mettre-à-jour l'affichage toutes les xx secondes" - -#: ../../mod/settings.php:891 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Délai minimum de 10 secondes, pas de maximum" - -#: ../../mod/settings.php:892 -msgid "Number of items to display per page:" -msgstr "Nombre d’éléments par page:" - -#: ../../mod/settings.php:892 ../../mod/settings.php:893 -msgid "Maximum of 100 items" -msgstr "Maximum de 100 éléments" - -#: ../../mod/settings.php:893 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" - -#: ../../mod/settings.php:894 -msgid "Don't show emoticons" -msgstr "Ne pas afficher les émoticônes (smileys grahiques)" - -#: ../../mod/settings.php:895 -msgid "Don't show notices" -msgstr "Ne plus afficher les avis" - -#: ../../mod/settings.php:896 -msgid "Infinite scroll" -msgstr "Défilement infini" - -#: ../../mod/settings.php:897 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "User Types" -msgstr "Types d'utilisateurs" - -#: ../../mod/settings.php:975 -msgid "Community Types" -msgstr "Genre de communautés" - -#: ../../mod/settings.php:976 -msgid "Normal Account Page" -msgstr "Compte normal" - -#: ../../mod/settings.php:977 -msgid "This account is a normal personal profile" -msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" - -#: ../../mod/settings.php:980 -msgid "Soapbox Page" -msgstr "Compte \"boîte à savon\"" - -#: ../../mod/settings.php:981 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" - -#: ../../mod/settings.php:984 -msgid "Community Forum/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: ../../mod/settings.php:985 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" - -#: ../../mod/settings.php:988 -msgid "Automatic Friend Page" -msgstr "Compte d'\"amitié automatique\"" - -#: ../../mod/settings.php:989 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" - -#: ../../mod/settings.php:992 -msgid "Private Forum [Experimental]" -msgstr "Forum privé [expérimental]" - -#: ../../mod/settings.php:993 -msgid "Private forum - approved members only" -msgstr "Forum privé - modéré en inscription" - -#: ../../mod/settings.php:1005 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1005 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." - -#: ../../mod/settings.php:1015 -msgid "Publish your default profile in your local site directory?" -msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" - -#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 -msgid "No" -msgstr "Non" - -#: ../../mod/settings.php:1021 -msgid "Publish your default profile in the global social directory?" -msgstr "Publier votre profil par défaut sur l'annuaire social global?" - -#: ../../mod/settings.php:1029 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" - -#: ../../mod/settings.php:1033 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: ../../mod/settings.php:1038 -msgid "Allow friends to post to your profile page?" -msgstr "Autoriser vos amis à publier sur votre profil?" - -#: ../../mod/settings.php:1044 -msgid "Allow friends to tag your posts?" -msgstr "Autoriser vos amis à étiqueter vos publications?" - -#: ../../mod/settings.php:1050 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" - -#: ../../mod/settings.php:1056 -msgid "Permit unknown people to send you private mail?" -msgstr "Autoriser les messages privés d'inconnus?" - -#: ../../mod/settings.php:1064 -msgid "Profile is not published." -msgstr "Ce profil n'est pas publié." - -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "ou" - -#: ../../mod/settings.php:1072 -msgid "Your Identity Address is" -msgstr "L'adresse de votre identité est" - -#: ../../mod/settings.php:1083 -msgid "Automatically expire posts after this many days:" -msgstr "Les publications expirent automatiquement après (en jours) :" - -#: ../../mod/settings.php:1083 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" - -#: ../../mod/settings.php:1084 -msgid "Advanced expiration settings" -msgstr "Réglages avancés de l'expiration" - -#: ../../mod/settings.php:1085 -msgid "Advanced Expiration" -msgstr "Expiration (avancé)" - -#: ../../mod/settings.php:1086 -msgid "Expire posts:" -msgstr "Faire expirer les publications:" - -#: ../../mod/settings.php:1087 -msgid "Expire personal notes:" -msgstr "Faire expirer les notes personnelles:" - -#: ../../mod/settings.php:1088 -msgid "Expire starred posts:" -msgstr "Faire expirer les publications marqués:" - -#: ../../mod/settings.php:1089 -msgid "Expire photos:" -msgstr "Faire expirer les photos:" - -#: ../../mod/settings.php:1090 -msgid "Only expire posts by others:" -msgstr "Faire expirer seulement les publications des autres:" - -#: ../../mod/settings.php:1116 -msgid "Account Settings" -msgstr "Compte" - -#: ../../mod/settings.php:1124 -msgid "Password Settings" -msgstr "Réglages de mot de passe" - -#: ../../mod/settings.php:1125 -msgid "New Password:" -msgstr "Nouveau mot de passe:" - -#: ../../mod/settings.php:1126 -msgid "Confirm:" -msgstr "Confirmer:" - -#: ../../mod/settings.php:1126 -msgid "Leave password fields blank unless changing" -msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" - -#: ../../mod/settings.php:1127 -msgid "Current Password:" -msgstr "Mot de passe actuel:" - -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 -msgid "Your current password to confirm the changes" -msgstr "Votre mot de passe actuel pour confirmer les modifications" - -#: ../../mod/settings.php:1128 -msgid "Password:" -msgstr "Mot de passe:" - -#: ../../mod/settings.php:1132 -msgid "Basic Settings" -msgstr "Réglages basiques" - -#: ../../mod/settings.php:1134 -msgid "Email Address:" -msgstr "Adresse courriel:" - -#: ../../mod/settings.php:1135 -msgid "Your Timezone:" -msgstr "Votre fuseau horaire:" - -#: ../../mod/settings.php:1136 -msgid "Default Post Location:" -msgstr "Emplacement de publication par défaut:" - -#: ../../mod/settings.php:1137 -msgid "Use Browser Location:" -msgstr "Utiliser la localisation géographique du navigateur:" - -#: ../../mod/settings.php:1140 -msgid "Security and Privacy Settings" -msgstr "Réglages de sécurité et vie privée" - -#: ../../mod/settings.php:1142 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximal de requêtes d'amitié/jour:" - -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 -msgid "(to prevent spam abuse)" -msgstr "(pour limiter l'impact du spam)" - -#: ../../mod/settings.php:1143 -msgid "Default Post Permissions" -msgstr "Permissions de publication par défaut" - -#: ../../mod/settings.php:1144 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Montrer aux groupes" - -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Montrer aux Contacts" - -#: ../../mod/settings.php:1155 -msgid "Default Private Post" -msgstr "Message privé par défaut" - -#: ../../mod/settings.php:1156 -msgid "Default Public Post" -msgstr "Message publique par défaut" - -#: ../../mod/settings.php:1160 -msgid "Default Permissions for New Posts" -msgstr "Permissions par défaut pour les nouvelles publications" - -#: ../../mod/settings.php:1172 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum de messages privés d'inconnus par jour:" - -#: ../../mod/settings.php:1175 -msgid "Notification Settings" -msgstr "Réglages de notification" - -#: ../../mod/settings.php:1176 -msgid "By default post a status message when:" -msgstr "Par défaut, poster un statut quand:" - -#: ../../mod/settings.php:1177 -msgid "accepting a friend request" -msgstr "j'accepte un ami" - -#: ../../mod/settings.php:1178 -msgid "joining a forum/community" -msgstr "joignant un forum/une communauté" - -#: ../../mod/settings.php:1179 -msgid "making an interesting profile change" -msgstr "je fais une modification intéressante de mon profil" - -#: ../../mod/settings.php:1180 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand:" - -#: ../../mod/settings.php:1181 -msgid "You receive an introduction" -msgstr "Vous recevez une introduction" - -#: ../../mod/settings.php:1182 -msgid "Your introductions are confirmed" -msgstr "Vos introductions sont confirmées" - -#: ../../mod/settings.php:1183 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un écrit sur votre mur" - -#: ../../mod/settings.php:1184 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un vous commente" - -#: ../../mod/settings.php:1185 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" - -#: ../../mod/settings.php:1186 -msgid "You receive a friend suggestion" -msgstr "Vous avez reçu une suggestion d'ami" - -#: ../../mod/settings.php:1187 -msgid "You are tagged in a post" -msgstr "Vous avez été étiquetté dans une publication" - -#: ../../mod/settings.php:1188 -msgid "You are poked/prodded/etc. in a post" -msgstr "Vous avez été sollicité dans une publication" - -#: ../../mod/settings.php:1190 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1192 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1194 -msgid "Advanced Account/Page Type Settings" -msgstr "Paramètres avancés de compte/page" - -#: ../../mod/settings.php:1195 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifier le comportement de ce compte dans certaines situations" - -#: ../../mod/settings.php:1198 -msgid "Relocate" -msgstr "Relocaliser" - -#: ../../mod/settings.php:1199 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." - -#: ../../mod/settings.php:1200 -msgid "Resend relocate message to contacts" -msgstr "Renvoyer un message de relocalisation aux contacts." - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amis communs" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Pas de contacts en commun." - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informations de confidentialité indisponibles." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visible par:" - -#: ../../mod/contacts.php:112 +#: mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d contact édité" msgstr[1] "%d contacts édités." -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 +#: mod/contacts.php:145 mod/contacts.php:340 msgid "Could not access contact record." msgstr "Impossible d'accéder à l'enregistrement du contact." -#: ../../mod/contacts.php:157 +#: mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil séléctionné." -#: ../../mod/contacts.php:190 +#: mod/contacts.php:192 msgid "Contact updated." msgstr "Contact mis-à-jour." -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 +#: mod/contacts.php:194 mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Échec de mise-à-jour du contact." -#: ../../mod/contacts.php:291 +#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 +#: mod/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 +#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5022 index.php:382 +msgid "Permission denied." +msgstr "Permission refusée." + +#: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: ../../mod/contacts.php:291 +#: mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: ../../mod/contacts.php:302 +#: mod/contacts.php:372 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: ../../mod/contacts.php:302 +#: mod/contacts.php:372 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: ../../mod/contacts.php:314 +#: mod/contacts.php:384 msgid "Contact has been archived" msgstr "Contact archivé" -#: ../../mod/contacts.php:314 +#: mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "Contact désarchivé" -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 +#: mod/contacts.php:411 mod/contacts.php:767 msgid "Do you really want to delete this contact?" msgstr "Voulez-vous vraiment supprimer ce contact?" -#: ../../mod/contacts.php:356 +#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:210 +#: mod/settings.php:1063 mod/settings.php:1069 mod/settings.php:1077 +#: mod/settings.php:1081 mod/settings.php:1086 mod/settings.php:1092 +#: mod/settings.php:1098 mod/settings.php:1104 mod/settings.php:1130 +#: mod/settings.php:1131 mod/settings.php:1132 mod/settings.php:1133 +#: mod/settings.php:1134 mod/dfrn_request.php:845 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/api.php:105 include/items.php:4854 +msgid "Yes" +msgstr "Oui" + +#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68 +#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 +#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 +#: include/items.php:4857 +msgid "Cancel" +msgstr "Annuler" + +#: mod/contacts.php:428 msgid "Contact has been removed." msgstr "Ce contact a été retiré." -#: ../../mod/contacts.php:394 +#: mod/contacts.php:466 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: ../../mod/contacts.php:398 +#: mod/contacts.php:470 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: ../../mod/contacts.php:403 +#: mod/contacts.php:475 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: ../../mod/contacts.php:423 +#: mod/contacts.php:495 msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: ../../mod/contacts.php:426 ../../mod/admin.php:569 +#: mod/contacts.php:498 mod/admin.php:618 msgid "Never" msgstr "Jamais" -#: ../../mod/contacts.php:430 +#: mod/contacts.php:502 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: ../../mod/contacts.php:430 +#: mod/contacts.php:502 msgid "(Update was not successful)" msgstr "(Mise à jour échouée)" -#: ../../mod/contacts.php:432 +#: mod/contacts.php:504 msgid "Suggest friends" msgstr "Suggérer amitié/contact" -#: ../../mod/contacts.php:436 +#: mod/contacts.php:508 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: ../../mod/contacts.php:444 +#: mod/contacts.php:511 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" + +#: mod/contacts.php:516 msgid "View all contacts" msgstr "Voir tous les contacts" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1083 msgid "Unblock" msgstr "Débloquer" -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1082 msgid "Block" msgstr "Bloquer" -#: ../../mod/contacts.php:452 +#: mod/contacts.php:524 msgid "Toggle Blocked status" msgstr "(dés)activer l'état \"bloqué\"" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 msgid "Unignore" msgstr "Ne plus ignorer" -#: ../../mod/contacts.php:458 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 +msgid "Ignore" +msgstr "Ignorer" + +#: mod/contacts.php:531 msgid "Toggle Ignored status" msgstr "(dés)activer l'état \"ignoré\"" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Unarchive" msgstr "Désarchiver" -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Archive" msgstr "Archiver" -#: ../../mod/contacts.php:465 +#: mod/contacts.php:539 msgid "Toggle Archive status" msgstr "(dés)activer l'état \"archivé\"" -#: ../../mod/contacts.php:468 +#: mod/contacts.php:543 msgid "Repair" msgstr "Réparer" -#: ../../mod/contacts.php:471 +#: mod/contacts.php:546 msgid "Advanced Contact Settings" msgstr "Réglages avancés du contact" -#: ../../mod/contacts.php:477 +#: mod/contacts.php:553 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: ../../mod/contacts.php:480 +#: mod/contacts.php:556 msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: ../../mod/contacts.php:481 +#: mod/contacts.php:557 mod/admin.php:627 msgid "Disabled" msgstr "Désactivé" -#: ../../mod/contacts.php:481 +#: mod/contacts.php:557 msgid "Fetch information" msgstr "Récupérer informations" -#: ../../mod/contacts.php:481 +#: mod/contacts.php:557 msgid "Fetch information and keywords" msgstr "Récupérer informations" -#: ../../mod/contacts.php:490 +#: mod/contacts.php:566 msgid "Contact Editor" msgstr "Éditeur de contact" -#: ../../mod/contacts.php:493 +#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:511 mod/content.php:712 mod/install.php:250 +#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 +#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 +#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 +#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 +#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Envoyer" + +#: mod/contacts.php:569 msgid "Profile Visibility" msgstr "Visibilité du profil" -#: ../../mod/contacts.php:494 +#: mod/contacts.php:570 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." -#: ../../mod/contacts.php:495 +#: mod/contacts.php:571 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: ../../mod/contacts.php:496 +#: mod/contacts.php:572 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 +#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: ../../mod/contacts.php:502 +#: mod/contacts.php:578 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: ../../mod/contacts.php:503 +#: mod/contacts.php:579 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: ../../mod/contacts.php:504 +#: mod/contacts.php:580 msgid "Repair URL settings" msgstr "Réglages de réparation des URL" -#: ../../mod/contacts.php:505 +#: mod/contacts.php:581 msgid "View conversations" msgstr "Voir les conversations" -#: ../../mod/contacts.php:507 +#: mod/contacts.php:583 msgid "Delete contact" msgstr "Effacer ce contact" -#: ../../mod/contacts.php:511 +#: mod/contacts.php:587 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: ../../mod/contacts.php:513 +#: mod/contacts.php:589 msgid "Update public posts" msgstr "Mettre à jour les publications publiques:" -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 +#: mod/contacts.php:591 mod/admin.php:1584 msgid "Update now" msgstr "Mettre à jour" -#: ../../mod/contacts.php:522 +#: mod/contacts.php:598 msgid "Currently blocked" msgstr "Actuellement bloqué" -#: ../../mod/contacts.php:523 +#: mod/contacts.php:599 msgid "Currently ignored" msgstr "Actuellement ignoré" -#: ../../mod/contacts.php:524 +#: mod/contacts.php:600 msgid "Currently archived" msgstr "Actuellement archivé" -#: ../../mod/contacts.php:525 +#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 +msgid "Hide this contact from others" +msgstr "Cacher ce contact aux autres" + +#: mod/contacts.php:601 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: ../../mod/contacts.php:526 +#: mod/contacts.php:602 msgid "Notification for new posts" msgstr "Notification des nouvelles publications" -#: ../../mod/contacts.php:526 +#: mod/contacts.php:602 msgid "Send a notification of every new post of this contact" msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: ../../mod/contacts.php:529 +#: mod/contacts.php:605 msgid "Blacklisted keywords" msgstr "Mots-clés sur la liste noire" -#: ../../mod/contacts.php:529 +#: mod/contacts.php:605 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné." -#: ../../mod/contacts.php:580 +#: mod/contacts.php:612 +msgid "Profile URL" +msgstr "URL du Profil" + +#: mod/contacts.php:658 msgid "Suggestions" msgstr "Suggestions" -#: ../../mod/contacts.php:583 +#: mod/contacts.php:661 msgid "Suggest potential friends" msgstr "Suggérer des amis potentiels" -#: ../../mod/contacts.php:589 +#: mod/contacts.php:665 mod/group.php:192 +msgid "All Contacts" +msgstr "Tous les contacts" + +#: mod/contacts.php:668 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: ../../mod/contacts.php:592 +#: mod/contacts.php:672 msgid "Unblocked" msgstr "Non-bloqués" -#: ../../mod/contacts.php:595 +#: mod/contacts.php:675 msgid "Only show unblocked contacts" msgstr "Ne montrer que les contacts non-bloqués" -#: ../../mod/contacts.php:599 +#: mod/contacts.php:680 msgid "Blocked" msgstr "Bloqués" -#: ../../mod/contacts.php:602 +#: mod/contacts.php:683 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: ../../mod/contacts.php:606 +#: mod/contacts.php:688 msgid "Ignored" msgstr "Ignorés" -#: ../../mod/contacts.php:609 +#: mod/contacts.php:691 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: ../../mod/contacts.php:613 +#: mod/contacts.php:696 msgid "Archived" msgstr "Archivés" -#: ../../mod/contacts.php:616 +#: mod/contacts.php:699 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: ../../mod/contacts.php:620 +#: mod/contacts.php:704 msgid "Hidden" msgstr "Cachés" -#: ../../mod/contacts.php:623 +#: mod/contacts.php:707 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: ../../mod/contacts.php:671 -msgid "Mutual Friendship" -msgstr "Relation réciproque" +#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 +#: include/nav.php:186 view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Contacts" -#: ../../mod/contacts.php:675 -msgid "is a fan of yours" -msgstr "Vous suit" - -#: ../../mod/contacts.php:679 -msgid "you are a fan of" -msgstr "Vous le/la suivez" - -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Éditer le contact" - -#: ../../mod/contacts.php:722 +#: mod/contacts.php:762 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: ../../mod/contacts.php:723 ../../mod/directory.php:61 +#: mod/contacts.php:763 mod/directory.php:63 msgid "Finding: " msgstr "Trouvé: " -#: ../../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/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +msgid "Find" +msgstr "Trouver" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" +#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +msgid "Update" +msgstr "Mises-à-jour" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "La taille du fichier dépasse la limite de %d" +#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 +#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 +msgid "Delete" +msgstr "Supprimer" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Le téléversement a échoué." +#: mod/contacts.php:786 +msgid "Mutual Friendship" +msgstr "Relation réciproque" -#: ../../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 "[contenu incorporé - rechargez la page pour le voir]" +#: mod/contacts.php:790 +msgid "is a fan of yours" +msgstr "Vous suit" -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Exporter le compte" +#: mod/contacts.php:794 +msgid "you are a fan of" +msgstr "Vous le/la suivez" -#: ../../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 "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/contacts.php:811 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Éditer le contact" -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "Tout exporter" +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Aucun profil" -#: ../../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 "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: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/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 "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
    identifiant : %s
    mot de passe : %s

    Vous pourrez changer votre mot de passe une fois connecté." - -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traitée." - -#: ../../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/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/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/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/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Votre OpenID (facultatif): " - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Inclure votre profil dans l'annuaire des membres?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Votre ID d'invitation: " - -#: ../../mod/register.php:255 ../../mod/admin.php:621 -msgid "Registration" -msgstr "Inscription" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Votre nom complet (p.ex. Michel Dupont): " - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Votre adresse courriel: " - -#: ../../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 "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Choisir un pseudo: " - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importer" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importer votre profile dans cette instance de friendica" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publication réussie." - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Système indisponible pour cause de maintenance" - -#: ../../mod/profile.php:155 ../../mod/display.php:332 -msgid "Access to this profile has been restricted." -msgstr "L'accès au profil a été restreint." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Conseils aux nouveaux venus" - -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 -#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Accès public refusé." - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Pas de vidéo sélectionné" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Accès restreint à cet élément." - -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Voir l'album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Vidéos récente" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Téléversé une nouvelle vidéo" - -#: ../../mod/manage.php:106 +#: mod/manage.php:106 msgid "Manage Identities and/or Pages" msgstr "Gérer les identités et/ou les pages" -#: ../../mod/manage.php:107 +#: mod/manage.php:107 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." -#: ../../mod/manage.php:108 +#: mod/manage.php:108 msgid "Select an identity to manage: " msgstr "Choisir une identité à gérer: " -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Élément introuvable" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Publication réussie." -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Éditer la publication" +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Permission refusée" -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Recherche de personnes" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Aucune correspondance" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Éditer la visibilité du profil" -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Inscription validée." +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 +#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" -#: ../../mod/regmod.php:92 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Merci de vous connecter." +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visible par" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Cette introduction a déjà été acceptée." +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tous les contacts (ayant un accès sécurisé)" -#: ../../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/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 +#: mod/notice.php:15 include/items.php:4813 +msgid "Item not found." +msgstr "Élément introuvable." -#: ../../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/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/directory.php:35 mod/photos.php:942 +msgid "Public access denied." +msgstr "Accès public refusé." -#: ../../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/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accès au profil a été restreint." -#: ../../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 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/display.php:505 +msgid "Item has been removed." +msgstr "Cet élément a été enlevé." -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Phase d'introduction achevée." +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bienvenue sur Friendica" -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Erreur de protocole non-récupérable." +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist du nouvel utilisateur" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil indisponible." - -#: ../../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/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/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/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Localisateur invalide" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Adresse courriel invalide." - -#: ../../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/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/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Vous vous êtes déjà présenté ici." - -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Il semblerait que vous soyez déjà ami avec %s." - -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "URL de profil invalide." - -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Votre introduction a été envoyée." - -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Connectez-vous pour confirmer l'introduction." - -#: ../../mod/dfrn_request.php:660 +#: mod/newmember.php:12 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Cacher ce contact" +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Bien démarrer" -#: ../../mod/dfrn_request.php:674 +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica pas-à-pas" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." + +#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 +#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Réglages" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Éditer vos Réglages" + +#: mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." + +#: mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." + +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" + +#: mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Éditer votre Profil" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Mots-clés du profil" + +#: mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Connexions" + +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook." + +#: mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importer courriels" + +#: mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Consulter vos Contacts" + +#: mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Consulter l'Annuaire de votre Site" + +#: mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trouver de nouvelles personnes" + +#: mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "Groupes" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grouper vos contacts" + +#: mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Pourquoi mes éléments ne sont pas publics ?" + +#: mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "Obtenir de l'aide" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Aller à la section Aide" + +#: mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur de protocole OpenID. Pas d'ID en retour." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Échec de connexion." + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image envoyée, mais impossible de la retailler." + +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 +#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Photos du profil" + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format -msgid "Welcome home %s." -msgstr "Bienvenue chez vous, %s." +msgid "Image size reduction [%s] failed." +msgstr "Réduction de la taille de l'image [%s] échouée." -#: ../../mod/dfrn_request.php:675 +#: mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." + +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossible de traiter l'image" + +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 #, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Merci de confirmer votre demande d'introduction auprès de %s." +msgid "Image exceeds size limit of %s" +msgstr "L'image dépasse la taille limite de %s" -#: ../../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/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 +msgid "Unable to process image." +msgstr "Impossible de traiter l'image." -#: ../../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/profile_photo.php:242 +msgid "Upload File:" +msgstr "Fichier à téléverser:" -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Requête de relation/amitié" +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Choisir un profil:" -#: ../../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/profile_photo.php:245 +msgid "Upload" +msgstr "Téléverser" -#: ../../mod/dfrn_request.php:829 +#: mod/profile_photo.php:248 +msgid "or" +msgstr "ou" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "ignorer cette étape" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "choisissez une photo depuis vos albums" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "(Re)cadrer l'image" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ajustez le cadre de l'image pour une visualisation optimale." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Édition terminée" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Image téléversée avec succès." + +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2034 include/diaspora.php:2127 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "photo" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "le statut" + +#: 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" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Étiquette supprimée" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Enlever l'étiquette de l'élément" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Sélectionner une étiquette à supprimer: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Utiliser comme photo de profil" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Sauver dans le Dossier:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- choisir -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Sauver" + +#: mod/follow.php:24 +msgid "You already added this contact." +msgstr "Vous avez déjà ajouté ce contact." + +#: mod/follow.php:56 mod/dfrn_request.php:844 msgid "Please answer the following:" msgstr "Merci de répondre à ce qui suit:" -#: ../../mod/dfrn_request.php:830 +#: mod/follow.php:57 mod/dfrn_request.php:845 #, php-format msgid "Does %s know you?" msgstr "Est-ce que %s vous connaît?" -#: ../../mod/dfrn_request.php:834 +#: mod/follow.php:57 mod/settings.php:1063 mod/settings.php:1069 +#: mod/settings.php:1077 mod/settings.php:1081 mod/settings.php:1086 +#: mod/settings.php:1092 mod/settings.php:1098 mod/settings.php:1104 +#: mod/settings.php:1130 mod/settings.php:1131 mod/settings.php:1132 +#: mod/settings.php:1133 mod/settings.php:1134 mod/dfrn_request.php:845 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "Non" + +#: mod/follow.php:58 mod/dfrn_request.php:849 msgid "Add a personal note:" msgstr "Ajouter une note personnelle:" -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../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/dfrn_request.php:840 +#: mod/follow.php:64 mod/dfrn_request.php:855 msgid "Your Identity Address:" msgstr "Votre adresse d'identité:" -#: ../../mod/dfrn_request.php:843 +#: mod/follow.php:67 mod/dfrn_request.php:858 msgid "Submit Request" msgstr "Envoyer la requête" -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Fichiers" +#: mod/follow.php:106 +msgid "Contact added" +msgstr "Contact ajouté" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication originale." -#: ../../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/item.php:347 +msgid "Empty post discarded." +msgstr "Publication vide rejetée." -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Merci de vous connecter pour continuer." +#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 +#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 +msgid "Wall Photos" +msgstr "Photos du mur" -#: ../../mod/api.php:104 +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvée." + +#: mod/item.php:989 +#, php-format 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?" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Voulez-vous vraiment supprimer cette suggestion ?" +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Vous pouvez leur rendre visite sur %s" -#: ../../mod/suggest.php:74 +#: mod/item.php:992 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Ignorer/cacher" +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s a publié une mise à jour." -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contacts qui n’appartiennent à aucun groupe" +#: mod/group.php:29 +msgid "Group created." +msgstr "Groupe créé." -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Impossible de créer le groupe." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Groupe introuvable." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Groupe renommé." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Sauvegarder le groupe" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Créez un groupe de contacts/amis." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Nom du groupe: " + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Groupe enlevé." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossible d'enlever le groupe." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Éditeur de groupe" + +#: mod/group.php:190 +msgid "Members" +msgstr "Membres" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Vous devez être connecté pour utiliser les greffons." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applications" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Pas d'application installée." + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profil introuvable." + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 msgid "Contact not found." msgstr "Contact introuvable." -#: ../../mod/fsuggest.php:63 +#: 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é." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Réponse du site distant incomprise." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Réponse inattendue du site distant : " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Confirmation achevée avec succès." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Alerte du site distant : " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Échec temporaire. Merci de recommencer ultérieurement." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Introduction échouée ou annulée." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Impossible de définir la photo du contact." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:634 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s est désormais lié à %2$s" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Pas d'utilisateur trouvé pour '%s' " + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "Notre clé de chiffrement de site est apparemment corrompue." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "URL de site absente ou indéchiffrable." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Pas d'entrée pour ce contact sur notre site." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossible de vous définir des permissions sur notre système." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 +msgid "[Name Withheld]" +msgstr "[Nom non-publié]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s a rejoint %2$s" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Le profil demandé n'est pas disponible." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Conseils aux nouveaux venus" + +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Voulez-vous vraiment supprimer cette vidéo?" + +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Supprimer la vidéo" + +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Pas de vidéo sélectionné" + +#: mod/videos.php:298 mod/photos.php:1053 +msgid "Access to this item is restricted." +msgstr "Accès restreint à cet élément." + +#: mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Regarder la vidéo" + +#: mod/videos.php:380 mod/photos.php:1827 +msgid "View Album" +msgstr "Voir l'album" + +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Vidéos récente" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Téléversé une nouvelle vidéo" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" + +#: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "Suggestion d'amitié/contact envoyée." -#: ../../mod/fsuggest.php:97 +#: mod/fsuggest.php:97 msgid "Suggest Friends" msgstr "Suggérer des amis/contacts" -#: ../../mod/fsuggest.php:99 +#: mod/fsuggest.php:99 #, php-format msgid "Suggest a friend for %s" msgstr "Suggérer un ami/contact pour %s" -#: ../../mod/share.php:44 -msgid "link" -msgstr "lien" +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Requête invalide." -#: ../../mod/viewcontacts.php:41 +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Impossible de trouver un compte valide." + +#: 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." + +#: 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 "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous." + +#: 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 "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Requête de réinitialisation de mot de passe à %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est " + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." + +#: mod/lostpass.php: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\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t" + +#: 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 "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t" + +#: 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 "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Pseudo ou eMail : " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Réinitialiser" + +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s n'aime pas %3$s de %2$s" + +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} souhaite être votre ami(e)" + +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} vous a envoyé un message" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} a demandé à s'inscrire" + +#: mod/viewcontacts.php:41 msgid "No contacts." msgstr "Aucun contact." -#: ../../mod/admin.php:57 +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Voir les contacts" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Identifiant de demande invalide." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Rejeter" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Système" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Réseau" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Personnel" + +#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Profil" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Introductions" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Voir les demandes ignorées" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Cacher les demandes ignorées" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Type de notification: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Suggestion d'amitié/contact" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "suggéré(e) par %s" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Poster une nouvelle avtivité d'ami" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "si possible" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 +msgid "Approve" +msgstr "Approuver" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Prétend que vous le connaissez: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "oui" + +#: mod/notifications.php:191 +msgid "no" +msgstr "non" + +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" + +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Ami" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Initiateur du partage" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Admirateur" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Demande de connexion/relation" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Nouvel abonné" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "Localisation:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:581 +msgid "About:" +msgstr "À propos:" + +#: mod/notifications.php:224 include/identity.php:575 +msgid "Tags:" +msgstr "Étiquette:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:540 +msgid "Gender:" +msgstr "Genre:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Aucune demande d'introduction." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Notifications" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a aimé la publication de %s" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s n'a pas aimé la publication de %s" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s est désormais ami(e) avec %s" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s a créé une nouvelle publication" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s a commenté la publication de %s" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Aucune notification du réseau." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Notifications du réseau" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Pas plus de notifications système." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Notifications du système" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Aucun notification personnelle." + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Notifications personnelles" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Aucune notification de la page d'accueil." + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Notifications de page d'accueil" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texte source (bbcode) :" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Texte source (Diaspora) à convertir en BBcode :" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Source input : " + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML brut)" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html : " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb : " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md : " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html : " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb : " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb : " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Texte source (format Diaspora) :" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb :" + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Rien de neuf ici" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Effacer les notifications" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Nouveau message" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Pas de destinataire sélectionné." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Impossible de localiser les informations du contact." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Impossible d'envoyer le message." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Récupération des messages infructueuse." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Message envoyé." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Messages" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Voulez-vous vraiment supprimer ce message ?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Message supprimé." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Conversation supprimée." + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Entrez un lien web:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "À:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Sujet:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Votre message:" + +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Joindre photo" + +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: mod/message.php:335 mod/message.php:566 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Patientez" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Aucun message." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "Émetteur inconnu - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Vous et %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s et vous" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Effacer conversation" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Message indisponible." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Effacer message" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Répondre" + +#: 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]" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Réglages du contact appliqués." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Impossible d'appliquer les réglages." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Réglages de réparation des contacts" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "une photo" + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Retour à l'éditeur de contact" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Pas de miroir" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 +#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 +#: mod/settings.php:660 +msgid "Name" +msgstr "Nom" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Pseudo du compte" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL du compte" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "Echec du téléversement de l'image." + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "Accès public refusé." + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "Aucune photo sélectionnée" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Téléverser des photos" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nouvelle photo depuis cette URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Connexion" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accès refusé." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Relier" + +#: mod/dirfind.php:139 mod/match.php:73 +msgid "No matches" +msgstr "Aucune correspondance" + +#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Photos" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "Fichiers" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contacts qui n’appartiennent à aucun groupe" + +#: mod/admin.php:57 msgid "Theme settings updated." msgstr "Réglages du thème sauvés." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: mod/admin.php:104 mod/admin.php:682 msgid "Site" msgstr "Site" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 msgid "Users" msgstr "Utilisateurs" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 +msgid "Plugins" +msgstr "Extensions" + +#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 msgid "Themes" msgstr "Thèmes" -#: ../../mod/admin.php:108 +#: mod/admin.php:108 msgid "DB updates" msgstr "Mise-à-jour de la base" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 msgid "Logs" msgstr "Journaux" -#: ../../mod/admin.php:124 +#: mod/admin.php:125 msgid "probe address" msgstr "" -#: ../../mod/admin.php:125 +#: mod/admin.php:126 msgid "check webfinger" msgstr "" -#: ../../mod/admin.php:131 +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Admin" + +#: mod/admin.php:132 msgid "Plugin Features" msgstr "Propriétés des extensions" -#: ../../mod/admin.php:133 +#: mod/admin.php:134 msgid "diagnostics" msgstr "" -#: ../../mod/admin.php:134 +#: mod/admin.php:135 msgid "User registrations waiting for confirmation" msgstr "Inscriptions en attente de confirmation" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Compte normal" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Compte \"boîte à savon\"" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Compte auto-amical" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Compte de blog" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Forum privé" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Files d'attente des messages" - -#: ../../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 +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 +#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 +#: mod/admin.php:1524 msgid "Administration" msgstr "Administration" -#: ../../mod/admin.php:223 +#: mod/admin.php:202 +msgid "ID" +msgstr "" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:206 +msgid "Created" +msgstr "" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:220 mod/admin.php:1025 +msgid "Normal Account" +msgstr "Compte normal" + +#: mod/admin.php:221 mod/admin.php:1026 +msgid "Soapbox Account" +msgstr "Compte \"boîte à savon\"" + +#: mod/admin.php:222 mod/admin.php:1027 +msgid "Community/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: mod/admin.php:223 mod/admin.php:1028 +msgid "Automatic Friend Account" +msgstr "Compte auto-amical" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Compte de blog" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Forum privé" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Files d'attente des messages" + +#: mod/admin.php:250 msgid "Summary" msgstr "Résumé" -#: ../../mod/admin.php:225 +#: mod/admin.php:252 msgid "Registered users" msgstr "Utilisateurs inscrits" -#: ../../mod/admin.php:227 +#: mod/admin.php:254 msgid "Pending registrations" msgstr "Inscriptions en attente" -#: ../../mod/admin.php:228 +#: mod/admin.php:255 msgid "Version" msgstr "Versio" -#: ../../mod/admin.php:232 +#: mod/admin.php:260 msgid "Active plugins" msgstr "Extensions activés" -#: ../../mod/admin.php:255 +#: mod/admin.php:283 msgid "Can not parse base url. Must have at least ://" msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins ://" -#: ../../mod/admin.php:516 +#: mod/admin.php:565 msgid "Site settings updated." msgstr "Réglages du site mis-à-jour." -#: ../../mod/admin.php:562 +#: mod/admin.php:594 mod/settings.php:880 +msgid "No special theme for mobile devices" +msgstr "Pas de thème particulier pour les terminaux mobiles" + +#: mod/admin.php:611 msgid "No community page" msgstr "" -#: ../../mod/admin.php:563 +#: mod/admin.php:612 msgid "Public postings from users of this site" msgstr "" -#: ../../mod/admin.php:564 +#: mod/admin.php:613 msgid "Global community page" msgstr "" -#: ../../mod/admin.php:570 +#: mod/admin.php:619 msgid "At post arrival" msgstr "A l'arrivé d'une publication" -#: ../../mod/admin.php:579 +#: mod/admin.php:620 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Fréquemment" + +#: mod/admin.php:621 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Toutes les heures" + +#: mod/admin.php:622 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Deux fois par jour" + +#: mod/admin.php:623 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Chaque jour" + +#: mod/admin.php:629 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:630 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:634 +msgid "One month" +msgstr "Un mois" + +#: mod/admin.php:635 +msgid "Three months" +msgstr "Trois mois" + +#: mod/admin.php:636 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:637 +msgid "One year" +msgstr "Un an" + +#: mod/admin.php:642 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: ../../mod/admin.php:602 +#: mod/admin.php:665 msgid "Closed" msgstr "Fermé" -#: ../../mod/admin.php:603 +#: mod/admin.php:666 msgid "Requires approval" msgstr "Demande une apptrobation" -#: ../../mod/admin.php:604 +#: mod/admin.php:667 msgid "Open" msgstr "Ouvert" -#: ../../mod/admin.php:608 +#: mod/admin.php:671 msgid "No SSL policy, links will track page SSL state" msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" -#: ../../mod/admin.php:609 +#: mod/admin.php:672 msgid "Force all links to use SSL" msgstr "Forcer tous les liens à utiliser SSL" -#: ../../mod/admin.php:610 +#: mod/admin.php:673 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" -#: ../../mod/admin.php:622 +#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:781 +#: mod/settings.php:850 mod/settings.php:932 mod/settings.php:1162 +msgid "Save Settings" +msgstr "Sauvegarder les paramétres" + +#: mod/admin.php:684 mod/register.php:260 +msgid "Registration" +msgstr "Inscription" + +#: mod/admin.php:685 msgid "File upload" msgstr "Téléversement de fichier" -#: ../../mod/admin.php:623 +#: mod/admin.php:686 msgid "Policies" msgstr "Politiques" -#: ../../mod/admin.php:624 +#: mod/admin.php:687 msgid "Advanced" msgstr "Avancé" -#: ../../mod/admin.php:625 +#: mod/admin.php:688 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:689 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:626 +#: mod/admin.php:690 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible." -#: ../../mod/admin.php:629 +#: mod/admin.php:693 msgid "Site name" msgstr "Nom du site" -#: ../../mod/admin.php:630 +#: mod/admin.php:694 msgid "Host name" msgstr "Nom de la machine hôte" -#: ../../mod/admin.php:631 +#: mod/admin.php:695 msgid "Sender Email" msgstr "" -#: ../../mod/admin.php:632 +#: mod/admin.php:696 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: ../../mod/admin.php:633 +#: mod/admin.php:697 msgid "Shortcut icon" msgstr "" -#: ../../mod/admin.php:634 +#: mod/admin.php:698 msgid "Touch icon" msgstr "" -#: ../../mod/admin.php:635 +#: mod/admin.php:699 msgid "Additional Info" msgstr "Informations supplémentaires" -#: ../../mod/admin.php:635 +#: mod/admin.php:699 +#, php-format 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." +"listed at %s/siteinfo." +msgstr "" -#: ../../mod/admin.php:636 +#: mod/admin.php:700 msgid "System language" msgstr "Langue du système" -#: ../../mod/admin.php:637 +#: mod/admin.php:701 msgid "System theme" msgstr "Thème du système" -#: ../../mod/admin.php:637 +#: mod/admin.php:701 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème" -#: ../../mod/admin.php:638 +#: mod/admin.php:702 msgid "Mobile system theme" msgstr "Thème mobile" -#: ../../mod/admin.php:638 +#: mod/admin.php:702 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: ../../mod/admin.php:639 +#: mod/admin.php:703 msgid "SSL link policy" msgstr "Politique SSL pour les liens" -#: ../../mod/admin.php:639 +#: mod/admin.php:703 msgid "Determines whether generated links should be forced to use SSL" msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" -#: ../../mod/admin.php:640 +#: mod/admin.php:704 msgid "Force SSL" msgstr "SSL obligatoire" -#: ../../mod/admin.php:640 +#: mod/admin.php:704 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies." -#: ../../mod/admin.php:641 +#: mod/admin.php:705 msgid "Old style 'Share'" msgstr "Anciens style 'Partage'" -#: ../../mod/admin.php:641 +#: mod/admin.php:705 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles." -#: ../../mod/admin.php:642 +#: mod/admin.php:706 msgid "Hide help entry from navigation menu" msgstr "Cacher l'aide du menu de navigation" -#: ../../mod/admin.php:642 +#: mod/admin.php:706 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." -#: ../../mod/admin.php:643 +#: mod/admin.php:707 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: ../../mod/admin.php:643 +#: mod/admin.php:707 msgid "Make this instance multi-user or single-user for the named user" msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." -#: ../../mod/admin.php:644 +#: mod/admin.php:708 msgid "Maximum image size" msgstr "Taille maximale des images" -#: ../../mod/admin.php:644 +#: mod/admin.php:708 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." -#: ../../mod/admin.php:645 +#: mod/admin.php:709 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: ../../mod/admin.php:645 +#: mod/admin.php:709 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite." -#: ../../mod/admin.php:646 +#: mod/admin.php:710 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: ../../mod/admin.php:646 +#: mod/admin.php:710 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." -#: ../../mod/admin.php:648 +#: mod/admin.php:712 msgid "Register policy" msgstr "Politique d'inscription" -#: ../../mod/admin.php:649 +#: mod/admin.php:713 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: ../../mod/admin.php:649 +#: mod/admin.php:713 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." -#: ../../mod/admin.php:650 +#: mod/admin.php:714 msgid "Register text" msgstr "Texte d'inscription" -#: ../../mod/admin.php:650 +#: mod/admin.php:714 msgid "Will be displayed prominently on the registration page." msgstr "Sera affiché de manière bien visible sur la page d'accueil." -#: ../../mod/admin.php:651 +#: mod/admin.php:715 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: ../../mod/admin.php:651 +#: mod/admin.php:715 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." -#: ../../mod/admin.php:652 +#: mod/admin.php:716 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: ../../mod/admin.php:652 +#: mod/admin.php:716 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" -#: ../../mod/admin.php:653 +#: mod/admin.php:717 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: ../../mod/admin.php:653 +#: mod/admin.php:717 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" -#: ../../mod/admin.php:654 +#: mod/admin.php:718 msgid "Block public" msgstr "Interdire la publication globale" -#: ../../mod/admin.php:654 +#: mod/admin.php:718 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." -#: ../../mod/admin.php:655 +#: mod/admin.php:719 msgid "Force publish" msgstr "Forcer la publication globale" -#: ../../mod/admin.php:655 +#: mod/admin.php:719 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." -#: ../../mod/admin.php:656 +#: mod/admin.php:720 msgid "Global directory update URL" msgstr "URL de mise-à-jour de l'annuaire global" -#: ../../mod/admin.php:656 +#: mod/admin.php:720 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible." -#: ../../mod/admin.php:657 +#: mod/admin.php:721 msgid "Allow threaded items" msgstr "autoriser le suivi des éléments par fil conducteur" -#: ../../mod/admin.php:657 +#: mod/admin.php:721 msgid "Allow infinite level threading for items on this site." msgstr "Permettre une imbrication infinie des commentaires." -#: ../../mod/admin.php:658 +#: mod/admin.php:722 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: ../../mod/admin.php:658 +#: mod/admin.php:722 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." -#: ../../mod/admin.php:659 +#: mod/admin.php:723 msgid "Don't include post content in email notifications" msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" -#: ../../mod/admin.php:659 +#: mod/admin.php:723 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." -#: ../../mod/admin.php:660 +#: mod/admin.php:724 msgid "Disallow public access to addons listed in the apps menu." msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." -#: ../../mod/admin.php:660 +#: mod/admin.php:724 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." -#: ../../mod/admin.php:661 +#: mod/admin.php:725 msgid "Don't embed private images in posts" msgstr "Ne pas miniaturiser les images privées dans les publications" -#: ../../mod/admin.php:661 +#: mod/admin.php:725 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 " @@ -5379,319 +2382,431 @@ msgid "" "while." msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps." -#: ../../mod/admin.php:662 +#: mod/admin.php:726 msgid "Allow Users to set remote_self" msgstr "Autoriser les utilisateurs à définir remote_self" -#: ../../mod/admin.php:662 +#: mod/admin.php:726 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs." -#: ../../mod/admin.php:663 +#: mod/admin.php:727 msgid "Block multiple registrations" msgstr "Interdire les inscriptions multiples" -#: ../../mod/admin.php:663 +#: mod/admin.php:727 msgid "Disallow users to register additional accounts for use as pages." msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." -#: ../../mod/admin.php:664 +#: mod/admin.php:728 msgid "OpenID support" msgstr "Support OpenID" -#: ../../mod/admin.php:664 +#: mod/admin.php:728 msgid "OpenID support for registration and logins." msgstr "Supporter OpenID pour les inscriptions et connexions." -#: ../../mod/admin.php:665 +#: mod/admin.php:729 msgid "Fullname check" msgstr "Vérification du \"Prénom Nom\"" -#: ../../mod/admin.php:665 +#: mod/admin.php:729 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus" -#: ../../mod/admin.php:666 +#: mod/admin.php:730 msgid "UTF-8 Regular expressions" msgstr "Regex UTF-8" -#: ../../mod/admin.php:666 +#: mod/admin.php:730 msgid "Use PHP UTF8 regular expressions" msgstr "Utiliser les expressions rationnelles de PHP en UTF8" -#: ../../mod/admin.php:667 +#: mod/admin.php:731 msgid "Community Page Style" msgstr "" -#: ../../mod/admin.php:667 +#: mod/admin.php:731 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:732 msgid "Posts per user on community page" msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:732 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: ../../mod/admin.php:669 +#: mod/admin.php:733 msgid "Enable OStatus support" msgstr "Activer le support d'OStatus" -#: ../../mod/admin.php:669 +#: mod/admin.php:733 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." -#: ../../mod/admin.php:670 +#: mod/admin.php:734 msgid "OStatus conversation completion interval" msgstr "Achèvement de l'intervalle de conversation OStatus " -#: ../../mod/admin.php:670 +#: mod/admin.php:734 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources." -#: ../../mod/admin.php:671 +#: mod/admin.php:735 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: ../../mod/admin.php:671 +#: mod/admin.php:735 msgid "Provide built-in Diaspora network compatibility." msgstr "Fournir une compatibilité Diaspora intégrée." -#: ../../mod/admin.php:672 +#: mod/admin.php:736 msgid "Only allow Friendica contacts" msgstr "N'autoriser que les contacts Friendica" -#: ../../mod/admin.php:672 +#: mod/admin.php:736 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés." -#: ../../mod/admin.php:673 +#: mod/admin.php:737 msgid "Verify SSL" msgstr "Vérifier SSL" -#: ../../mod/admin.php:673 +#: mod/admin.php:737 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." -#: ../../mod/admin.php:674 +#: mod/admin.php:738 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: ../../mod/admin.php:675 +#: mod/admin.php:739 msgid "Proxy URL" msgstr "URL du proxy" -#: ../../mod/admin.php:676 +#: mod/admin.php:740 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: ../../mod/admin.php:676 +#: mod/admin.php:740 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." -#: ../../mod/admin.php:677 +#: mod/admin.php:741 msgid "Delivery interval" msgstr "Intervalle de transmission" -#: ../../mod/admin.php:677 +#: mod/admin.php:741 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés." -#: ../../mod/admin.php:678 +#: mod/admin.php:742 msgid "Poll interval" msgstr "Intervalle de réception" -#: ../../mod/admin.php:678 +#: mod/admin.php:742 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission." -#: ../../mod/admin.php:679 +#: mod/admin.php:743 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: ../../mod/admin.php:679 +#: mod/admin.php:743 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50." -#: ../../mod/admin.php:681 +#: mod/admin.php:744 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:744 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:746 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:746 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:747 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:747 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:748 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:748 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:749 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:749 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:751 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:751 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:753 msgid "Use MySQL full text engine" msgstr "Utiliser le moteur de recherche plein texte de MySQL" -#: ../../mod/admin.php:681 +#: mod/admin.php:753 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." -#: ../../mod/admin.php:682 +#: mod/admin.php:754 msgid "Suppress Language" msgstr "Supprimer un langage" -#: ../../mod/admin.php:682 +#: mod/admin.php:754 msgid "Suppress language information in meta information about a posting." msgstr "Supprimer les informations de langue dans les métadonnées des publications." -#: ../../mod/admin.php:683 +#: mod/admin.php:755 msgid "Suppress Tags" msgstr "" -#: ../../mod/admin.php:683 +#: mod/admin.php:755 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: ../../mod/admin.php:684 +#: mod/admin.php:756 msgid "Path to item cache" msgstr "Chemin vers le cache des objets." -#: ../../mod/admin.php:685 +#: mod/admin.php:756 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:757 msgid "Cache duration in seconds" msgstr "Durée du cache en secondes" -#: ../../mod/admin.php:685 +#: mod/admin.php:757 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1." -#: ../../mod/admin.php:686 +#: mod/admin.php:758 msgid "Maximum numbers of comments per post" msgstr "Nombre maximum de commentaires par publication" -#: ../../mod/admin.php:686 +#: mod/admin.php:758 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." -#: ../../mod/admin.php:687 +#: mod/admin.php:759 msgid "Path for lock file" msgstr "Chemin vers le ficher de verrouillage" -#: ../../mod/admin.php:688 +#: mod/admin.php:759 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:760 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: ../../mod/admin.php:689 +#: mod/admin.php:760 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:761 msgid "Base path to installation" msgstr "Chemin de base de l'installation" -#: ../../mod/admin.php:690 +#: mod/admin.php:761 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:762 msgid "Disable picture proxy" msgstr "Désactiver le proxy image " -#: ../../mod/admin.php:690 +#: mod/admin.php:762 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante." -#: ../../mod/admin.php:691 +#: mod/admin.php:763 msgid "Enable old style pager" msgstr "" -#: ../../mod/admin.php:691 +#: mod/admin.php:763 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:764 msgid "Only search in tags" msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:764 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: ../../mod/admin.php:694 +#: mod/admin.php:766 msgid "New base url" msgstr "Nouvelle URL de base" -#: ../../mod/admin.php:711 +#: mod/admin.php:766 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:768 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:768 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:769 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:769 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:787 msgid "Update has been marked successful" msgstr "Mise-à-jour validée comme 'réussie'" -#: ../../mod/admin.php:719 +#: mod/admin.php:795 #, php-format msgid "Database structure update %s was successfully applied." msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès." -#: ../../mod/admin.php:722 +#: mod/admin.php:798 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s" -#: ../../mod/admin.php:734 +#: mod/admin.php:810 #, php-format msgid "Executing %s failed with error: %s" msgstr "L'exécution %s a échoué avec l'erreur: %s" -#: ../../mod/admin.php:737 +#: mod/admin.php:813 #, php-format msgid "Update %s was successfully applied." msgstr "Mise-à-jour %s appliquée avec succès." -#: ../../mod/admin.php:741 +#: mod/admin.php:817 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." -#: ../../mod/admin.php:743 +#: mod/admin.php:819 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" -#: ../../mod/admin.php:762 +#: mod/admin.php:838 msgid "No failed updates." msgstr "Pas de mises-à-jour échouées." -#: ../../mod/admin.php:763 +#: mod/admin.php:839 msgid "Check database structure" msgstr "Vérifier la structure de la base de données" -#: ../../mod/admin.php:768 +#: mod/admin.php:844 msgid "Failed Updates" msgstr "Mises-à-jour échouées" -#: ../../mod/admin.php:769 +#: mod/admin.php:845 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." -#: ../../mod/admin.php:770 +#: mod/admin.php:846 msgid "Mark success (if update was manually applied)" msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: ../../mod/admin.php:771 +#: mod/admin.php:847 msgid "Attempt to execute this update step automatically" msgstr "Tenter d'éxecuter cette étape automatiquement" -#: ../../mod/admin.php:803 +#: mod/admin.php:879 #, php-format msgid "" "\n" @@ -5699,7 +2814,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte." -#: ../../mod/admin.php:806 +#: mod/admin.php:882 #, php-format msgid "" "\n" @@ -5729,293 +2844,287 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s." -#: ../../mod/admin.php:850 +#: mod/admin.php:914 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Détails d'inscription pour %s" + +#: mod/admin.php:926 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s utilisateur a (dé)bloqué" msgstr[1] "%s utilisateurs ont (dé)bloqué" -#: ../../mod/admin.php:857 +#: mod/admin.php:933 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s utilisateur supprimé" msgstr[1] "%s utilisateurs supprimés" -#: ../../mod/admin.php:896 +#: mod/admin.php:972 #, php-format msgid "User '%s' deleted" msgstr "Utilisateur '%s' supprimé" -#: ../../mod/admin.php:904 +#: mod/admin.php:980 #, php-format msgid "User '%s' unblocked" msgstr "Utilisateur '%s' débloqué" -#: ../../mod/admin.php:904 +#: mod/admin.php:980 #, php-format msgid "User '%s' blocked" msgstr "Utilisateur '%s' bloqué" -#: ../../mod/admin.php:999 +#: mod/admin.php:1073 msgid "Add User" msgstr "Ajouter l'utilisateur" -#: ../../mod/admin.php:1000 +#: mod/admin.php:1074 msgid "select all" msgstr "tout sélectionner" -#: ../../mod/admin.php:1001 +#: mod/admin.php:1075 msgid "User registrations waiting for confirm" msgstr "Inscriptions d'utilisateurs en attente de confirmation" -#: ../../mod/admin.php:1002 +#: mod/admin.php:1076 msgid "User waiting for permanent deletion" msgstr "Utilisateur en attente de suppression définitive" -#: ../../mod/admin.php:1003 +#: mod/admin.php:1077 msgid "Request date" msgstr "Date de la demande" -#: ../../mod/admin.php:1004 +#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "Courriel" + +#: mod/admin.php:1078 msgid "No registrations." msgstr "Pas d'inscriptions." -#: ../../mod/admin.php:1006 +#: mod/admin.php:1080 msgid "Deny" msgstr "Rejetter" -#: ../../mod/admin.php:1010 +#: mod/admin.php:1084 msgid "Site admin" msgstr "Administration du Site" -#: ../../mod/admin.php:1011 +#: mod/admin.php:1085 msgid "Account expired" msgstr "Compte expiré" -#: ../../mod/admin.php:1014 +#: mod/admin.php:1088 msgid "New User" msgstr "Nouvel utilisateur" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Register date" msgstr "Date d'inscription" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last login" msgstr "Dernière connexion" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last item" msgstr "Dernier élément" -#: ../../mod/admin.php:1015 +#: mod/admin.php:1089 msgid "Deleted since" msgstr "Supprimé depuis" -#: ../../mod/admin.php:1018 +#: mod/admin.php:1090 mod/settings.php:41 +msgid "Account" +msgstr "Compte" + +#: mod/admin.php:1092 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?" -#: ../../mod/admin.php:1019 +#: mod/admin.php:1093 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" -#: ../../mod/admin.php:1029 +#: mod/admin.php:1103 msgid "Name of the new user." msgstr "Nom du nouvel utilisateur." -#: ../../mod/admin.php:1030 +#: mod/admin.php:1104 msgid "Nickname" msgstr "Pseudo" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1104 msgid "Nickname of the new user." msgstr "Pseudo du nouvel utilisateur." -#: ../../mod/admin.php:1031 +#: mod/admin.php:1105 msgid "Email address of the new user." msgstr "Adresse mail du nouvel utilisateur." -#: ../../mod/admin.php:1064 +#: mod/admin.php:1138 #, php-format msgid "Plugin %s disabled." msgstr "Extension %s désactivée." -#: ../../mod/admin.php:1068 +#: mod/admin.php:1142 #, php-format msgid "Plugin %s enabled." msgstr "Extension %s activée." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: mod/admin.php:1152 mod/admin.php:1375 msgid "Disable" msgstr "Désactiver" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: mod/admin.php:1154 mod/admin.php:1377 msgid "Enable" msgstr "Activer" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: mod/admin.php:1177 mod/admin.php:1405 msgid "Toggle" msgstr "Activer/Désactiver" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: mod/admin.php:1185 mod/admin.php:1415 msgid "Author: " msgstr "Auteur: " -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: mod/admin.php:1186 mod/admin.php:1416 msgid "Maintainer: " msgstr "Mainteneur: " -#: ../../mod/admin.php:1254 +#: mod/admin.php:1335 msgid "No themes found." msgstr "Aucun thème trouvé." -#: ../../mod/admin.php:1316 +#: mod/admin.php:1397 msgid "Screenshot" msgstr "Capture d'écran" -#: ../../mod/admin.php:1362 +#: mod/admin.php:1443 msgid "[Experimental]" msgstr "[Expérimental]" -#: ../../mod/admin.php:1363 +#: mod/admin.php:1444 msgid "[Unsupported]" msgstr "[Non supporté]" -#: ../../mod/admin.php:1390 +#: mod/admin.php:1471 msgid "Log settings updated." msgstr "Réglages des journaux mis-à-jour." -#: ../../mod/admin.php:1446 +#: mod/admin.php:1527 msgid "Clear" msgstr "Effacer" -#: ../../mod/admin.php:1452 +#: mod/admin.php:1533 msgid "Enable Debugging" msgstr "Activer le déboggage" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1534 msgid "Log file" msgstr "Fichier de journaux" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1534 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." -#: ../../mod/admin.php:1454 +#: mod/admin.php:1535 msgid "Log level" msgstr "Niveau de journalisaton" -#: ../../mod/admin.php:1504 +#: mod/admin.php:1585 include/acl_selectors.php:347 msgid "Close" msgstr "Fermer" -#: ../../mod/admin.php:1510 +#: mod/admin.php:1591 msgid "FTP Host" msgstr "Hôte FTP" -#: ../../mod/admin.php:1511 +#: mod/admin.php:1592 msgid "FTP Path" msgstr "Chemin FTP" -#: ../../mod/admin.php:1512 +#: mod/admin.php:1593 msgid "FTP User" msgstr "Utilisateur FTP" -#: ../../mod/admin.php:1513 +#: mod/admin.php:1594 msgid "FTP Password" msgstr "Mot de passe FTP" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#: mod/network.php:143 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "L'image dépasse la taille limite de %d" +msgid "Search Results For: %s" +msgstr "" -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Impossible de traiter l'image." - -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." - -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur de protocole OpenID. Pas d'ID en retour." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." - -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Résultats pour:" - -#: ../../mod/network.php:185 ../../mod/search.php:21 +#: mod/network.php:187 mod/search.php:25 msgid "Remove term" msgstr "Retirer le terme" -#: ../../mod/network.php:356 +#: mod/network.php:196 mod/search.php:34 include/features.php:42 +msgid "Saved Searches" +msgstr "Recherches" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "ajouter" + +#: mod/network.php:358 msgid "Commented Order" msgstr "Tri par commentaires" -#: ../../mod/network.php:359 +#: mod/network.php:361 msgid "Sort by Comment Date" msgstr "Trier par date de commentaire" -#: ../../mod/network.php:362 +#: mod/network.php:365 msgid "Posted Order" msgstr "Tri des publications" -#: ../../mod/network.php:365 +#: mod/network.php:368 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: ../../mod/network.php:374 +#: mod/network.php:378 msgid "Posts that mention or involve you" msgstr "Publications qui vous concernent" -#: ../../mod/network.php:380 +#: mod/network.php:385 msgid "New" msgstr "Nouveau" -#: ../../mod/network.php:383 +#: mod/network.php:388 msgid "Activity Stream - by date" msgstr "Flux d'activités - par date" -#: ../../mod/network.php:389 +#: mod/network.php:395 msgid "Shared Links" msgstr "Liens partagés" -#: ../../mod/network.php:392 +#: mod/network.php:398 msgid "Interesting Links" msgstr "Liens intéressants" -#: ../../mod/network.php:398 +#: mod/network.php:405 msgid "Starred" msgstr "Mis en avant" -#: ../../mod/network.php:401 +#: mod/network.php:408 msgid "Favourite Posts" msgstr "Publications favorites" -#: ../../mod/network.php:463 +#: mod/network.php:466 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6023,318 +3132,2301 @@ msgid_plural "" msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr." msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr." -#: ../../mod/network.php:466 +#: mod/network.php:469 msgid "Private messages to this group are at risk of public disclosure." msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée." -#: ../../mod/network.php:520 ../../mod/content.php:119 +#: mod/network.php:532 mod/content.php:119 msgid "No such group" msgstr "Groupe inexistant" -#: ../../mod/network.php:537 ../../mod/content.php:130 +#: mod/network.php:549 mod/content.php:130 msgid "Group is empty" msgstr "Groupe vide" -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Groupe: " +#: mod/network.php:560 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "" -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Contact: " +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "" -#: ../../mod/network.php:556 +#: mod/network.php:582 msgid "Private messages to this person are at risk of public disclosure." msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." -#: ../../mod/network.php:561 +#: mod/network.php:587 msgid "Invalid contact." msgstr "Contact invalide." -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- choisir -" +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Amis de %s" -#: ../../mod/friendica.php:59 +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Vous devez donner un nom et un horaire de début à l'événement." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l, F j" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Editer l'événement" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "lien original" + +#: mod/events.php:396 include/identity.php:667 include/nav.php:80 +#: view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Événements" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Créer un nouvel événement" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Précédent" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Suivant" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Détails de l'événement" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Début de l'événement :" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Requis" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Date / heure de fin inconnue ou sans objet" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Fin de l'événement:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Ajuster à la zone horaire du visiteur" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Description:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titre :" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Partager cet événement" + +#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: object/Item.php:689 include/conversation.php:1089 +msgid "Preview" +msgstr "Aperçu" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 +#: object/Item.php:130 include/conversation.php:612 +msgid "Select" +msgstr "Sélectionner" + +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" + +#: mod/content.php:483 mod/content.php:866 object/Item.php:342 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Voir dans le contexte" + +#: mod/content.php:605 object/Item.php:389 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commentaire" +msgstr[1] "%d commentaires" + +#: mod/content.php:607 object/Item.php:391 object/Item.php:404 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commentaire" + +#: mod/content.php:608 boot.php:765 object/Item.php:392 +#: include/contact_widgets.php:205 include/items.php:5133 +msgid "show more" +msgstr "montrer plus" + +#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Message privé" + +#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 +msgid "I like this (toggle)" +msgstr "J'aime" + +#: mod/content.php:686 object/Item.php:232 +msgid "like" +msgstr "aime" + +#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas" + +#: mod/content.php:687 object/Item.php:233 +msgid "dislike" +msgstr "n'aime pas" + +#: mod/content.php:689 object/Item.php:235 +msgid "Share this" +msgstr "Partager" + +#: mod/content.php:689 object/Item.php:235 +msgid "share" +msgstr "partager" + +#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 object/Item.php:677 +msgid "This is you" +msgstr "C'est vous" + +#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 +#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 +msgid "Comment" +msgstr "Commenter" + +#: mod/content.php:713 object/Item.php:681 +msgid "Bold" +msgstr "Gras" + +#: mod/content.php:714 object/Item.php:682 +msgid "Italic" +msgstr "Italique" + +#: mod/content.php:715 object/Item.php:683 +msgid "Underline" +msgstr "Souligné" + +#: mod/content.php:716 object/Item.php:684 +msgid "Quote" +msgstr "Citation" + +#: mod/content.php:717 object/Item.php:685 +msgid "Code" +msgstr "Code" + +#: mod/content.php:718 object/Item.php:686 +msgid "Image" +msgstr "Image" + +#: mod/content.php:719 object/Item.php:687 +msgid "Link" +msgstr "Lien" + +#: mod/content.php:720 object/Item.php:688 +msgid "Video" +msgstr "Vidéo" + +#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 +msgid "Edit" +msgstr "Éditer" + +#: mod/content.php:755 object/Item.php:196 +msgid "add star" +msgstr "mett en avant" + +#: mod/content.php:756 object/Item.php:197 +msgid "remove star" +msgstr "ne plus mettre en avant" + +#: mod/content.php:757 object/Item.php:198 +msgid "toggle star status" +msgstr "mettre en avant" + +#: mod/content.php:760 object/Item.php:201 +msgid "starred" +msgstr "mis en avant" + +#: mod/content.php:761 object/Item.php:221 +msgid "add tag" +msgstr "ajouter une étiquette" + +#: mod/content.php:765 object/Item.php:134 +msgid "save to folder" +msgstr "sauver vers dossier" + +#: mod/content.php:856 object/Item.php:330 +msgid "to" +msgstr "à" + +#: mod/content.php:857 object/Item.php:332 +msgid "Wall-to-Wall" +msgstr "Inter-mur" + +#: mod/content.php:858 object/Item.php:333 +msgid "via Wall-To-Wall:" +msgstr "en Inter-mur:" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Supprimer mon compte" + +#: 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/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification :" + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Serveur de communications Friendica - Configuration" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "Impossible de se connecter à la base." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Impossible de créer une table." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "La base de données de votre site Friendica a bien été installée." + +#: mod/install.php:140 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." + +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Référez-vous au fichier \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:205 +msgid "System check" +msgstr "Vérifications système" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Vérifier à nouveau" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Connexion à la base de données" + +#: mod/install.php:230 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." + +#: mod/install.php:231 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." + +#: mod/install.php:232 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." + +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Serveur de base de données" + +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Nom d'utilisateur de la base" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Mot de passe de la base" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Nom de la base" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "Adresse électronique de l'administrateur du site" + +#: mod/install.php:240 mod/install.php:279 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." + +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Sélectionner un fuseau horaire par défaut pour votre site" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Réglages du site" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." + +#: mod/install.php:324 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'" + +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "Chemin vers l'exécutable de PHP" + +#: mod/install.php:328 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." + +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "Version \"ligne de commande\" de PHP" + +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" + +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Version de PHP:" + +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "PHP cli binary" + +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." + +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "Ceci est requis pour que la livraison des messages fonctionne." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "Générer les clés de chiffrement" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "Module libCurl de PHP" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "Module GD (graphiques) de PHP" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "Module OpenSSL de PHP" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "Module Mysqli de PHP" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "Module mb_string de PHP" + +#: mod/install.php:399 mod/install.php:401 +msgid "Apache mod_rewrite module" +msgstr "Module mod_rewrite Apache" + +#: mod/install.php:399 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé." + +#: mod/install.php:407 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé." + +#: mod/install.php:411 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." + +#: mod/install.php:415 +msgid "Error: openssl PHP module required but not installed." +msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé." + +#: mod/install.php:419 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Erreur : Le module PHP \"mysqli\" est requis mais pas installé." + +#: mod/install.php:423 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Erreur : le module PHP mb_string est requis mais pas installé." + +#: mod/install.php:440 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable." + +#: mod/install.php:441 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." + +#: mod/install.php:442 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica." + +#: mod/install.php:443 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"." + +#: mod/install.php:446 +msgid ".htconfig.php is writable" +msgstr "Fichier .htconfig.php accessible en écriture" + +#: mod/install.php:456 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." + +#: mod/install.php:457 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." + +#: mod/install.php:458 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." + +#: mod/install.php:459 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." + +#: mod/install.php:462 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 est autorisé à l écriture" + +#: mod/install.php:478 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur." + +#: mod/install.php:480 +msgid "Url rewrite is working" +msgstr "La réécriture d'URL fonctionne." + +#: mod/install.php:489 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement." + +#: mod/install.php:528 +msgid "

    What next

    " +msgstr "

    Ensuite

    " + +#: mod/install.php:529 +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 "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." + +#: mod/wallmessage.php: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 "" +"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/help.php:31 +msgid "Help:" +msgstr "Aide :" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Aide" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Non trouvé" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Page introuvable." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s accueille %2$s" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Le téléversement a échoué." + +#: mod/match.php:13 +msgid "Profile Match" +msgstr "Correpondance de profils" + +#: mod/match.php:22 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." + +#: mod/match.php:64 +msgid "is interested in:" +msgstr "s'intéresse à :" + +#: mod/share.php:38 +msgid "link" +msgstr "lien" + +#: mod/community.php:23 +msgid "Not available." +msgstr "Indisponible." + +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Communauté" + +#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +msgid "No results." +msgstr "Aucun résultat." + +#: mod/settings.php:34 mod/photos.php:102 +msgid "everybody" +msgstr "tout le monde" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Fonctions supplémentaires" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Afficher" + +#: mod/settings.php:60 mod/settings.php:832 +msgid "Social Networks" +msgstr "Réseaux sociaux" + +#: mod/settings.php:72 include/nav.php:179 +msgid "Delegations" +msgstr "Délégations" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Applications connectées" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Exporter" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Supprimer le compte" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Il manque certaines informations importantes!" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossible de se connecter au compte courriel configuré." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "Réglages de courriel mis-à-jour." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Fonctionnalités mises à jour" + +#: mod/settings.php:339 +msgid "Relocate message has been send to your contacts" +msgstr "Un message de relocalisation a été envoyé à vos contacts." + +#: mod/settings.php:353 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." + +#: mod/settings.php:358 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." + +#: mod/settings.php:366 +msgid "Wrong password." +msgstr "Mauvais mot de passe." + +#: mod/settings.php:377 +msgid "Password changed." +msgstr "Mots de passe changés." + +#: mod/settings.php:379 +msgid "Password update failed. Please try again." +msgstr "Le changement de mot de passe a échoué. Merci de recommencer." + +#: mod/settings.php:446 +msgid " Please use a shorter name." +msgstr " Merci d'utiliser un nom plus court." + +#: mod/settings.php:448 +msgid " Name too short." +msgstr " Nom trop court." + +#: mod/settings.php:457 +msgid "Wrong Password" +msgstr "Mauvais mot de passe" + +#: mod/settings.php:462 +msgid " Not valid email." +msgstr " Email invalide." + +#: mod/settings.php:468 +msgid " Cannot change to that email." +msgstr " Impossible de changer pour cet email." + +#: mod/settings.php:524 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." + +#: mod/settings.php:528 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." + +#: mod/settings.php:558 +msgid "Settings updated." +msgstr "Réglages mis à jour." + +#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 +msgid "Add application" +msgstr "Ajouter une application" + +#: mod/settings.php:635 mod/settings.php:661 +msgid "Consumer Key" +msgstr "Clé utilisateur" + +#: mod/settings.php:636 mod/settings.php:662 +msgid "Consumer Secret" +msgstr "Secret utilisateur" + +#: mod/settings.php:637 mod/settings.php:663 +msgid "Redirect" +msgstr "Rediriger" + +#: mod/settings.php:638 mod/settings.php:664 +msgid "Icon url" +msgstr "URL de l'icône" + +#: mod/settings.php:649 +msgid "You can't edit this application." +msgstr "Vous ne pouvez pas éditer cette application." + +#: mod/settings.php:692 +msgid "Connected Apps" +msgstr "Applications connectées" + +#: mod/settings.php:696 +msgid "Client key starts with" +msgstr "La clé cliente commence par" + +#: mod/settings.php:697 +msgid "No name" +msgstr "Sans nom" + +#: mod/settings.php:698 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" + +#: mod/settings.php:710 +msgid "No Plugin settings configured" +msgstr "Pas de réglages d'extensions configurés" + +#: mod/settings.php:718 +msgid "Plugin Settings" +msgstr "Extensions" + +#: mod/settings.php:732 +msgid "Off" +msgstr "Éteint" + +#: mod/settings.php:732 +msgid "On" +msgstr "Allumé" + +#: mod/settings.php:740 +msgid "Additional Features" +msgstr "Fonctions supplémentaires" + +#: mod/settings.php:750 mod/settings.php:754 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:760 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:762 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:768 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:770 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:776 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:778 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:788 mod/settings.php:789 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Le support natif pour la connectivité %s est %s" + +#: mod/settings.php:788 mod/dfrn_request.php:853 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:788 mod/settings.php:789 +msgid "enabled" +msgstr "activé" + +#: mod/settings.php:788 mod/settings.php:789 +msgid "disabled" +msgstr "désactivé" + +#: mod/settings.php:789 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:825 +msgid "Email access is disabled on this site." +msgstr "L'accès courriel est désactivé sur ce site." + +#: mod/settings.php:837 +msgid "Email/Mailbox Setup" +msgstr "Réglages de courriel/boîte à lettre" + +#: mod/settings.php:838 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." + +#: mod/settings.php:839 +msgid "Last successful email check:" +msgstr "Dernière vérification réussie des courriels:" + +#: mod/settings.php:841 +msgid "IMAP server name:" +msgstr "Nom du serveur IMAP:" + +#: mod/settings.php:842 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: mod/settings.php:843 +msgid "Security:" +msgstr "Sécurité:" + +#: mod/settings.php:843 mod/settings.php:848 +msgid "None" +msgstr "Aucun(e)" + +#: mod/settings.php:844 +msgid "Email login name:" +msgstr "Nom de connexion:" + +#: mod/settings.php:845 +msgid "Email password:" +msgstr "Mot de passe:" + +#: mod/settings.php:846 +msgid "Reply-to address:" +msgstr "Adresse de réponse:" + +#: mod/settings.php:847 +msgid "Send public posts to all email contacts:" +msgstr "Envoyer les publications publiques à tous les contacts courriels:" + +#: mod/settings.php:848 +msgid "Action after import:" +msgstr "Action après import:" + +#: mod/settings.php:848 +msgid "Mark as seen" +msgstr "Marquer comme vu" + +#: mod/settings.php:848 +msgid "Move to folder" +msgstr "Déplacer vers" + +#: mod/settings.php:849 +msgid "Move to folder:" +msgstr "Déplacer vers:" + +#: mod/settings.php:930 +msgid "Display Settings" +msgstr "Affichage" + +#: mod/settings.php:936 mod/settings.php:952 +msgid "Display Theme:" +msgstr "Thème d'affichage:" + +#: mod/settings.php:937 +msgid "Mobile Theme:" +msgstr "Thème mobile:" + +#: mod/settings.php:938 +msgid "Update browser every xx seconds" +msgstr "Mettre-à-jour l'affichage toutes les xx secondes" + +#: mod/settings.php:938 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Délai minimum de 10 secondes, pas de maximum" + +#: mod/settings.php:939 +msgid "Number of items to display per page:" +msgstr "Nombre d’éléments par page:" + +#: mod/settings.php:939 mod/settings.php:940 +msgid "Maximum of 100 items" +msgstr "Maximum de 100 éléments" + +#: mod/settings.php:940 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" + +#: mod/settings.php:941 +msgid "Don't show emoticons" +msgstr "Ne pas afficher les émoticônes (smileys grahiques)" + +#: mod/settings.php:942 +msgid "Don't show notices" +msgstr "Ne plus afficher les avis" + +#: mod/settings.php:943 +msgid "Infinite scroll" +msgstr "Défilement infini" + +#: mod/settings.php:944 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:946 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Réglages du thème graphique" + +#: mod/settings.php:1022 +msgid "User Types" +msgstr "Types d'utilisateurs" + +#: mod/settings.php:1023 +msgid "Community Types" +msgstr "Genre de communautés" + +#: mod/settings.php:1024 +msgid "Normal Account Page" +msgstr "Compte normal" + +#: mod/settings.php:1025 +msgid "This account is a normal personal profile" +msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" + +#: mod/settings.php:1028 +msgid "Soapbox Page" +msgstr "Compte \"boîte à savon\"" + +#: mod/settings.php:1029 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" + +#: mod/settings.php:1032 +msgid "Community Forum/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: mod/settings.php:1033 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" + +#: mod/settings.php:1036 +msgid "Automatic Friend Page" +msgstr "Compte d'\"amitié automatique\"" + +#: mod/settings.php:1037 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" + +#: mod/settings.php:1040 +msgid "Private Forum [Experimental]" +msgstr "Forum privé [expérimental]" + +#: mod/settings.php:1041 +msgid "Private forum - approved members only" +msgstr "Forum privé - modéré en inscription" + +#: mod/settings.php:1053 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1053 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." + +#: mod/settings.php:1063 +msgid "Publish your default profile in your local site directory?" +msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" + +#: mod/settings.php:1069 +msgid "Publish your default profile in the global social directory?" +msgstr "Publier votre profil par défaut sur l'annuaire social global?" + +#: mod/settings.php:1077 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" + +#: mod/settings.php:1081 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Cacher les détails du profil aux visiteurs inconnus?" + +#: mod/settings.php:1081 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1086 +msgid "Allow friends to post to your profile page?" +msgstr "Autoriser vos amis à publier sur votre profil?" + +#: mod/settings.php:1092 +msgid "Allow friends to tag your posts?" +msgstr "Autoriser vos amis à étiqueter vos publications?" + +#: mod/settings.php:1098 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" + +#: mod/settings.php:1104 +msgid "Permit unknown people to send you private mail?" +msgstr "Autoriser les messages privés d'inconnus?" + +#: mod/settings.php:1112 +msgid "Profile is not published." +msgstr "Ce profil n'est pas publié." + +#: mod/settings.php:1120 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1127 +msgid "Automatically expire posts after this many days:" +msgstr "Les publications expirent automatiquement après (en jours) :" + +#: mod/settings.php:1127 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" + +#: mod/settings.php:1128 +msgid "Advanced expiration settings" +msgstr "Réglages avancés de l'expiration" + +#: mod/settings.php:1129 +msgid "Advanced Expiration" +msgstr "Expiration (avancé)" + +#: mod/settings.php:1130 +msgid "Expire posts:" +msgstr "Faire expirer les publications:" + +#: mod/settings.php:1131 +msgid "Expire personal notes:" +msgstr "Faire expirer les notes personnelles:" + +#: mod/settings.php:1132 +msgid "Expire starred posts:" +msgstr "Faire expirer les publications marqués:" + +#: mod/settings.php:1133 +msgid "Expire photos:" +msgstr "Faire expirer les photos:" + +#: mod/settings.php:1134 +msgid "Only expire posts by others:" +msgstr "Faire expirer seulement les publications des autres:" + +#: mod/settings.php:1160 +msgid "Account Settings" +msgstr "Compte" + +#: mod/settings.php:1168 +msgid "Password Settings" +msgstr "Réglages de mot de passe" + +#: mod/settings.php:1169 mod/register.php:271 +msgid "New Password:" +msgstr "Nouveau mot de passe:" + +#: mod/settings.php:1170 mod/register.php:272 +msgid "Confirm:" +msgstr "Confirmer:" + +#: mod/settings.php:1170 +msgid "Leave password fields blank unless changing" +msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" + +#: mod/settings.php:1171 +msgid "Current Password:" +msgstr "Mot de passe actuel:" + +#: mod/settings.php:1171 mod/settings.php:1172 +msgid "Your current password to confirm the changes" +msgstr "Votre mot de passe actuel pour confirmer les modifications" + +#: mod/settings.php:1172 +msgid "Password:" +msgstr "Mot de passe:" + +#: mod/settings.php:1176 +msgid "Basic Settings" +msgstr "Réglages basiques" + +#: mod/settings.php:1177 include/identity.php:538 +msgid "Full Name:" +msgstr "Nom complet:" + +#: mod/settings.php:1178 +msgid "Email Address:" +msgstr "Adresse courriel:" + +#: mod/settings.php:1179 +msgid "Your Timezone:" +msgstr "Votre fuseau horaire:" + +#: mod/settings.php:1180 +msgid "Default Post Location:" +msgstr "Emplacement de publication par défaut:" + +#: mod/settings.php:1181 +msgid "Use Browser Location:" +msgstr "Utiliser la localisation géographique du navigateur:" + +#: mod/settings.php:1184 +msgid "Security and Privacy Settings" +msgstr "Réglages de sécurité et vie privée" + +#: mod/settings.php:1186 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre maximal de requêtes d'amitié/jour:" + +#: mod/settings.php:1186 mod/settings.php:1216 +msgid "(to prevent spam abuse)" +msgstr "(pour limiter l'impact du spam)" + +#: mod/settings.php:1187 +msgid "Default Post Permissions" +msgstr "Permissions de publication par défaut" + +#: mod/settings.php:1188 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: mod/settings.php:1197 mod/photos.php:1166 mod/photos.php:1538 +msgid "Show to Groups" +msgstr "Montrer aux groupes" + +#: mod/settings.php:1198 mod/photos.php:1167 mod/photos.php:1539 +msgid "Show to Contacts" +msgstr "Montrer aux Contacts" + +#: mod/settings.php:1199 +msgid "Default Private Post" +msgstr "Message privé par défaut" + +#: mod/settings.php:1200 +msgid "Default Public Post" +msgstr "Message publique par défaut" + +#: mod/settings.php:1204 +msgid "Default Permissions for New Posts" +msgstr "Permissions par défaut pour les nouvelles publications" + +#: mod/settings.php:1216 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum de messages privés d'inconnus par jour:" + +#: mod/settings.php:1219 +msgid "Notification Settings" +msgstr "Réglages de notification" + +#: mod/settings.php:1220 +msgid "By default post a status message when:" +msgstr "Par défaut, poster un statut quand:" + +#: mod/settings.php:1221 +msgid "accepting a friend request" +msgstr "j'accepte un ami" + +#: mod/settings.php:1222 +msgid "joining a forum/community" +msgstr "joignant un forum/une communauté" + +#: mod/settings.php:1223 +msgid "making an interesting profile change" +msgstr "je fais une modification intéressante de mon profil" + +#: mod/settings.php:1224 +msgid "Send a notification email when:" +msgstr "Envoyer un courriel de notification quand:" + +#: mod/settings.php:1225 +msgid "You receive an introduction" +msgstr "Vous recevez une introduction" + +#: mod/settings.php:1226 +msgid "Your introductions are confirmed" +msgstr "Vos introductions sont confirmées" + +#: mod/settings.php:1227 +msgid "Someone writes on your profile wall" +msgstr "Quelqu'un écrit sur votre mur" + +#: mod/settings.php:1228 +msgid "Someone writes a followup comment" +msgstr "Quelqu'un vous commente" + +#: mod/settings.php:1229 +msgid "You receive a private message" +msgstr "Vous recevez un message privé" + +#: mod/settings.php:1230 +msgid "You receive a friend suggestion" +msgstr "Vous avez reçu une suggestion d'ami" + +#: mod/settings.php:1231 +msgid "You are tagged in a post" +msgstr "Vous avez été étiquetté dans une publication" + +#: mod/settings.php:1232 +msgid "You are poked/prodded/etc. in a post" +msgstr "Vous avez été sollicité dans une publication" + +#: mod/settings.php:1234 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1234 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1236 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1238 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1240 +msgid "Advanced Account/Page Type Settings" +msgstr "Paramètres avancés de compte/page" + +#: mod/settings.php:1241 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifier le comportement de ce compte dans certaines situations" + +#: mod/settings.php:1244 +msgid "Relocate" +msgstr "Relocaliser" + +#: mod/settings.php:1245 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." + +#: mod/settings.php:1246 +msgid "Resend relocate message to contacts" +msgstr "Renvoyer un message de relocalisation aux contacts." + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Cette introduction a déjà été acceptée." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué" +msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Phase d'introduction achevée." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Erreur de protocole non-récupérable." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil indisponible." + +#: 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/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/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/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Localisateur invalide" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Adresse courriel invalide." + +#: 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/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/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Vous vous êtes déjà présenté ici." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Il semblerait que vous soyez déjà ami avec %s." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "URL de profil invalide." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "URL de profil interdite." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Votre introduction a été envoyée." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Connectez-vous pour confirmer l'introduction." + +#: 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/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Confirmer" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Cacher ce contact" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenue chez vous, %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Merci de confirmer votre demande d'introduction auprès de %s." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" + +#: mod/dfrn_request.php:839 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "" + +#: mod/dfrn_request.php:842 +msgid "Friend/Connection Request" +msgstr "Requête de relation/amitié" + +#: mod/dfrn_request.php:843 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:851 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:852 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:854 +#, 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/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

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

    Vous pourrez changer votre mot de passe une fois connecté." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traitée." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription attend une validation du propriétaire du site." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Votre OpenID (facultatif): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Inclure votre profil dans l'annuaire des membres?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "Votre ID d'invitation: " + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Votre nom complet (p.ex. Michel Dupont): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Votre adresse courriel: " + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Choisir un pseudo: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "S'inscrire" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Importer" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importer votre profile dans cette instance de friendica" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Système indisponible pour cause de maintenance" + +#: mod/search.php:100 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Recherche" + +#: mod/search.php:198 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:200 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Annuaire global" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Trouver sur ce site" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Annuaire local" + +#: mod/directory.php:129 mod/profiles.php:747 +msgid "Age: " +msgstr "Age : " + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Genre : " + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "Statut:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "Page personnelle:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Aucune entrée (certaines peuvent être cachées)." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Pas de délégataire potentiel." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Déléguer la gestion de la page" + +#: 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/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestionnaires existants" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Délégataires existants" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Délégataires potentiels" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Ajouter" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Aucune entrée." + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Amis communs" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Pas de contacts en commun." + +#: mod/uexport.php:77 +msgid "Export account" +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 "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 "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 "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." + +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s est d'humeur %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Humeur" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Spécifiez votre humeur du moment, et informez vos amis" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Voulez-vous vraiment supprimer cette suggestion ?" + +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Suggestions d'amitiés/contacts" + +#: mod/suggest.php:76 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." + +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignorer/cacher" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil supprimé." + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Nouveau profil créé." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Ce profil ne peut être cloné." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Le nom du profil est requis." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Statut marital" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Partenaire / conjoint" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Derniers \"J'aime\"" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Derniers \"Je n'aime pas\"" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Travail / Occupation" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Religion" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Tendance politique" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Sexe" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Préférence sexuelle" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Site internet" + +#: mod/profiles.php:375 mod/profiles.php:695 +msgid "Interests" +msgstr "Centres d'intérêt" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Adresse" + +#: mod/profiles.php:386 mod/profiles.php:691 +msgid "Location" +msgstr "Localisation" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: mod/profiles.php:565 +msgid " and " +msgstr " et " + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "profil public" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "Visiter le %2$s de %1$s" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "Cacher mes contacts et amis :" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?" + +#: mod/profiles.php:682 +msgid "Edit Profile Details" +msgstr "Éditer les détails du profil" + +#: mod/profiles.php:684 +msgid "Change Profile Photo" +msgstr "Changer la photo du profil" + +#: mod/profiles.php:685 +msgid "View this profile" +msgstr "Voir ce profil" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "Créer un nouveau profil en utilisant ces réglages" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "Cloner ce profil" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "Supprimer ce profil" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "Information de base" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "Image de profil" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "Préférences" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "Information sur le statut" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "Information additionnelle" + +#: mod/profiles.php:697 +msgid "Profile Name:" +msgstr "Nom du profil :" + +#: mod/profiles.php:698 +msgid "Your Full Name:" +msgstr "Votre nom complet :" + +#: mod/profiles.php:699 +msgid "Title/Description:" +msgstr "Titre / Description :" + +#: mod/profiles.php:700 +msgid "Your Gender:" +msgstr "Votre genre :" + +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "" + +#: mod/profiles.php:702 +msgid "Street Address:" +msgstr "Adresse postale :" + +#: mod/profiles.php:703 +msgid "Locality/City:" +msgstr "Ville / Localité :" + +#: mod/profiles.php:704 +msgid "Postal/Zip Code:" +msgstr "Code postal :" + +#: mod/profiles.php:705 +msgid "Country:" +msgstr "Pays :" + +#: mod/profiles.php:706 +msgid "Region/State:" +msgstr "Région / État :" + +#: mod/profiles.php:707 +msgid " Marital Status:" +msgstr " Statut marital :" + +#: mod/profiles.php:708 +msgid "Who: (if applicable)" +msgstr "Qui : (si pertinent)" + +#: mod/profiles.php:709 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:710 +msgid "Since [date]:" +msgstr "Depuis [date] :" + +#: mod/profiles.php:711 include/identity.php:569 +msgid "Sexual Preference:" +msgstr "Préférence sexuelle:" + +#: mod/profiles.php:712 +msgid "Homepage URL:" +msgstr "Page personnelle :" + +#: mod/profiles.php:713 include/identity.php:573 +msgid "Hometown:" +msgstr " Ville d'origine:" + +#: mod/profiles.php:714 include/identity.php:577 +msgid "Political Views:" +msgstr "Opinions politiques:" + +#: mod/profiles.php:715 +msgid "Religious Views:" +msgstr "Opinions religieuses :" + +#: mod/profiles.php:716 +msgid "Public Keywords:" +msgstr "Mots-clés publics :" + +#: mod/profiles.php:717 +msgid "Private Keywords:" +msgstr "Mots-clés privés :" + +#: mod/profiles.php:718 include/identity.php:585 +msgid "Likes:" +msgstr "J'aime :" + +#: mod/profiles.php:719 include/identity.php:587 +msgid "Dislikes:" +msgstr "Je n'aime pas :" + +#: mod/profiles.php:720 +msgid "Example: fishing photography software" +msgstr "Exemple : football dessin programmation" + +#: mod/profiles.php:721 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" + +#: mod/profiles.php:722 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" + +#: mod/profiles.php:723 +msgid "Tell us about yourself..." +msgstr "Parlez-nous de vous..." + +#: mod/profiles.php:724 +msgid "Hobbies/Interests" +msgstr "Passe-temps / Centres d'intérêt" + +#: mod/profiles.php:725 +msgid "Contact information and Social Networks" +msgstr "Coordonnées / Réseaux sociaux" + +#: mod/profiles.php:726 +msgid "Musical interests" +msgstr "Goûts musicaux" + +#: mod/profiles.php:727 +msgid "Books, literature" +msgstr "Lectures" + +#: mod/profiles.php:728 +msgid "Television" +msgstr "Télévision" + +#: mod/profiles.php:729 +msgid "Film/dance/culture/entertainment" +msgstr "Cinéma / Danse / Culture / Divertissement" + +#: mod/profiles.php:730 +msgid "Love/romance" +msgstr "Amour / Romance" + +#: mod/profiles.php:731 +msgid "Work/employment" +msgstr "Activité professionnelle / Occupation" + +#: mod/profiles.php:732 +msgid "School/education" +msgstr "Études / Formation" + +#: mod/profiles.php:737 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Ceci est votre profil public.
    Il peut être visible par n'importe quel utilisateur d'Internet." + +#: mod/profiles.php:800 +msgid "Edit/Manage Profiles" +msgstr "Editer / gérer les profils" + +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Changer de photo de profil" + +#: mod/profiles.php:802 include/identity.php:232 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: mod/profiles.php:813 include/identity.php:242 +msgid "Profile Image" +msgstr "Image du profil" + +#: mod/profiles.php:815 include/identity.php:245 +msgid "visible to everybody" +msgstr "visible par tous" + +#: mod/profiles.php:816 include/identity.php:246 +msgid "Edit visibility" +msgstr "Changer la visibilité" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Élément introuvable" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Éditer la publication" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "envoi image" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Joindre fichier" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "ajout fichier" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "lien web" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Insérer un lien video" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "lien vidéo" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Insérer un lien audio" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "lien audio" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Définir votre localisation" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "spéc. localisation" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Effacer la localisation du navigateur" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "supp. localisation" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Réglages des permissions" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: adresses de courriel" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Publication publique" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Définir un titre" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@exemple.com, mary@exemple.com" + +#: mod/friendica.php:59 msgid "This is Friendica, version" msgstr "Motorisé par Friendica version" -#: ../../mod/friendica.php:60 +#: mod/friendica.php:60 msgid "running at web location" msgstr "hébergé sur" -#: ../../mod/friendica.php:62 +#: mod/friendica.php:62 msgid "" "Please visit Friendica.com to learn " "more about the Friendica project." msgstr "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica." -#: ../../mod/friendica.php:64 +#: mod/friendica.php:64 msgid "Bug reports and issues: please visit" msgstr "Pour les rapports de bugs: rendez vous sur" -#: ../../mod/friendica.php:65 +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" -#: ../../mod/friendica.php:79 +#: mod/friendica.php:79 msgid "Installed plugins/addons/apps:" msgstr "Extensions/greffons/applications installées:" -#: ../../mod/friendica.php:92 +#: mod/friendica.php:92 msgid "No installed plugins/addons/apps" msgstr "Extensions/greffons/applications non installées:" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Applications" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Pas d'application installée." +#: 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/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 -msgid "Upload New Photos" -msgstr "Téléverser de nouvelles photos" +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Merci de vous connecter pour continuer." -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Informations de contact indisponibles" +#: 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/photos.php:165 -msgid "Album not found." -msgstr "Album introuvable." +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informations de confidentialité indisponibles." -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "Effacer l'album" +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visible par:" -#: ../../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/notes.php:44 include/identity.php:675 +msgid "Personal Notes" +msgstr "Notes personnelles" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 -msgid "Delete Photo" -msgstr "Effacer la photo" +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Voulez-vous vraiment supprimer cette photo ?" +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversion temporelle" -#: ../../mod/photos.php:662 +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire." + +#: mod/localtime.php:30 #, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s a été étiqueté dans %2$s par %3$s" +msgid "UTC time: %s" +msgstr "Temps UTC : %s" -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "une photo" - -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "L'image dépasse la taille maximale de " - -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Fichier image vide." - -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Aucune photo sélectionnée" - -#: ../../mod/photos.php:1094 +#: mod/localtime.php:33 #, 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." +msgid "Current timezone: %s" +msgstr "Zone de temps courante : %s" -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Téléverser des photos" +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Temps local converti : %s" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "Nom du nouvel album: " +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Sélectionner votre zone :" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "ou nom d'un album existant: " +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Solliciter" -#: ../../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/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "solliciter (poke/...) quelqu'un" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 -msgid "Permissions" -msgstr "Permissions" +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Destinataire" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Photo privée" +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Choisissez ce que vous voulez faire au destinataire" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Photo publique" +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendez ce message privé" -#: ../../mod/photos.php:1212 -msgid "Edit Album" -msgstr "Éditer l'album" - -#: ../../mod/photos.php:1218 -msgid "Show Newest First" -msgstr "Plus récent d'abord" - -#: ../../mod/photos.php:1220 -msgid "Show Oldest First" -msgstr "Plus ancien d'abord" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../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/photos.php:1296 -msgid "Photo not available" -msgstr "Photo indisponible" - -#: ../../mod/photos.php:1352 -msgid "View photo" -msgstr "Voir photo" - -#: ../../mod/photos.php:1352 -msgid "Edit photo" -msgstr "Éditer la photo" - -#: ../../mod/photos.php:1353 -msgid "Use as profile photo" -msgstr "Utiliser comme photo de profil" - -#: ../../mod/photos.php:1378 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: ../../mod/photos.php:1457 -msgid "Tags: " -msgstr "Étiquettes:" - -#: ../../mod/photos.php:1460 -msgid "[Remove any tag]" -msgstr "[Retirer toutes les étiquettes]" - -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" - -#: ../../mod/photos.php:1503 -msgid "New album name" -msgstr "Nom du nouvel album" - -#: ../../mod/photos.php:1506 -msgid "Caption" -msgstr "Titre" - -#: ../../mod/photos.php:1508 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../mod/photos.php:1512 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" - -#: ../../mod/photos.php:1521 -msgid "Private photo" -msgstr "Photo privée" - -#: ../../mod/photos.php:1522 -msgid "Public photo" -msgstr "Photo publique" - -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact ajouté" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Migrer le compte" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "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/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Fichier du compte" - -#: ../../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/invite.php:27 +#: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "La limite d'invitation totale est éxédée." -#: ../../mod/invite.php:49 +#: mod/invite.php:49 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Adresse de courriel invalide." -#: ../../mod/invite.php:73 +#: mod/invite.php:73 msgid "Please join us on Friendica" msgstr "Rejoignez-nous sur Friendica" -#: ../../mod/invite.php:84 +#: 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/invite.php:89 +#: mod/invite.php:89 #, php-format msgid "%s : Message delivery failed." msgstr "%s : L'envoi du message a échoué." -#: ../../mod/invite.php:93 +#: mod/invite.php:93 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d message envoyé." msgstr[1] "%d messages envoyés." -#: ../../mod/invite.php:112 +#: mod/invite.php:112 msgid "You have no more invitations available" msgstr "Vous n'avez plus d'invitations disponibles" -#: ../../mod/invite.php:120 +#: mod/invite.php:120 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -6342,14 +5434,14 @@ msgid "" " other social networks." msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." -#: ../../mod/invite.php:122 +#: mod/invite.php:122 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." -#: ../../mod/invite.php:123 +#: mod/invite.php:123 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -6358,1578 +5450,2625 @@ msgid "" "sites you can join." msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." -#: ../../mod/invite.php:126 +#: mod/invite.php:126 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." -#: ../../mod/invite.php:132 +#: mod/invite.php:132 msgid "Send invitations" msgstr "Envoyer des invitations" -#: ../../mod/invite.php:133 +#: mod/invite.php:133 msgid "Enter email addresses, one per line:" msgstr "Entrez les adresses email, une par ligne :" -#: ../../mod/invite.php:135 +#: mod/invite.php:135 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." -#: ../../mod/invite.php:137 +#: mod/invite.php:137 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vous devrez fournir ce code d'invitation : $invite_code" -#: ../../mod/invite.php:137 +#: mod/invite.php:137 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :" -#: ../../mod/invite.php:139 +#: mod/invite.php:139 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accès refusé." +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Photos du contact" -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Impossible de trouver un compte valide." +#: mod/photos.php:84 include/identity.php:651 +msgid "Photo Albums" +msgstr "Albums photo" -#: ../../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." +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Photos récentes" -#: ../../mod/lostpass.php:42 +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Téléverser de nouvelles photos" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "Informations de contact indisponibles" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album introuvable." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Effacer l'album" + +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" + +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Effacer la photo" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Voulez-vous vraiment supprimer cette photo ?" + +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s a été étiqueté dans %2$s par %3$s" + +#: mod/photos.php:684 +msgid "a photo" +msgstr "une photo" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Fichier image vide." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Aucune photo sélectionnée" + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." + +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Nom du nouvel album: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "ou nom d'un album existant: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Ne pas publier de notice de statut pour cet envoi" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Permissions" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Photo privée" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Photo publique" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Éditer l'album" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Plus récent d'abord" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Plus ancien d'abord" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Voir la photo" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Interdit. L'accès à cet élément peut avoir été restreint." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Photo indisponible" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Voir photo" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Éditer la photo" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Utiliser comme photo de profil" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Étiquettes:" + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Retirer toutes les étiquettes]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Nom du nouvel album" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Titre" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Photo privée" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Photo publique" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Partager" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Inscription validée." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Merci de vous connecter." + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Migrer le compte" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "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/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Fichier du compte" + +#: 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/attach.php:8 +msgid "Item not available." +msgstr "Elément non disponible." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Element introuvable." + +#: boot.php:763 +msgid "Delete this item?" +msgstr "Effacer cet élément?" + +#: boot.php:766 +msgid "show fewer" +msgstr "montrer moins" + +#: boot.php:1140 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." + +#: boot.php:1247 +msgid "Create a New Account" +msgstr "Créer un nouveau compte" + +#: boot.php:1272 include/nav.php:73 +msgid "Logout" +msgstr "Se déconnecter" + +#: boot.php:1275 +msgid "Nickname or Email address: " +msgstr "Pseudo ou courriel: " + +#: boot.php:1276 +msgid "Password: " +msgstr "Mot de passe: " + +#: boot.php:1277 +msgid "Remember me" +msgstr "Se souvenir de moi" + +#: boot.php:1280 +msgid "Or login using OpenID: " +msgstr "Ou connectez-vous via OpenID: " + +#: boot.php:1286 +msgid "Forgot your password?" +msgstr "Mot de passe oublié?" + +#: boot.php:1289 +msgid "Website Terms of Service" +msgstr "Conditions d'utilisation du site internet" + +#: boot.php:1290 +msgid "terms of service" +msgstr "conditions d'utilisation" + +#: boot.php:1292 +msgid "Website Privacy Policy" +msgstr "Politique de confidentialité du site internet" + +#: boot.php:1293 +msgid "privacy policy" +msgstr "politique de confidentialité" + +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Cette entrée à été édité" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "ignorer le fil" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "Ne plus ignorer le fil" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "Ignorer le statut" + +#: object/Item.php:214 +msgid "ignored" +msgstr "ignoré" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Catégories:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Rangé sous:" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: 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 "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue." + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Le message d’erreur est\n[pre]%s[/pre]" + +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Des erreurs ont été signalées lors de la création des tables." + +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Déconnecté." + +#: include/auth.php:128 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier." + +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Le message d'erreur était :" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Ajouter un nouveau contact" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Entrez son adresse ou sa localisation web" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exemple: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trouver des personnes" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Entrez un nom ou un centre d'intérêt" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connecter/Suivre" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Robert Morgenstein, Pêche" + +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Intérêts similaires" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profil au hasard" + +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Inviter des amis" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Réseaux" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tous réseaux" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tout" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Catégories" + +#: include/features.php:23 +msgid "General Features" +msgstr "Fonctions générales" + +#: include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profils multiples" + +#: include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilité de créer plusieurs profils" + +#: include/features.php:30 +msgid "Post Composition Features" +msgstr "Caractéristiques de composition de publication" + +#: include/features.php:31 +msgid "Richtext Editor" +msgstr "Éditeur de texte enrichi" + +#: include/features.php:31 +msgid "Enable richtext editor" +msgstr "Activer l'éditeur de texte enrichi" + +#: include/features.php:32 +msgid "Post Preview" +msgstr "Aperçu de la publication" + +#: 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" + +#: include/features.php:33 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets réseau pour barre latérale" + +#: include/features.php:39 +msgid "Search by Date" +msgstr "Rechercher par Date" + +#: include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Capacité de sélectionner les publications par intervalles de dates" + +#: include/features.php:40 +msgid "Group Filter" +msgstr "Filtre de groupe" + +#: 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é" + +#: include/features.php:41 +msgid "Network Filter" +msgstr "Filtre de réseau" + +#: 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é" + +#: include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Sauvegarder la recherche pour une utilisation ultérieure" + +#: include/features.php:47 +msgid "Network Tabs" +msgstr "Onglets Réseau" + +#: include/features.php:48 +msgid "Network Personal Tab" +msgstr "Onglet Réseau Personnel" + +#: 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" + +#: include/features.php:49 +msgid "Network New Tab" +msgstr "Nouvel onglet réseaux" + +#: 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)" + +#: include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Onglet réseau partagé" + +#: 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" + +#: include/features.php:55 +msgid "Post/Comment Tools" +msgstr "outils de publication/commentaire" + +#: include/features.php:56 +msgid "Multiple Deletion" +msgstr "Suppression multiple" + +#: include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" + +#: include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Éditer les publications envoyées" + +#: 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" + +#: include/features.php:58 +msgid "Tagging" +msgstr "Étiquettage" + +#: include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Possibilité d'étiqueter les publications existantes" + +#: include/features.php:59 +msgid "Post Categories" +msgstr "Catégories des publications" + +#: include/features.php:59 +msgid "Add categories to your posts" +msgstr "Ajouter des catégories à vos publications" + +#: include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Possibilité d'afficher les publications sous les répertoires" + +#: include/features.php:61 +msgid "Dislike Posts" +msgstr "Publications non aimées" + +#: include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Possibilité de ne pas aimer les publications/commentaires" + +#: include/features.php:62 +msgid "Star Posts" +msgstr "Publications spéciales" + +#: 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" + +#: include/features.php:63 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "URL de connexion manquante." + +#: include/follow.php:102 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux." + +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." + +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." + +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." + +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Aucune URL de navigation ne correspond à cette adresse." + +#: include/follow.php:129 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." + +#: include/follow.php:130 +msgid "Use mailto: in front of address to force email check." +msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." + +#: include/follow.php:136 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." + +#: include/follow.php:146 +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." + +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "Impossible de récupérer les informations du contact." + +#: include/follow.php:302 +msgid "following" +msgstr "following" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." + +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" + +#: include/group.php:226 +msgid "Everybody" +msgstr "Tout le monde" + +#: include/group.php:249 +msgid "edit" +msgstr "éditer" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Editer groupe" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Créer un nouveau groupe" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Contacts n'appartenant à aucun groupe" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Divers" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:256 +msgid "never" +msgstr "jamais" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "il y a moins d'une seconde" + +#: include/datetime.php:272 +msgid "year" +msgstr "an" + +#: include/datetime.php:272 +msgid "years" +msgstr "ans" + +#: include/datetime.php:273 +msgid "month" +msgstr "mois" + +#: include/datetime.php:273 +msgid "months" +msgstr "mois" + +#: include/datetime.php:274 +msgid "week" +msgstr "semaine" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "semaines" + +#: include/datetime.php:275 +msgid "day" +msgstr "jour" + +#: include/datetime.php:275 +msgid "days" +msgstr "jours" + +#: include/datetime.php:276 +msgid "hour" +msgstr "heure" + +#: include/datetime.php:276 +msgid "hours" +msgstr "heures" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minute" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minutes" + +#: include/datetime.php:278 +msgid "second" +msgstr "seconde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "secondes" + +#: include/datetime.php:287 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s auparavant" + +#: include/datetime.php:459 include/items.php:2431 +#, php-format +msgid "%s's birthday" +msgstr "Anniversaire de %s's" + +#: include/datetime.php:460 include/items.php:2432 +#, php-format +msgid "Happy Birthday %s" +msgstr "Joyeux anniversaire, %s !" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Le compte demandé n'est pas disponible." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "Editer le profil" + +#: include/identity.php:220 +msgid "Message" +msgstr "Message" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profils" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Gérer/éditer les profils" + +#: include/identity.php:341 +msgid "Network:" +msgstr "Réseau" + +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "g A | F d" + +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "F d" + +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "Rappels d'anniversaires" + +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "Anniversaires cette semaine:" + +#: include/identity.php:493 +msgid "[No description]" +msgstr "[Sans description]" + +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "Rappels d'événements" + +#: include/identity.php:518 +msgid "Events this week:" +msgstr "Evénements cette semaine :" + +#: include/identity.php:545 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:546 +msgid "j F" +msgstr "j F" + +#: include/identity.php:553 +msgid "Birthday:" +msgstr "Anniversaire:" + +#: include/identity.php:557 +msgid "Age:" +msgstr "Age:" + +#: include/identity.php:566 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "Passe-temps/Centres d'intérêt:" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées/Réseaux sociaux:" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "Goûts musicaux:" + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "Lectures:" + +#: include/identity.php:596 +msgid "Television:" +msgstr "Télévision:" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/Danse/Culture/Divertissement:" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "Amour/Romance:" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "Activité professionnelle/Occupation:" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "Études/Formation:" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "Statut" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "Messages d'état et publications" + +#: include/identity.php:643 +msgid "Profile Details" +msgstr "Détails du profil" + +#: include/identity.php:656 include/identity.php:659 include/nav.php:79 +msgid "Videos" +msgstr "Vidéos" + +#: include/identity.php:670 +msgid "Events and Calendar" +msgstr "Événements et agenda" + +#: include/identity.php:678 +msgid "Only You Can See This" +msgstr "Vous seul pouvez voir ça" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Publier aux courriels" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "show" +msgstr "montrer" + +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "cacher" + +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[pas de sujet]" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "retiré de la liste de suivi" + +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" +msgstr "Sollicitations (pokes)" + +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" +msgstr "Voir les statuts" + +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "Voir le profil" + +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "Voir les photos" + +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "Publications du réseau" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "Éditer le contact" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Supprimer le contact" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "Message privé" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Bienvenue " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Merci d'illustrer votre profil d'une image." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Bienvenue à nouveau, " + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." + +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2032 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "évènement" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s a sollicité %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "publication/élément" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s a marqué le %3$s de %2$s comme favori" + +#: include/conversation.php:771 +msgid "remove" +msgstr "enlever" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Supprimer les éléments sélectionnés" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Suivre le fil" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s aime ça." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s n'aime pas ça." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d personnes aiment ça" + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d personnes n'aiment pas ça" + +#: include/conversation.php:965 +msgid "and" +msgstr "et" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr ", et %d autres personnes" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s aiment ça." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s n'aiment pas ça." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Entrez un lien/URL video :" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Entrez un lien/URL audio :" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Terme d'étiquette:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Où êtes-vous présentemment?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Supprimer les élément(s) ?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "permissions" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Publier aux groupes" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Publier aux contacts" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Message privé" + +#: include/network.php:959 +msgid "view full size" +msgstr "voir en pleine taille" + +#: include/text.php:299 +msgid "newer" +msgstr "Plus récent" + +#: include/text.php:301 +msgid "older" +msgstr "Plus ancien" + +#: include/text.php:306 +msgid "prev" +msgstr "précédent" + +#: include/text.php:308 +msgid "first" +msgstr "premier" + +#: include/text.php:340 +msgid "last" +msgstr "dernier" + +#: include/text.php:343 +msgid "next" +msgstr "suivant" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:399 +msgid "The end" +msgstr "" + +#: include/text.php:890 +msgid "No contacts" +msgstr "Aucun contact" + +#: include/text.php:905 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: include/text.php:1003 include/nav.php:122 +msgid "Full Text" +msgstr "" + +#: include/text.php:1004 include/nav.php:123 +msgid "Tags" +msgstr "" + +#: include/text.php:1008 include/nav.php:127 +msgid "Forums" +msgstr "" + +#: include/text.php:1058 +msgid "poke" +msgstr "titiller" + +#: include/text.php:1058 +msgid "poked" +msgstr "a titillé" + +#: include/text.php:1059 +msgid "ping" +msgstr "attirer l'attention" + +#: include/text.php:1059 +msgid "pinged" +msgstr "a attiré l'attention de" + +#: include/text.php:1060 +msgid "prod" +msgstr "aiguillonner" + +#: include/text.php:1060 +msgid "prodded" +msgstr "a aiguillonné" + +#: include/text.php:1061 +msgid "slap" +msgstr "gifler" + +#: include/text.php:1061 +msgid "slapped" +msgstr "a giflé" + +#: include/text.php:1062 +msgid "finger" +msgstr "tripoter" + +#: include/text.php:1062 +msgid "fingered" +msgstr "a tripoté" + +#: include/text.php:1063 +msgid "rebuff" +msgstr "rabrouer" + +#: include/text.php:1063 +msgid "rebuffed" +msgstr "a rabroué" + +#: include/text.php:1077 +msgid "happy" +msgstr "heureuse" + +#: include/text.php:1078 +msgid "sad" +msgstr "triste" + +#: include/text.php:1079 +msgid "mellow" +msgstr "suave" + +#: include/text.php:1080 +msgid "tired" +msgstr "fatiguée" + +#: include/text.php:1081 +msgid "perky" +msgstr "guillerette" + +#: include/text.php:1082 +msgid "angry" +msgstr "colérique" + +#: include/text.php:1083 +msgid "stupified" +msgstr "stupéfaite" + +#: include/text.php:1084 +msgid "puzzled" +msgstr "perplexe" + +#: include/text.php:1085 +msgid "interested" +msgstr "intéressée" + +#: include/text.php:1086 +msgid "bitter" +msgstr "amère" + +#: include/text.php:1087 +msgid "cheerful" +msgstr "entraînante" + +#: include/text.php:1088 +msgid "alive" +msgstr "vivante" + +#: include/text.php:1089 +msgid "annoyed" +msgstr "ennuyée" + +#: include/text.php:1090 +msgid "anxious" +msgstr "anxieuse" + +#: include/text.php:1091 +msgid "cranky" +msgstr "excentrique" + +#: include/text.php:1092 +msgid "disturbed" +msgstr "dérangée" + +#: include/text.php:1093 +msgid "frustrated" +msgstr "frustrée" + +#: include/text.php:1094 +msgid "motivated" +msgstr "motivée" + +#: include/text.php:1095 +msgid "relaxed" +msgstr "détendue" + +#: include/text.php:1096 +msgid "surprised" +msgstr "surprise" + +#: include/text.php:1266 +msgid "Monday" +msgstr "Lundi" + +#: include/text.php:1266 +msgid "Tuesday" +msgstr "Mardi" + +#: include/text.php:1266 +msgid "Wednesday" +msgstr "Mercredi" + +#: include/text.php:1266 +msgid "Thursday" +msgstr "Jeudi" + +#: include/text.php:1266 +msgid "Friday" +msgstr "Vendredi" + +#: include/text.php:1266 +msgid "Saturday" +msgstr "Samedi" + +#: include/text.php:1266 +msgid "Sunday" +msgstr "Dimanche" + +#: include/text.php:1270 +msgid "January" +msgstr "Janvier" + +#: include/text.php:1270 +msgid "February" +msgstr "Février" + +#: include/text.php:1270 +msgid "March" +msgstr "Mars" + +#: include/text.php:1270 +msgid "April" +msgstr "Avril" + +#: include/text.php:1270 +msgid "May" +msgstr "Mai" + +#: include/text.php:1270 +msgid "June" +msgstr "Juin" + +#: include/text.php:1270 +msgid "July" +msgstr "Juillet" + +#: include/text.php:1270 +msgid "August" +msgstr "Août" + +#: include/text.php:1270 +msgid "September" +msgstr "Septembre" + +#: include/text.php:1270 +msgid "October" +msgstr "Octobre" + +#: include/text.php:1270 +msgid "November" +msgstr "Novembre" + +#: include/text.php:1270 +msgid "December" +msgstr "Décembre" + +#: include/text.php:1492 +msgid "bytes" +msgstr "octets" + +#: include/text.php:1524 include/text.php:1536 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: include/text.php:1710 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1711 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1768 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "défaut" + +#: include/text.php:1780 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" + +#: include/text.php:2036 +msgid "activity" +msgstr "activité" + +#: include/text.php:2039 +msgid "post" +msgstr "publication" + +#: include/text.php:2207 +msgid "Item filed" +msgstr "Élément classé" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Image/photo" + +#: include/bbcode.php:556 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:590 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 a écrit:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: include/notifier.php:830 include/delivery.php:456 +msgid "(no subject)" +msgstr "(sans titre)" + +#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 +msgid "noreply" +msgstr "noreply" + +#: 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'" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Inconnu | Non-classé" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquer immédiatement" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Douteux, spammeur, accro à l'auto-promotion" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Connu de moi, mais sans opinion" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probablement inoffensif" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Réputé, a toute ma confiance" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Chaque semaine" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Chaque mois" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connecteur Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "" + +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr "sur Last.fm" + +#: include/bb2diaspora.php:154 include/event.php:22 +msgid "Starts:" +msgstr "Débute:" + +#: include/bb2diaspora.php:162 include/event.php:32 +msgid "Finishes:" +msgstr "Finit:" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Cette action dépasse les limites définies par votre abonnement." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre abonnement." + +#: include/nav.php:73 +msgid "End this session" +msgstr "Mettre fin à cette session" + +#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" + +#: include/nav.php:77 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Votre page de profil" + +#: include/nav.php:78 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Vos photos" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "Vos vidéos" + +#: include/nav.php:80 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Vos événements" + +#: include/nav.php:81 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Notes personnelles" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Vos notes personnelles" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Se connecter" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Page d'accueil" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Créer un compte" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Applications" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applications supplémentaires, utilitaires, jeux" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Rechercher dans le contenu du site" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Conversations ayant cours sur ce site" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Annuaire" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Annuaire des utilisateurs" + +#: include/nav.php:143 +msgid "Information" +msgstr "Information" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Information au sujet de cette instance de friendica" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Conversations de vos amis" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Réinitialiser le réseau" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Chargement des pages du réseau sans filtre" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Demande d'amitié" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Voir toute notification" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme 'vues'" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Messages privés" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "Messages entrants" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Messages sortants" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Gérer" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Gérer les autres pages" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Compte" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Gérer/Éditer les profiles" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Gérer/éditer les amitiés et contacts" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Démarrage et configuration du site" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Carte du site" + +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1141 include/api.php:1143 +msgid "User not found." +msgstr "Utilisateur non trouvé" + +#: include/api.php:795 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée." + +#: include/api.php:814 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée." + +#: include/api.php:833 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." + +#: include/api.php:1350 +msgid "There is no status with this id." +msgstr "Il n'y a pas de statut avec cet id." + +#: include/api.php:1424 +msgid "There is no conversation with this id." +msgstr "Il n'y a pas de conversation avec cet id." + +#: include/api.php:1703 +msgid "Invalid item." +msgstr "Item invalide." + +#: include/api.php:1713 +msgid "Invalid action. " +msgstr "Action invalide." + +#: include/api.php:1721 +msgid "DB error" +msgstr "" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Une invitation est requise." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "L'invitation fournie n'a pu être validée." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Adresse OpenID invalide" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Entrez les informations requises." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Utilisez un nom plus court." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Nom trop court." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Ceci n'est pas une adresse courriel valide." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Impossible d'utiliser ce courriel." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Amis" + +#: include/user.php:385 #, 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 "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous." +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t" -#: ../../mod/lostpass.php:53 +#: include/user.php:389 #, 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" +"\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\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Requête de réinitialisation de mot de passe à %s" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est " - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." - -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" "\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\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t" - -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" +"\t\tPlease take a few moments to review the other account settings on that page.\n" "\n" -"\t\t\t\tYour login details are as follows:\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\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" +"\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\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t" +"\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 "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s." -#: ../../mod/lostpass.php:147 +#: include/diaspora.php:717 +msgid "Sharing notification from Diaspora network" +msgstr "Notification de partage du réseau Diaspora" + +#: include/diaspora.php:2560 +msgid "Attachments:" +msgstr "Pièces jointes : " + +#: include/items.php:4852 +msgid "Do you really want to delete this item?" +msgstr "Voulez-vous vraiment supprimer cet élément ?" + +#: include/items.php:5127 +msgid "Archives" +msgstr "Archives" + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Masculin" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Féminin" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Actuellement masculin" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Actuellement féminin" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Principalement masculin" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Principalement féminin" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgenre" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Inter-sexe" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuel" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodite" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutre" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-spécifique" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Autre" + +#: include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indécis" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Hommes" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmes" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: 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 "Your password has been changed at %s" -msgstr "Votre mot de passe a été modifié à %s" +msgid "%s Administrator" +msgstr "L'administrateur de %s" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié ?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Pseudo ou eMail : " - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Texte source (bbcode) :" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Texte source (Diaspora) à convertir en BBcode :" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Source input : " - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML brut)" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html : " - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb : " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md : " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html : " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb : " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb : " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Texte source (format Diaspora) :" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb :" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Étiquette supprimée" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Enlever l'étiquette de l'élément" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Sélectionner une étiquette à supprimer: " - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Supprimer mon compte" - -#: ../../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/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification :" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Éditer la visibilité du profil" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visible par" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tous les contacts (ayant un accès sécurisé)" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "s'intéresse à :" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Vous devez donner un nom et un horaire de début à l'événement." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editer l'événement" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Créer un nouvel événement" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Précédent" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Suivant" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "heures:minutes" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Détails de l'événement" - -#: ../../mod/events.php:457 +#: include/enotify.php:64 #, 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." +msgid "%s " +msgstr "%s " -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Début de l'événement :" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Requis" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Date / heure de fin inconnue ou sans objet" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Fin de l'événement:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Ajuster à la zone horaire du visiteur" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Description:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titre :" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Partager cet événement" - -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} souhaite être votre ami(e)" - -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} vous a envoyé un message" - -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} a demandé à s'inscrire" - -#: ../../mod/ping.php:256 +#: include/enotify.php:78 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} a commenté la publication de %s" +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" -#: ../../mod/ping.php:261 +#: include/enotify.php:80 #, php-format -msgid "{0} liked %s's post" -msgstr "{0} a aimé la publication de %s" +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/ping.php:266 +#: include/enotify.php:81 #, php-format -msgid "{0} disliked %s's post" -msgstr "{0} n'a pas aimé la publication de %s" +msgid "%1$s sent you %2$s." +msgstr "%1$s vous a envoyé %2$s." -#: ../../mod/ping.php:271 +#: include/enotify.php:81 +msgid "a private message" +msgstr "un message privé" + +#: include/enotify.php:82 #, php-format -msgid "{0} is now friends with %s" -msgstr "{0} est désormais ami(e) avec %s" +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/ping.php:276 -msgid "{0} posted" -msgstr "{0} a publié" - -#: ../../mod/ping.php:281 +#: include/enotify.php:134 #, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} a étiqueté la publication de %s avec #%s" +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/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} vous a mentionné dans une publication" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Humeur" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Spécifiez votre humeur du moment, et informez vos amis" - -#: ../../mod/search.php:174 ../../mod/community.php:62 -#: ../../mod/community.php:71 -msgid "No results." -msgstr "Aucun résultat." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossible de localiser les informations du contact." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Voulez-vous vraiment supprimer ce message ?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Message supprimé." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversation supprimée." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Aucun message." - -#: ../../mod/message.php:378 +#: include/enotify.php:141 #, php-format -msgid "Unknown sender - %s" -msgstr "Émetteur inconnu - %s" +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/message.php:381 +#: include/enotify.php:149 #, php-format -msgid "You and %s" -msgstr "Vous et %s" +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/message.php:384 +#: include/enotify.php:159 #, php-format -msgid "%s and You" -msgstr "%s et vous" +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Effacer conversation" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 +#: include/enotify.php:160 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a commenté un élément que vous suivez." -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Message indisponible." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Effacer message" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Répondre" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Indisponible." - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profil introuvable." - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil supprimé." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nouveau profil créé." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Ce profil ne peut être cloné." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Le nom du profil est requis." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Statut marital" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Partenaire / conjoint" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Derniers \"J'aime\"" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Derniers \"Je n'aime pas\"" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Travail / Occupation" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Tendance politique" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Sexe" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Préférence sexuelle" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Site internet" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Centres d'intérêt" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Localisation" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profil mis à jour." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr " et " - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "profil public" - -#: ../../mod/profiles.php:579 +#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 +#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" +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/profiles.php:580 +#: include/enotify.php:170 #, php-format -msgid " - Visit %1$s's %2$s" -msgstr "Visiter le %2$s de %1$s" +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" -#: ../../mod/profiles.php:583 +#: include/enotify.php:172 #, 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." +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a publié sur votre mur à %2$s" -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "Cacher mes contacts et amis :" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Éditer les détails du profil" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Changer la photo du profil" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Voir ce profil" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil en utilisant ces réglages" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Cloner ce profil" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Supprimer ce profil" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "Information de base" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "Image de profil" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "Préférences" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "Information sur le statut" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "Information additionnelle" - -#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Nom du profil :" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Votre nom complet :" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titre / Description :" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Votre genre :" - -#: ../../mod/profiles.php:704 +#: include/enotify.php:174 #, php-format -msgid "Birthday (%s):" -msgstr "Anniversaire (%s) :" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Adresse postale :" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Ville / Localité :" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Code postal :" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Pays :" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Région / État :" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Statut marital :" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Qui : (si pertinent)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Depuis [date] :" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Page personnelle :" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Opinions religieuses :" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Mots-clés publics :" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Mots-clés privés :" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Exemple : football dessin programmation" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Parlez-nous de vous..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Passe-temps / Centres d'intérêt" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Coordonnées / Réseaux sociaux" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Goûts musicaux" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Lectures" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Télévision" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Cinéma / Danse / Culture / Divertissement" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Amour / Romance" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Activité professionnelle / Occupation" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "Études / Formation" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Ceci est votre profil public.
    Il peut être visible par n'importe quel utilisateur d'Internet." - -#: ../../mod/profiles.php:750 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Age : " - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Editer / gérer les profils" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Serveur de communications Friendica - Configuration" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Impossible de se connecter à la base." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Impossible de créer une table." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "La base de données de votre site Friendica a bien été installée." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Référez-vous au fichier \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Vérifications système" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Vérifier à nouveau" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Connexion à la base de données" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Serveur de base de données" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nom d'utilisateur de la base" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Mot de passe de la base" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nom de la base" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Adresse électronique de l'administrateur du site" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Sélectionner un fuseau horaire par défaut pour votre site" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Réglages du site" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." - -#: ../../mod/install.php:322 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Chemin vers l'exécutable de PHP" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Version \"ligne de commande\" de PHP" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Version de PHP:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP cli binary" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Ceci est requis pour que la livraison des messages fonctionne." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Générer les clés de chiffrement" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "Module libCurl de PHP" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "Module GD (graphiques) de PHP" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "Module OpenSSL de PHP" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "Module Mysqli de PHP" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "Module mb_string de PHP" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Module mod_rewrite Apache" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Erreur : Le module PHP \"mysqli\" est requis mais pas installé." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Erreur : le module PHP mb_string est requis mais pas installé." - -#: ../../mod/install.php:438 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable." - -#: ../../mod/install.php:439 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." - -#: ../../mod/install.php:440 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica." - -#: ../../mod/install.php:441 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr "Fichier .htconfig.php accessible en écriture" - -#: ../../mod/install.php:454 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "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/help.php:31 -msgid "Help:" -msgstr "Aide :" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Réglages du contact appliqués." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Impossible d'appliquer les réglages." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Réglages de réparation des contacts" - -#: ../../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." - -#: ../../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" - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Retour à l'éditeur de contact" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notification] %s vous a étiqueté" + +#: include/enotify.php:186 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s vous a étiqueté sur %2$s" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]vous a étiqueté[/url]." + +#: include/enotify.php:198 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notification] %s partage une nouvelle publication" + +#: include/enotify.php:199 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s a partagé une nouvelle publication sur %2$s" + +#: include/enotify.php:200 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]partage une publication[/url]." + +#: include/enotify.php:212 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s vous a sollicité" + +#: include/enotify.php:213 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s vous a sollicité via %2$s" + +#: include/enotify.php:214 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s vous a [url=%2$s]sollicité[/url]." + +#: include/enotify.php:229 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notification] %s a étiqueté votre publication" + +#: include/enotify.php:230 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s a étiqueté votre publication sur %2$s" + +#: include/enotify.php:231 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]" + +#: include/enotify.php:242 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notification] Introduction reçue" + +#: include/enotify.php:243 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" + +#: include/enotify.php:244 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." + +#: include/enotify.php:247 include/enotify.php:289 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vous pouvez visiter son profil sur %s" + +#: include/enotify.php:249 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." + +#: include/enotify.php:257 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Notification Friendica] Une nouvelle personne partage avec vous" + +#: include/enotify.php:258 include/enotify.php:259 +#, php-format +msgid "%1$s is sharing with you at %2$s" msgstr "" -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" +#: include/enotify.php:265 +msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" +#: include/enotify.php:266 include/enotify.php:267 +#, php-format +msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Pseudo du compte" +#: include/enotify.php:280 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" +#: include/enotify.php:281 +#, 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/crepair.php:168 -msgid "Account URL" -msgstr "URL du compte" +#: include/enotify.php:282 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "Echec du téléversement de l'image." +#: include/enotify.php:287 +msgid "Name:" +msgstr "Nom :" -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "Accès public refusé." +#: include/enotify.php:288 +msgid "Photo:" +msgstr "Photo :" -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "Aucune photo sélectionnée" +#: include/enotify.php:291 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "Téléverser des photos" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nouvelle photo depuis cette URL" - -#: ../../mod/crepair.php:174 -msgid "Remote Self" +#: include/enotify.php:299 include/enotify.php:312 +msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" +#: include/enotify.php:300 include/enotify.php:313 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: ../../mod/crepair.php:176 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." +#: include/enotify.php:301 include/enotify.php:314 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bienvenue sur Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checklist du nouvel utilisateur" - -#: ../../mod/newmember.php:12 +#: include/enotify.php:304 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." +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Bien démarrer" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica pas-à-pas" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Éditer vos Réglages" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Éditer votre Profil" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Mots-clés du profil" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Connexions" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importer courriels" - -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Consulter vos Contacts" - -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Consulter l'Annuaire de votre Site" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trouver de nouvelles personnes" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Grouper vos contacts" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Pourquoi mes éléments ne sont pas publics ?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Obtenir de l'aide" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Aller à la section Aide" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Solliciter" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "solliciter (poke/...) quelqu'un" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Choisissez ce que vous voulez faire au destinataire" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendez ce message privé" - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Cet élément a été enlevé." - -#: ../../mod/subthread.php:103 +#: include/enotify.php:307 include/enotify.php:321 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s suit les %3$s de %2$s" +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s accueille %2$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é." - -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Réponse du site distant incomprise." - -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Réponse inattendue du site distant : " - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Confirmation achevée avec succès." - -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Alerte du site distant : " - -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Échec temporaire. Merci de recommencer ultérieurement." - -#: ../../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." - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Pas d'utilisateur trouvé pour '%s' " - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Notre clé de chiffrement de site est apparemment corrompue." - -#: ../../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." - -#: ../../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." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s." - -#: ../../mod/dfrn_confirm.php: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." - -#: ../../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." - -#: ../../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" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s a rejoint %2$s" - -#: ../../mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication originale." - -#: ../../mod/item.php:346 -msgid "Empty post discarded." -msgstr "Publication vide rejetée." - -#: ../../mod/item.php:839 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvée." - -#: ../../mod/item.php:965 +#: include/enotify.php:317 #, 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." +"'%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/item.php:967 +#: include/enotify.php:319 #, php-format -msgid "You may visit them online at %s" -msgstr "Vous pouvez leur rendre visite sur %s" - -#: ../../mod/item.php:968 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." +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" -#: ../../mod/item.php:972 +#: include/enotify.php:332 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:333 #, php-format -msgid "%s posted an update." -msgstr "%s a publié une mise à jour." +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Image envoyée, mais impossible de la retailler." - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: include/enotify.php:334 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Réduction de la taille de l'image [%s] échouée." +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s." -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossible de traiter l'image" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Fichier à téléverser:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Choisir un profil:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Téléverser" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "ignorer cette étape" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "choisissez une photo depuis vos albums" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "(Re)cadrer l'image" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ajustez le cadre de l'image pour une visualisation optimale." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Édition terminée" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Image téléversée avec succès." - -#: ../../mod/allfriends.php:34 +#: include/enotify.php:337 #, php-format -msgid "Friends of %s" -msgstr "Amis de %s" +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Pas d'amis à afficher." +#: include/enotify.php:340 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Trouver sur ce site" +#: include/oembed.php:223 +msgid "Embedded content" +msgstr "Contenu incorporé" -#: ../../mod/directory.php:62 -msgid "Site Directory" +#: include/oembed.php:232 +msgid "Embedding disabled" +msgstr "Incorporation désactivée" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Une erreur a été détecté en décodant un fichier utilisateur" + +#: 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 ?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Erreur! Pseudo invalide" + +#: 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!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Erreur de création d'utilisateur" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Erreur de création du profil utilisateur" + +#: include/uimport.php:222 +#, php-format +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" + +#: include/uimport.php:292 +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" + +#: index.php:441 +msgid "toggle mobile" +msgstr "activ. mobile" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" + +#: view/theme/cleanzero/config.php:84 view/theme/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" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Largeur du thème" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Palette de couleurs" + +#: view/theme/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" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Choisir le schéma de couleurs" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Alignement" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Gauche" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centre" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Taille de texte des publications" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Taille de police des zones de texte" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Réglez la résolution de la colonne centrale" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Choisir le schéma de couleurs" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Niveau de zoom" + +#: 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" + +#: 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" + +#: 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é" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Géolocalisation" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Profils communautaires" + +#: 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?" + +#: 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" + +#: 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" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Derniers utilisateurs" + +#: 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" + +#: 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é" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Vos contacts" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Vos photos personnelles" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" msgstr "Annuaire local" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Genre : " +#: 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:189 -msgid "No entries (some entries may be hidden)." -msgstr "Aucune entrée (certaines peuvent être cachées)." +#: 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/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversion temporelle" +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Définir le style" -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire." +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Temps UTC : %s" +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Zone de temps courante : %s" +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Temps local converti : %s" +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Sélectionner votre zone :" +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variations" diff --git a/view/fr/strings.php b/view/fr/strings.php index 168c78681..a5e373075 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -5,956 +5,6 @@ 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["default"] = "défaut"; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = "Variations"; -$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["Permission denied."] = "Permission refusée."; -$a->strings["toggle mobile"] = "activ. mobile"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = "Voulez-vous confirmer votre identité (%s) avec %se"; -$a->strings["Confirm"] = "Confirmer"; -$a->strings["Do not confirm"] = "Ne pas confirmer"; -$a->strings["Trust This Site"] = "Faire confiance à ce site"; -$a->strings["No Identifier Sent"] = "Aucun identifiant envoyé"; -$a->strings["Requested identity don't match logged in user."] = "La requête d'identité ne correspond pas à l'utilisateur connecté."; -$a->strings["Please wait; you are being redirected to <%s>"] = "Veuillez patienter, vous êtes redirigé vers <%s>"; -$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["About:"] = "À propos:"; -$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["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["%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"] = "%1\$s a partagé une nouvelle publication sur %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"] = "[Notification Friendica] Une nouvelle personne partage avec vous"; -$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."] = "Vous avez reçu une [url=%1\$s]demande de création de compte[/url] de %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande."; -$a->strings["User not found."] = "Utilisateur non trouvé"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."; -$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."] = "Requête invalide."; -$a->strings["Invalid item."] = "Item invalide."; -$a->strings["Invalid action. "] = "Action invalide."; -$a->strings["DB error"] = ""; -$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["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["Conversations on the network"] = ""; -$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."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\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."] = "Des erreurs sont survenues lors de la mise à jour de la base de données."; -$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["%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["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["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["Loading more entries..."] = ""; -$a->strings["The end"] = ""; -$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["Save"] = "Sauver"; -$a->strings["poke"] = "titiller"; -$a->strings["poked"] = "a titillé"; -$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["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["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"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t"; -$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."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s."; -$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"] = "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["add tag"] = "ajouter une étiquette"; -$a->strings["I like this (toggle)"] = "J'aime"; -$a->strings["like"] = "aime"; -$a->strings["I don't like this (toggle)"] = "Je n'aime pas"; -$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["Invalid request identifier."] = "Identifiant de demande invalide."; -$a->strings["Discard"] = "Rejeter"; -$a->strings["Ignore"] = "Ignorer"; -$a->strings["System"] = "Système"; -$a->strings["Personal"] = "Personnel"; -$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"; -$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; -$a->strings["yes"] = "oui"; -$a->strings["no"] = "non"; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = ""; -$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = ""; -$a->strings["Friend"] = "Ami"; -$a->strings["Sharer"] = "Initiateur du partage"; -$a->strings["Fan/Admirer"] = "Fan/Admirateur"; -$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; -$a->strings["New Follower"] = "Nouvel abonné"; -$a->strings["No introductions."] = "Aucune demande d'introduction."; -$a->strings["%s liked %s's post"] = "%s a aimé la 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"; -$a->strings["%s created a new post"] = "%s a créé une nouvelle publication"; -$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s"; -$a->strings["No more network notifications."] = "Aucune notification du réseau."; -$a->strings["Network Notifications"] = "Notifications du réseau"; -$a->strings["No more system notifications."] = "Pas plus de notifications système."; -$a->strings["System Notifications"] = "Notifications du système"; -$a->strings["No more personal notifications."] = "Aucun notification personnelle."; -$a->strings["Personal Notifications"] = "Notifications personnelles"; -$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil."; -$a->strings["Home Notifications"] = "Notifications de page d'accueil"; -$a->strings["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"] = "Un message de relocalisation a été envoyé à vos 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"] = "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["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["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["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"] = "Relocaliser"; -$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."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."; -$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux 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.", @@ -963,6 +13,7 @@ $a->strings["Could not access contact record."] = "Impossible d'accéder à l'en $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["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é"; @@ -970,6 +21,8 @@ $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["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"; @@ -980,11 +33,16 @@ $a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès) $a->strings["(Update was not successful)"] = "(Mise à jour échouée)"; $a->strings["Suggest friends"] = "Suggérer amitié/contact"; $a->strings["Network type: %s"] = "Type de réseau %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); $a->strings["View all contacts"] = "Voir tous les contacts"; $a->strings["Unblock"] = "Débloquer"; $a->strings["Block"] = "Bloquer"; $a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; $a->strings["Unignore"] = "Ne plus ignorer"; +$a->strings["Ignore"] = "Ignorer"; $a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; $a->strings["Unarchive"] = "Désarchiver"; $a->strings["Archive"] = "Archiver"; @@ -997,6 +55,7 @@ $a->strings["Disabled"] = "Désactivé"; $a->strings["Fetch information"] = "Récupérer informations"; $a->strings["Fetch information and keywords"] = "Récupérer informations"; $a->strings["Contact Editor"] = "Éditeur de contact"; +$a->strings["Submit"] = "Envoyer"; $a->strings["Profile Visibility"] = "Visibilité du profil"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; $a->strings["Contact Information / Notes"] = "Informations de contact / Notes"; @@ -1013,13 +72,16 @@ $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["Blacklisted keywords"] = "Mots-clés sur la liste noire"; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné."; +$a->strings["Profile URL"] = "URL du Profil"; $a->strings["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"; @@ -1031,123 +93,334 @@ $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["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["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?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?"; -$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["[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 your accout details:
    login: %s
    password: %s

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

    Vous pourrez changer votre mot de passe une fois connecté."; -$a->strings["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["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["Item not found"] = "Élément introuvable"; -$a->strings["Edit post"] = "Éditer la publication"; -$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["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["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 %s"] = "L'image dépasse la taille limite de %s"; +$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["- select -"] = "- choisir -"; +$a->strings["Save"] = "Sauver"; +$a->strings["You already added this contact."] = "Vous avez déjà ajouté ce contact."; $a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; $a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; +$a->strings["No"] = "Non"; $a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; -$a->strings["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["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 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["Do you really want to delete this video?"] = "Voulez-vous vraiment supprimer cette vidéo?"; +$a->strings["Delete Video"] = "Supprimer la vidéo"; +$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["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["link"] = "lien"; +$a->strings["Invalid request."] = "Requête invalide."; +$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."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."; +$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\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\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"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\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"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\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 eMail : "; +$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["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["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["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami"; +$a->strings["if applicable"] = "si possible"; +$a->strings["Approve"] = "Approuver"; +$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; +$a->strings["yes"] = "oui"; +$a->strings["no"] = "non"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"; +$a->strings["Friend"] = "Ami"; +$a->strings["Sharer"] = "Initiateur du partage"; +$a->strings["Fan/Admirer"] = "Fan/Admirateur"; +$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; +$a->strings["New Follower"] = "Nouvel abonné"; +$a->strings["Location:"] = "Localisation:"; +$a->strings["About:"] = "À propos:"; +$a->strings["Tags:"] = "Étiquette:"; +$a->strings["Gender:"] = "Genre:"; +$a->strings["No introductions."] = "Aucune demande d'introduction."; +$a->strings["Notifications"] = "Notifications"; +$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"; +$a->strings["%s created a new post"] = "%s a créé une nouvelle publication"; +$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s"; +$a->strings["No more network notifications."] = "Aucune notification du réseau."; +$a->strings["Network Notifications"] = "Notifications du réseau"; +$a->strings["No more system notifications."] = "Pas plus de notifications système."; +$a->strings["System Notifications"] = "Notifications du système"; +$a->strings["No more personal notifications."] = "Aucun notification personnelle."; +$a->strings["Personal Notifications"] = "Notifications personnelles"; +$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil."; +$a->strings["Home Notifications"] = "Notifications de page d'accueil"; +$a->strings["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["Message not available."] = "Message indisponible."; +$a->strings["Delete message"] = "Effacer message"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; +$a->strings["Send Reply"] = "Répondre"; +$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; +$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; +$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; +$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; +$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; +$a->strings["No mirroring"] = "Pas de miroir"; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Refetch contact data"] = ""; +$a->strings["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["Login"] = "Connexion"; +$a->strings["The post was created"] = ""; +$a->strings["Access denied."] = "Accès refusé."; +$a->strings["People Search - %s"] = ""; +$a->strings["Connect"] = "Relier"; +$a->strings["No matches"] = "Aucune correspondance"; +$a->strings["Photos"] = "Photos"; +$a->strings["Files"] = "Fichiers"; +$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; $a->strings["Theme settings updated."] = "Réglages du thème sauvés."; $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["Inspect Queue"] = ""; $a->strings["Logs"] = "Journaux"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; +$a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Propriétés des extensions"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; +$a->strings["Administration"] = "Administration"; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; $a->strings["Normal Account"] = "Compte normal"; $a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; $a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; @@ -1155,7 +428,6 @@ $a->strings["Automatic Friend Account"] = "Compte auto-amical"; $a->strings["Blog Account"] = "Compte de blog"; $a->strings["Private Forum"] = "Forum privé"; $a->strings["Message queues"] = "Files d'attente des messages"; -$a->strings["Administration"] = "Administration"; $a->strings["Summary"] = "Résumé"; $a->strings["Registered users"] = "Utilisateurs inscrits"; $a->strings["Pending registrations"] = "Inscriptions en attente"; @@ -1163,10 +435,21 @@ $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["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; $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["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = "Un mois"; +$a->strings["Three months"] = "Trois mois"; +$a->strings["Half a year"] = ""; +$a->strings["One year"] = "Un an"; $a->strings["Multi user instance"] = "Instance multi-utilisateurs"; $a->strings["Closed"] = "Fermé"; $a->strings["Requires approval"] = "Demande une apptrobation"; @@ -1174,9 +457,12 @@ $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["Auto Discovered Contact Directory"] = ""; $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"; @@ -1186,7 +472,7 @@ $a->strings["Banner/Logo"] = "Bannière/Logo"; $a->strings["Shortcut icon"] = ""; $a->strings["Touch icon"] = ""; $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."; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; $a->strings["System language"] = "Langue du système"; $a->strings["System theme"] = "Thème du système"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème"; @@ -1269,6 +555,18 @@ $a->strings["Poll interval"] = "Intervalle de réception"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."; $a->strings["Maximum Load Average"] = "Plafond de la charge moyenne"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; $a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."; $a->strings["Suppress Language"] = "Supprimer un langage"; @@ -1276,13 +574,17 @@ $a->strings["Suppress language information in meta information about a posting." $a->strings["Suppress Tags"] = ""; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; $a->strings["Path to item cache"] = "Chemin vers le cache des objets."; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = "Durée du cache en secondes"; $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["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; $a->strings["Temp path"] = "Chemin des fichiers temporaires"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; $a->strings["Base path to installation"] = "Chemin de base de l'installation"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; $a->strings["Disable picture proxy"] = "Désactiver le proxy image "; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."; $a->strings["Enable old style pager"] = ""; @@ -1290,6 +592,11 @@ $a->strings["The old style pager has page numbers but slows down massively the p $a->strings["Only search in tags"] = ""; $a->strings["On large systems the text search can slow down the system extremely."] = ""; $a->strings["New base url"] = "Nouvelle URL de base"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; $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"; @@ -1305,6 +612,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."] = "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1\$s\n\t\t\tIdentifiant :\t\t%2\$s\n\t\t\tMot de passe :\t\t%3\$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4\$s."; +$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é", @@ -1321,6 +629,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"; @@ -1330,6 +639,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."; @@ -1358,14 +668,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["Search Results For: %s"] = ""; $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"; @@ -1384,142 +690,23 @@ $a->strings["Warning: This group contains %s member from an insecure network."] $a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; $a->strings["No such group"] = "Groupe inexistant"; $a->strings["Group is empty"] = "Groupe vide"; -$a->strings["Group: "] = "Groupe: "; -$a->strings["Contact: "] = "Contact: "; +$a->strings["Group: %s"] = ""; +$a->strings["Contact: %s"] = ""; $a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; $a->strings["Invalid contact."] = "Contact invalide."; -$a->strings["- 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["The post was created"] = ""; -$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\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""; -$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."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."; -$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\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\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"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\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"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\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 eMail : "; -$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 can not end before it has started."] = ""; $a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editer l'événement"; +$a->strings["link to source"] = "lien original"; +$a->strings["Events"] = "Événements"; $a->strings["Create New Event"] = "Créer un nouvel événement"; $a->strings["Previous"] = "Précédent"; $a->strings["Next"] = "Suivant"; -$a->strings["hour:minute"] = "heures:minutes"; $a->strings["Event details"] = "Détails de l'événement"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires."; +$a->strings["Starting date and Title are required."] = ""; $a->strings["Event Starts:"] = "Début de l'événement :"; $a->strings["Required"] = "Requis"; $a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet"; @@ -1528,117 +715,57 @@ $a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visit $a->strings["Description:"] = "Description:"; $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["Preview"] = "Aperçu"; +$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["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:"] = "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["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["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"; +$a->strings["like"] = "aime"; +$a->strings["I don't like this (toggle)"] = "Je n'aime pas"; +$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["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."; $a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; $a->strings["System check"] = "Vérifications système"; $a->strings["Check again"] = "Vérifier à nouveau"; $a->strings["Database connection"] = "Connexion à la base de données"; @@ -1694,113 +821,1035 @@ $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["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$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["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["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["Welcome to %s"] = "Bienvenue sur %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; +$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?"; +$a->strings["File exceeds size limit of %s"] = ""; +$a->strings["File 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["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"] = "Un message de relocalisation a été envoyé à vos 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["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["enabled"] = "activé"; +$a->strings["disabled"] = "désactivé"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["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["Theme settings"] = "Réglages du thème graphique"; +$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["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 '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"; +$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; +$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["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; +$a->strings["Relocate"] = "Relocaliser"; +$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."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."; +$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux 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["Confirm"] = "Confirmer"; +$a->strings["Hide this contact"] = "Cacher ce contact"; +$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

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

    Vous pourrez changer votre mot de passe une fois connecté."; +$a->strings["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["Leave empty for an auto generated password."] = ""; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; +$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["Items tagged with: %s"] = ""; +$a->strings["Search results for: %s"] = ""; +$a->strings["Global Directory"] = "Annuaire global"; $a->strings["Find on this site"] = "Trouver sur ce site"; $a->strings["Site Directory"] = "Annuaire local"; +$a->strings["Age: "] = "Age : "; $a->strings["Gender: "] = "Genre : "; +$a->strings["Status:"] = "Statut:"; +$a->strings["Homepage:"] = "Page personnelle:"; $a->strings["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 :"] = ""; +$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["the bugtracker at github"] = ""; +$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["Contact Photos"] = "Photos du contact"; +$a->strings["Photo Albums"] = "Albums photo"; +$a->strings["Recent Photos"] = "Photos récentes"; +$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; +$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 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["New album name"] = "Nom du nouvel album"; +$a->strings["Caption"] = "Titre"; +$a->strings["Add a Tag"] = "Ajouter une étiquette"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)"; +$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"; +$a->strings["Private photo"] = "Photo privée"; +$a->strings["Public photo"] = "Photo publique"; +$a->strings["Share"] = "Partager"; +$a->strings["Not Extended"] = ""; +$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["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["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."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\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."] = "Des erreurs sont survenues lors de la mise à jour de la base de données."; +$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["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "jamais"; +$a->strings["less than a second ago"] = "il y a moins d'une seconde"; +$a->strings["year"] = "an"; +$a->strings["years"] = "ans"; +$a->strings["month"] = "mois"; +$a->strings["months"] = "mois"; +$a->strings["week"] = "semaine"; +$a->strings["weeks"] = "semaines"; +$a->strings["day"] = "jour"; +$a->strings["days"] = "jours"; +$a->strings["hour"] = "heure"; +$a->strings["hours"] = "heures"; +$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["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["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["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["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["Post to Email"] = "Publier aux courriels"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$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["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["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["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Aucun contact"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacts", +); +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Forums"] = ""; +$a->strings["poke"] = "titiller"; +$a->strings["poked"] = "a titillé"; +$a->strings["ping"] = "attirer l'attention"; +$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["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["default"] = "défaut"; +$a->strings["Select an alternate language"] = "Choisir une langue alternative"; +$a->strings["activity"] = "activité"; +$a->strings["post"] = "publication"; +$a->strings["Item filed"] = "Élément classé"; +$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["Redmatrix"] = ""; +$a->strings[" on Last.fm"] = "sur Last.fm"; +$a->strings["Starts:"] = "Débute:"; +$a->strings["Finishes:"] = "Finit:"; +$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["Conversations on the network"] = ""; +$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."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."; +$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 item."] = "Item invalide."; +$a->strings["Invalid action. "] = "Action invalide."; +$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 \"_\"."] = ""; +$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"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t"; +$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."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s."; +$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"] = "%1\$s a partagé une nouvelle publication sur %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"] = "[Notification Friendica] Une nouvelle personne partage avec vous"; +$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 accepted 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."] = "Vous avez reçu une [url=%1\$s]demande de création de compte[/url] de %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande."; +$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["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"] = "Variations"; diff --git a/view/global.css b/view/global.css index 9bcd30229..c2f584003 100644 --- a/view/global.css +++ b/view/global.css @@ -170,10 +170,45 @@ span.oembed, h4 { margin: 0px 0px 0px 0px; } +code { display: block; background-color: #eee; color: #666; padding:1em; font-size: 0.8em; font-family: monospace; } +key { display: inline; background-color: #eee; color: #666; padding:0.2em; font-size: 0.8em; font-family: monospace; } + /* fields help text */ .field .field_help { clear: left; } /* notifications unseen */ -.notify-unseen { background-color: #cceeFF; } \ No newline at end of file +.notify-unseen { background-color: #cceeFF; } + +/* plain text editor upload/select popup */ + +.fbrowser .path a { padding: 5px; } +.fbrowser .path a:before { content: "/"; padding-right: 5px;} +.fbrowser .folders ul { list-style-type: none; padding-left: 10px;} +.fbrowser .list { height: auto; overflow-y: hidden; margin: 10px 0px; } +.fbrowser.image .photo-album-image-wrapper { float: left; } +.fbrowser.image a img { height: 48px; } +.fbrowser.image a p { display: none;} +.fbrowser.file .photo-album-image-wrapper { float:none; white-space: nowrap; } +.fbrowser.file img { display: inline; } +.fbrowser.file p { display: inline; white-space: nowrap; } +.fbrowser .upload { clear: both; padding-top: 1em;} +.fbrowser .error { background: #ffeeee; border: 1px solid #994444; color: #994444; padding: 0.5em;} +.fbrowser .error a.close { float: right; font-weight: bold; } +.fbrowser .error.hidden { display: none; } + +a { + cursor: pointer; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} diff --git a/view/it/messages.po b/view/it/messages.po index 52863a397..292e417db 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -10,2872 +10,21 @@ # Francesco Apruzzese , 2012-2013 # ufic , 2012 # tuscanhobbit , 2012 +# Sandro Santilli , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-06-30 08:43+0200\n" -"PO-Revision-Date: 2015-06-30 07:01+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" +"POT-Creation-Date: 2015-09-01 07:09+0200\n" +"PO-Revision-Date: 2015-09-01 12:05+0000\n" +"Last-Translator: Sandro Santilli \n" +"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 -msgid "Private Message" -msgstr "Messaggio privato" - -#: object/Item.php:121 mod/settings.php:683 mod/content.php:730 -msgid "Edit" -msgstr "Modifica" - -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 -msgid "Select" -msgstr "Seleziona" - -#: object/Item.php:131 mod/admin.php:1017 mod/photos.php:1673 -#: mod/contacts.php:760 mod/settings.php:684 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 -msgid "Delete" -msgstr "Rimuovi" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "salva nella cartella" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "aggiungi a speciali" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "preferito" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: object/Item.php:214 -msgid "ignored" -msgstr "ignorato" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "aggiungi tag" - -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "mi piace" - -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "non mi piace" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "Condividi questo" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "condividi" - -#: object/Item.php:319 include/conversation.php:665 -msgid "Categories:" -msgstr "Categorie:" - -#: object/Item.php:320 include/conversation.php:666 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: object/Item.php:329 object/Item.php:330 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: object/Item.php:331 mod/content.php:856 -msgid "to" -msgstr "a" - -#: object/Item.php:332 -msgid "via" -msgstr "via" - -#: object/Item.php:333 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: object/Item.php:334 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: object/Item.php:343 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: object/Item.php:364 object/Item.php:680 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:754 -msgid "Comment" -msgstr "Commento" - -#: object/Item.php:367 mod/message.php:334 mod/message.php:565 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Attendi" - -#: object/Item.php:390 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: object/Item.php:392 object/Item.php:405 mod/content.php:607 -#: include/text.php:2004 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: object/Item.php:393 mod/content.php:608 boot.php:755 include/items.php:5133 -#: include/contact_widgets.php:205 -msgid "show more" -msgstr "mostra di più" - -#: object/Item.php:678 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 -msgid "This is you" -msgstr "Questo sei tu" - -#: object/Item.php:681 mod/fsuggest.php:107 mod/message.php:335 -#: mod/message.php:564 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:564 -#: mod/invite.php:140 mod/profiles.php:682 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 -msgid "Submit" -msgstr "Invia" - -#: object/Item.php:682 mod/content.php:713 -msgid "Bold" -msgstr "Grassetto" - -#: object/Item.php:683 mod/content.php:714 -msgid "Italic" -msgstr "Corsivo" - -#: object/Item.php:684 mod/content.php:715 -msgid "Underline" -msgstr "Sottolineato" - -#: object/Item.php:685 mod/content.php:716 -msgid "Quote" -msgstr "Citazione" - -#: object/Item.php:686 mod/content.php:717 -msgid "Code" -msgstr "Codice" - -#: object/Item.php:687 mod/content.php:718 -msgid "Image" -msgstr "Immagine" - -#: object/Item.php:688 mod/content.php:719 -msgid "Link" -msgstr "Link" - -#: object/Item.php:689 mod/content.php:720 -msgid "Video" -msgstr "Video" - -#: object/Item.php:690 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 -msgid "Preview" -msgstr "Anteprima" - -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." - -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "Non trovato" - -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Permesso negato" - -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:38 mod/message.php:174 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:66 -#: mod/api.php:26 mod/api.php:31 mod/photos.php:156 mod/photos.php:1072 -#: mod/register.php:42 mod/attach.php:33 mod/contacts.php:322 mod/follow.php:9 -#: mod/follow.php:42 mod/follow.php:81 mod/uimport.php:23 mod/allfriends.php:9 -#: mod/invite.php:15 mod/invite.php:101 mod/settings.php:20 -#: mod/settings.php:107 mod/settings.php:608 mod/display.php:508 -#: mod/profiles.php:165 mod/profiles.php:614 mod/wall_attach.php:55 -#: mod/suggest.php:58 mod/manage.php:96 mod/delegate.php:12 -#: mod/viewcontacts.php:24 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/group.php:19 -#: mod/regmod.php:110 mod/item.php:170 mod/item.php:186 mod/mood.php:114 -#: mod/network.php:4 mod/crepair.php:120 include/items.php:5022 -msgid "Permission denied." -msgstr "Permesso negato." - -#: index.php:441 -msgid "toggle mobile" -msgstr "commuta tema mobile" - -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:507 include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4236 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:89 mod/display.php:223 mod/community.php:18 -#: mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "Accesso negato." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: mod/dfrn_request.php:839 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: mod/dfrn_request.php:842 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:843 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:844 mod/follow.php:56 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/dfrn_request.php:845 mod/follow.php:57 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: mod/dfrn_request.php:845 mod/api.php:106 mod/register.php:234 -#: mod/follow.php:57 mod/settings.php:1035 mod/settings.php:1041 -#: mod/settings.php:1049 mod/settings.php:1053 mod/settings.php:1058 -#: mod/settings.php:1064 mod/settings.php:1070 mod/settings.php:1076 -#: mod/settings.php:1104 mod/settings.php:1105 mod/settings.php:1106 -#: mod/settings.php:1107 mod/settings.php:1108 mod/profiles.php:657 -#: mod/profiles.php:661 -msgid "No" -msgstr "No" - -#: mod/dfrn_request.php:845 mod/message.php:209 mod/api.php:105 -#: mod/register.php:233 mod/contacts.php:413 mod/follow.php:57 -#: mod/settings.php:1035 mod/settings.php:1041 mod/settings.php:1049 -#: mod/settings.php:1053 mod/settings.php:1058 mod/settings.php:1064 -#: mod/settings.php:1070 mod/settings.php:1076 mod/settings.php:1104 -#: mod/settings.php:1105 mod/settings.php:1106 mod/settings.php:1107 -#: mod/settings.php:1108 mod/profiles.php:657 mod/profiles.php:660 -#: mod/suggest.php:29 include/items.php:4854 -msgid "Yes" -msgstr "Si" - -#: mod/dfrn_request.php:849 mod/follow.php:58 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: mod/dfrn_request.php:851 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:852 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:853 mod/settings.php:761 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/dfrn_request.php:854 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." - -#: mod/dfrn_request.php:855 mod/follow.php:64 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/dfrn_request.php:858 mod/follow.php:67 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/dfrn_request.php:859 mod/message.php:212 mod/editpost.php:148 -#: mod/fbrowser.php:81 mod/fbrowser.php:116 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:416 mod/videos.php:121 -#: mod/follow.php:68 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:622 -#: mod/settings.php:648 mod/suggest.php:32 include/items.php:4857 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "Annulla" - -#: mod/files.php:156 mod/videos.php:373 include/text.php:1429 -msgid "View Video" -msgstr "Guarda Video" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." - -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: mod/notifications.php:35 mod/notifications.php:165 -#: mod/notifications.php:215 -msgid "Discard" -msgstr "Scarta" - -#: mod/notifications.php:51 mod/notifications.php:164 -#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591 -#: mod/contacts.php:758 -msgid "Ignore" -msgstr "Ignora" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: mod/notifications.php:83 include/nav.php:145 -msgid "Network" -msgstr "Rete" - -#: mod/notifications.php:88 mod/network.php:373 -msgid "Personal" -msgstr "Personale" - -#: mod/notifications.php:93 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:148 -msgid "Home" -msgstr "Home" - -#: mod/notifications.php:98 include/nav.php:153 -msgid "Introductions" -msgstr "Presentazioni" - -#: mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: mod/notifications.php:149 mod/notifications.php:199 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: mod/notifications.php:158 mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: mod/notifications.php:158 mod/notifications.php:209 -msgid "if applicable" -msgstr "se applicabile" - -#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015 -msgid "Approve" -msgstr "Approva" - -#: mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: mod/notifications.php:181 -msgid "yes" -msgstr "si" - -#: mod/notifications.php:181 -msgid "no" -msgstr "no" - -#: mod/notifications.php:182 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:185 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:193 -msgid "Friend" -msgstr "Amico" - -#: mod/notifications.php:194 -msgid "Sharer" -msgstr "Condivisore" - -#: mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: mod/notifications.php:200 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: mod/notifications.php:221 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: mod/notifications.php:224 include/nav.php:156 -msgid "Notifications" -msgstr "Notifiche" - -#: mod/notifications.php:262 mod/notifications.php:391 -#: mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: mod/notifications.php:272 mod/notifications.php:401 -#: mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: mod/notifications.php:287 mod/notifications.php:416 -#: mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: mod/notifications.php:294 mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: mod/notifications.php:295 mod/notifications.php:424 -#: mod/notifications.php:517 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: mod/notifications.php:310 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: mod/notifications.php:340 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: mod/notifications.php:344 mod/notify.php:76 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: mod/notifications.php:524 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2000 -#: include/diaspora.php:2106 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "foto" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2106 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "stato" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2122 -#: include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: mod/admin.php:104 mod/admin.php:627 -msgid "Site" -msgstr "Sito" - -#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023 -msgid "Users" -msgstr "Utenti" - -#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62 -msgid "Plugins" -msgstr "Plugin" - -#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367 -msgid "Themes" -msgstr "Temi" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454 -msgid "Logs" -msgstr "Log" - -#: mod/admin.php:124 -msgid "probe address" -msgstr "controlla indirizzo" - -#: mod/admin.php:125 -msgid "check webfinger" -msgstr "verifica webfinger" - -#: mod/admin.php:130 include/nav.php:185 -msgid "Admin" -msgstr "Amministrazione" - -#: mod/admin.php:131 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: mod/admin.php:133 -msgid "diagnostics" -msgstr "diagnostiche" - -#: mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: mod/admin.php:169 mod/admin.php:1062 mod/admin.php:1275 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4813 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: mod/admin.php:193 mod/admin.php:961 -msgid "Normal Account" -msgstr "Account normale" - -#: mod/admin.php:194 mod/admin.php:962 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: mod/admin.php:195 mod/admin.php:963 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: mod/admin.php:196 mod/admin.php:964 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: mod/admin.php:197 -msgid "Blog Account" -msgstr "Account Blog" - -#: mod/admin.php:198 -msgid "Private Forum" -msgstr "Forum Privato" - -#: mod/admin.php:217 -msgid "Message queues" -msgstr "Code messaggi" - -#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111 -#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453 -msgid "Administration" -msgstr "Amministrazione" - -#: mod/admin.php:223 -msgid "Summary" -msgstr "Sommario" - -#: mod/admin.php:225 -msgid "Registered users" -msgstr "Utenti registrati" - -#: mod/admin.php:227 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: mod/admin.php:228 -msgid "Version" -msgstr "Versione" - -#: mod/admin.php:232 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: 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]" - -#: mod/admin.php:524 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: mod/admin.php:553 mod/settings.php:853 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: mod/admin.php:570 -msgid "No community page" -msgstr "Nessuna pagina Comunità" - -#: mod/admin.php:571 -msgid "Public postings from users of this site" -msgstr "Messaggi pubblici dagli utenti di questo sito" - -#: mod/admin.php:572 -msgid "Global community page" -msgstr "Pagina Comunità globale" - -#: mod/admin.php:577 mod/contacts.php:498 -msgid "Never" -msgstr "Mai" - -#: mod/admin.php:578 -msgid "At post arrival" -msgstr "All'arrivo di un messaggio" - -#: mod/admin.php:579 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: mod/admin.php:580 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: mod/admin.php:581 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: mod/admin.php:582 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" - -#: mod/admin.php:587 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: mod/admin.php:610 -msgid "Closed" -msgstr "Chiusa" - -#: mod/admin.php:611 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: mod/admin.php:612 -msgid "Open" -msgstr "Aperta" - -#: mod/admin.php:616 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" - -#: mod/admin.php:617 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: mod/admin.php:618 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" - -#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 -#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 -#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1136 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: mod/admin.php:629 mod/register.php:255 -msgid "Registration" -msgstr "Registrazione" - -#: mod/admin.php:630 -msgid "File upload" -msgstr "Caricamento file" - -#: mod/admin.php:631 -msgid "Policies" -msgstr "Politiche" - -#: mod/admin.php:632 -msgid "Advanced" -msgstr "Avanzate" - -#: mod/admin.php:633 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:634 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." - -#: mod/admin.php:637 -msgid "Site name" -msgstr "Nome del sito" - -#: mod/admin.php:638 -msgid "Host name" -msgstr "Nome host" - -#: mod/admin.php:639 -msgid "Sender Email" -msgstr "Mittente email" - -#: mod/admin.php:640 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:641 -msgid "Shortcut icon" -msgstr "Icona shortcut" - -#: mod/admin.php:642 -msgid "Touch icon" -msgstr "Icona touch" - -#: mod/admin.php:643 -msgid "Additional Info" -msgstr "Informazioni aggiuntive" - -#: mod/admin.php:643 -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." - -#: mod/admin.php:644 -msgid "System language" -msgstr "Lingua di sistema" - -#: mod/admin.php:645 -msgid "System theme" -msgstr "Tema di sistema" - -#: mod/admin.php:645 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" - -#: mod/admin.php:646 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: mod/admin.php:646 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: mod/admin.php:647 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: mod/admin.php:647 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i link generati devono essere forzati a usare SSL" - -#: mod/admin.php:648 -msgid "Force SSL" -msgstr "Forza SSL" - -#: mod/admin.php:648 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" - -#: mod/admin.php:649 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" - -#: mod/admin.php:649 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" - -#: mod/admin.php:650 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: mod/admin.php:650 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." - -#: mod/admin.php:651 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: mod/admin.php:651 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" - -#: mod/admin.php:652 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: mod/admin.php:652 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: mod/admin.php:653 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: mod/admin.php:653 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." - -#: mod/admin.php:654 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" - -#: mod/admin.php:654 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." - -#: mod/admin.php:656 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: mod/admin.php:657 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: mod/admin.php:657 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." - -#: mod/admin.php:658 -msgid "Register text" -msgstr "Testo registrazione" - -#: mod/admin.php:658 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: mod/admin.php:659 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: mod/admin.php:659 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." - -#: mod/admin.php:660 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: mod/admin.php:660 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:661 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: mod/admin.php:661 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:662 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: mod/admin.php:662 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." - -#: mod/admin.php:663 -msgid "Force publish" -msgstr "Forza publicazione" - -#: mod/admin.php:663 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." - -#: mod/admin.php:664 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" - -#: mod/admin.php:664 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." - -#: mod/admin.php:665 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: mod/admin.php:665 -msgid "Allow infinite level threading for items on this site." -msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." - -#: mod/admin.php:666 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: mod/admin.php:666 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." - -#: mod/admin.php:667 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: mod/admin.php:667 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" - -#: mod/admin.php:668 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." - -#: mod/admin.php:668 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" - -#: mod/admin.php:669 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" - -#: mod/admin.php:669 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." - -#: mod/admin.php:670 -msgid "Allow Users to set remote_self" -msgstr "Permetti agli utenti di impostare 'io remoto'" - -#: mod/admin.php:670 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." - -#: mod/admin.php:671 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: mod/admin.php:671 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Non permette all'utente di registrare account extra da usare come pagine." - -#: mod/admin.php:672 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: mod/admin.php:672 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: mod/admin.php:673 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: mod/admin.php:673 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" - -#: mod/admin.php:674 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: mod/admin.php:674 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: mod/admin.php:675 -msgid "Community Page Style" -msgstr "Stile pagina Comunità" - -#: mod/admin.php:675 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." - -#: mod/admin.php:676 -msgid "Posts per user on community page" -msgstr "Messaggi per utente nella pagina Comunità" - -#: mod/admin.php:676 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" - -#: mod/admin.php:677 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: mod/admin.php:677 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." - -#: mod/admin.php:678 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni OStatus" - -#: mod/admin.php:678 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." - -#: mod/admin.php:679 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: mod/admin.php:679 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: mod/admin.php:680 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: mod/admin.php:680 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." - -#: mod/admin.php:681 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: mod/admin.php:681 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." - -#: mod/admin.php:682 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: mod/admin.php:683 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: mod/admin.php:684 -msgid "Network timeout" -msgstr "Timeout rete" - -#: mod/admin.php:684 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." - -#: mod/admin.php:685 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: mod/admin.php:685 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." - -#: mod/admin.php:686 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: mod/admin.php:686 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." - -#: mod/admin.php:687 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: mod/admin.php:687 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." - -#: mod/admin.php:688 -msgid "Maximum Load Average (Frontend)" -msgstr "Media Massimo Carico (Frontend)" - -#: mod/admin.php:688 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." - -#: mod/admin.php:690 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: mod/admin.php:690 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." - -#: mod/admin.php:691 -msgid "Suppress Language" -msgstr "Disattiva lingua" - -#: mod/admin.php:691 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." - -#: mod/admin.php:692 -msgid "Suppress Tags" -msgstr "Sopprimi Tags" - -#: mod/admin.php:692 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Non mostra la lista di hashtag in coda al messaggio" - -#: mod/admin.php:693 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: mod/admin.php:694 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: mod/admin.php:694 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." - -#: mod/admin.php:695 -msgid "Maximum numbers of comments per post" -msgstr "Numero massimo di commenti per post" - -#: mod/admin.php:695 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." - -#: mod/admin.php:696 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: mod/admin.php:697 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: mod/admin.php:698 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: mod/admin.php:699 -msgid "Disable picture proxy" -msgstr "Disabilita il proxy immagini" - -#: mod/admin.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." - -#: mod/admin.php:700 -msgid "Enable old style pager" -msgstr "Abilita la paginazione vecchio stile" - -#: mod/admin.php:700 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." - -#: mod/admin.php:701 -msgid "Only search in tags" -msgstr "Cerca solo nei tag" - -#: mod/admin.php:701 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." - -#: mod/admin.php:703 -msgid "New base url" -msgstr "Nuovo url base" - -#: mod/admin.php:705 -msgid "RINO Encryption" -msgstr "Crittografia RINO" - -#: mod/admin.php:705 -msgid "Encryption layer between nodes." -msgstr "Crittografia delle comunicazioni tra nodi." - -#: mod/admin.php:723 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: mod/admin.php:731 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aggiornamento struttura database %s applicata con successo." - -#: mod/admin.php:734 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Aggiornamento struttura database %s fallita con errore: %s" - -#: mod/admin.php:746 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Esecuzione di %s fallita con errore: %s" - -#: mod/admin.php:749 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: mod/admin.php:753 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." - -#: mod/admin.php:755 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." - -#: mod/admin.php:774 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: mod/admin.php:775 -msgid "Check database structure" -msgstr "Controlla struttura database" - -#: mod/admin.php:780 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: mod/admin.php:781 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." - -#: mod/admin.php:782 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: mod/admin.php:783 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: mod/admin.php:815 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." - -#: mod/admin.php:818 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" - -#: mod/admin.php:850 include/user.php:413 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: mod/admin.php:862 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: mod/admin.php:869 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: mod/admin.php:908 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: mod/admin.php:916 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: mod/admin.php:916 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: mod/admin.php:1009 -msgid "Add User" -msgstr "Aggiungi utente" - -#: mod/admin.php:1010 -msgid "select all" -msgstr "seleziona tutti" - -#: mod/admin.php:1011 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: mod/admin.php:1012 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" - -#: mod/admin.php:1013 -msgid "Request date" -msgstr "Data richiesta" - -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 -#: mod/settings.php:623 mod/settings.php:649 mod/crepair.php:170 -msgid "Name" -msgstr "Nome" - -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - -#: mod/admin.php:1014 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: mod/admin.php:1016 -msgid "Deny" -msgstr "Nega" - -#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 -msgid "Block" -msgstr "Blocca" - -#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 -msgid "Unblock" -msgstr "Sblocca" - -#: mod/admin.php:1020 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: mod/admin.php:1021 -msgid "Account expired" -msgstr "Account scaduto" - -#: mod/admin.php:1024 -msgid "New User" -msgstr "Nuovo Utente" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Register date" -msgstr "Data registrazione" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Last login" -msgstr "Ultimo accesso" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Last item" -msgstr "Ultimo elemento" - -#: mod/admin.php:1025 -msgid "Deleted since" -msgstr "Rimosso da" - -#: mod/admin.php:1026 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: mod/admin.php:1028 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1029 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1039 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." - -#: mod/admin.php:1040 -msgid "Nickname" -msgstr "Nome utente" - -#: mod/admin.php:1040 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." - -#: mod/admin.php:1041 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." - -#: mod/admin.php:1074 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: mod/admin.php:1078 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: mod/admin.php:1088 mod/admin.php:1304 -msgid "Disable" -msgstr "Disabilita" - -#: mod/admin.php:1090 mod/admin.php:1306 -msgid "Enable" -msgstr "Abilita" - -#: mod/admin.php:1113 mod/admin.php:1334 -msgid "Toggle" -msgstr "Inverti" - -#: mod/admin.php:1114 mod/admin.php:1335 mod/newmember.php:22 -#: mod/settings.php:90 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:173 -msgid "Settings" -msgstr "Impostazioni" - -#: mod/admin.php:1121 mod/admin.php:1344 -msgid "Author: " -msgstr "Autore: " - -#: mod/admin.php:1122 mod/admin.php:1345 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: mod/admin.php:1264 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: mod/admin.php:1326 -msgid "Screenshot" -msgstr "Anteprima" - -#: mod/admin.php:1372 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: mod/admin.php:1373 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: mod/admin.php:1400 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: mod/admin.php:1456 -msgid "Clear" -msgstr "Pulisci" - -#: mod/admin.php:1462 -msgid "Enable Debugging" -msgstr "Abilita Debugging" - -#: mod/admin.php:1463 -msgid "Log file" -msgstr "File di Log" - -#: mod/admin.php:1463 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." - -#: mod/admin.php:1464 -msgid "Log level" -msgstr "Livello di Log" - -#: mod/admin.php:1513 mod/contacts.php:587 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: mod/admin.php:1514 include/acl_selectors.php:347 -msgid "Close" -msgstr "Chiudi" - -#: mod/admin.php:1520 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: mod/admin.php:1521 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: mod/admin.php:1522 -msgid "FTP User" -msgstr "Utente FTP" - -#: mod/admin.php:1523 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: mod/message.php:9 include/nav.php:165 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: mod/message.php:63 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: mod/message.php:70 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: mod/message.php:73 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: mod/message.php:76 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: mod/message.php:182 include/nav.php:162 -msgid "Messages" -msgstr "Messaggi" - -#: mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: mod/message.php:227 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: mod/message.php:283 mod/message.php:291 mod/message.php:466 -#: mod/message.php:474 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: mod/message.php:319 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" - -#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" - -#: mod/message.php:329 mod/message.php:558 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: mod/message.php:332 mod/message.php:562 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Carica foto" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Inserisci link" - -#: mod/message.php:371 -msgid "No messages." -msgstr "Nessun messaggio." - -#: mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: mod/message.php:405 mod/message.php:546 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: mod/message.php:450 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: mod/message.php:520 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: mod/message.php:552 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:978 -msgid "Save" -msgstr "Salva" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "link web" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "link video" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "link audio" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "La tua posizione" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:626 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: mod/dfrn_confirm.php:487 include/diaspora.php:622 -#: include/conversation.php:172 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Un evento non puo' finire prima di iniziare." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: mod/events.php:361 include/text.php:1679 include/text.php:1689 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:663 include/nav.php:80 -msgid "Events" -msgstr "Eventi" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Precendente" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Successivo" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Richiesto" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:503 mod/directory.php:152 include/event.php:42 -#: include/identity.php:268 include/bb2diaspora.php:161 -msgid "Location:" -msgstr "Posizione:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: mod/fbrowser.php:25 view/theme/diabook/theme.php:126 -#: include/identity.php:646 include/nav.php:78 -msgid "Photos" -msgstr "Foto" - -#: mod/fbrowser.php:113 -msgid "Files" -msgstr "File" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: mod/nogroup.php:40 mod/contacts.php:573 mod/contacts.php:797 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: mod/nogroup.php:41 mod/contacts.php:798 -msgid "Edit contact" -msgstr "Modifca contatto" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." - -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" - -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: mod/wall_upload.php:122 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" - -#: mod/wall_upload.php:144 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/wall_upload.php:169 mod/wall_upload.php:178 mod/wall_upload.php:185 -#: mod/item.php:486 include/message.php:144 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: mod/wall_upload.php:172 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: mod/photos.php:84 include/identity.php:649 -msgid "Photo Albums" -msgstr "Album foto" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "tutti" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 -#: mod/profile_photo.php:88 mod/profile_photo.php:204 -#: mod/profile_photo.php:296 mod/profile_photo.php:305 -#: view/theme/diabook/theme.php:500 include/user.php:335 include/user.php:342 -#: include/user.php:349 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Permessi" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1171 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1172 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Vedi foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Modifica foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Non ruotare" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Foto privata" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Condividi" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" - -#: mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: 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 "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login." - -#: mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: 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: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: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: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:216 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: 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:252 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: mod/register.php:264 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: 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:266 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: mod/register.php:269 boot.php:1238 include/nav.php:109 -msgid "Register" -msgstr "Registrati" - -#: mod/register.php:275 mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "Importa il tuo profilo in questo server friendica" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." - -#: mod/lostpass.php:109 boot.php:1277 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Reimposta" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Guida:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Guida" - #: mod/contacts.php:114 #, php-format msgid "%d contact edited." @@ -2895,6 +44,31 @@ msgstr "Non riesco a trovare il profilo selezionato." msgid "Contact updated." msgstr "Contatto aggiornato." +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 +#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 +#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5023 index.php:382 +msgid "Permission denied." +msgstr "Permesso negato." + #: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" @@ -2919,10 +93,30 @@ msgstr "Il contatto è stato archiviato" msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: mod/contacts.php:411 mod/contacts.php:754 +#: mod/contacts.php:411 mod/contacts.php:767 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" +#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 +#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 +#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 +#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 +#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 +#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/api.php:105 include/items.php:4855 +msgid "Yes" +msgstr "Si" + +#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 +#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 +#: include/items.php:4858 +msgid "Cancel" +msgstr "Annulla" + #: mod/contacts.php:428 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." @@ -2946,6 +140,10 @@ msgstr "%s sta condividendo con te" msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." +#: mod/contacts.php:498 mod/admin.php:618 +msgid "Never" +msgstr "Mai" + #: mod/contacts.php:502 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" @@ -2974,336 +172,362 @@ msgstr[1] "%d contatti in comune" msgid "View all contacts" msgstr "Vedi tutti i contatti" +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1083 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1082 +msgid "Block" +msgstr "Blocca" + #: mod/contacts.php:524 msgid "Toggle Blocked status" msgstr "Inverti stato \"Blocca\"" -#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 msgid "Unignore" msgstr "Non ignorare" -#: mod/contacts.php:530 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 +msgid "Ignore" +msgstr "Ignora" + +#: mod/contacts.php:531 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" -#: mod/contacts.php:534 mod/contacts.php:759 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Unarchive" msgstr "Dearchivia" -#: mod/contacts.php:534 mod/contacts.php:759 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Archive" msgstr "Archivia" -#: mod/contacts.php:537 +#: mod/contacts.php:539 msgid "Toggle Archive status" msgstr "Inverti stato \"Archiviato\"" -#: mod/contacts.php:540 +#: mod/contacts.php:543 msgid "Repair" msgstr "Ripara" -#: mod/contacts.php:543 +#: mod/contacts.php:546 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: mod/contacts.php:549 +#: mod/contacts.php:553 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: mod/contacts.php:552 +#: mod/contacts.php:556 msgid "Fetch further information for feeds" msgstr "Recupera maggiori infomazioni per i feed" -#: mod/contacts.php:553 +#: mod/contacts.php:557 mod/admin.php:627 msgid "Disabled" msgstr "Disabilitato" -#: mod/contacts.php:553 +#: mod/contacts.php:557 msgid "Fetch information" msgstr "Recupera informazioni" -#: mod/contacts.php:553 +#: mod/contacts.php:557 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: mod/contacts.php:562 +#: mod/contacts.php:566 msgid "Contact Editor" msgstr "Editor dei Contatti" -#: mod/contacts.php:565 +#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:511 mod/content.php:712 mod/install.php:250 +#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 +#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 +#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 +#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 +#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Invia" + +#: mod/contacts.php:569 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: mod/contacts.php:566 +#: mod/contacts.php:570 #, 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:567 +#: mod/contacts.php:571 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: mod/contacts.php:568 +#: mod/contacts.php:572 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: mod/contacts.php:574 +#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: mod/contacts.php:578 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: mod/contacts.php:575 +#: mod/contacts.php:579 msgid "Ignore contact" msgstr "Ignora il contatto" -#: mod/contacts.php:576 +#: mod/contacts.php:580 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: mod/contacts.php:577 +#: mod/contacts.php:581 msgid "View conversations" msgstr "Vedi conversazioni" -#: mod/contacts.php:579 +#: mod/contacts.php:583 msgid "Delete contact" msgstr "Rimuovi contatto" -#: mod/contacts.php:583 +#: mod/contacts.php:587 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: mod/contacts.php:585 +#: mod/contacts.php:589 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: mod/contacts.php:594 +#: mod/contacts.php:591 mod/admin.php:1584 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/contacts.php:598 msgid "Currently blocked" msgstr "Bloccato" -#: mod/contacts.php:595 +#: mod/contacts.php:599 msgid "Currently ignored" msgstr "Ignorato" -#: mod/contacts.php:596 +#: mod/contacts.php:600 msgid "Currently archived" msgstr "Al momento archiviato" -#: mod/contacts.php:597 +#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: mod/contacts.php:601 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: mod/contacts.php:598 +#: mod/contacts.php:602 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: mod/contacts.php:598 +#: mod/contacts.php:602 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:601 +#: mod/contacts.php:605 msgid "Blacklisted keywords" msgstr "Parole chiave in blacklist" -#: mod/contacts.php:601 +#: mod/contacts.php:605 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato" -#: mod/contacts.php:652 +#: mod/contacts.php:612 +msgid "Profile URL" +msgstr "URL Profilo" + +#: mod/contacts.php:658 msgid "Suggestions" msgstr "Suggerimenti" -#: mod/contacts.php:655 +#: mod/contacts.php:661 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: mod/contacts.php:658 mod/group.php:192 +#: mod/contacts.php:665 mod/group.php:192 msgid "All Contacts" msgstr "Tutti i contatti" -#: mod/contacts.php:661 +#: mod/contacts.php:668 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: mod/contacts.php:664 +#: mod/contacts.php:672 msgid "Unblocked" msgstr "Sbloccato" -#: mod/contacts.php:667 +#: mod/contacts.php:675 msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: mod/contacts.php:671 +#: mod/contacts.php:680 msgid "Blocked" msgstr "Bloccato" -#: mod/contacts.php:674 +#: mod/contacts.php:683 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: mod/contacts.php:678 +#: mod/contacts.php:688 msgid "Ignored" msgstr "Ignorato" -#: mod/contacts.php:681 +#: mod/contacts.php:691 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: mod/contacts.php:685 +#: mod/contacts.php:696 msgid "Archived" msgstr "Achiviato" -#: mod/contacts.php:688 +#: mod/contacts.php:699 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: mod/contacts.php:692 +#: mod/contacts.php:704 msgid "Hidden" msgstr "Nascosto" -#: mod/contacts.php:695 +#: mod/contacts.php:707 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: mod/contacts.php:745 view/theme/diabook/theme.php:125 include/nav.php:178 +#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 +#: include/nav.php:186 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Contatti" -#: mod/contacts.php:749 +#: mod/contacts.php:762 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: mod/contacts.php:750 mod/directory.php:63 +#: mod/contacts.php:763 mod/directory.php:63 msgid "Finding: " msgstr "Ricerca: " -#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Trova" -#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647 +#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Aggiorna" -#: mod/contacts.php:773 +#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 +#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 +msgid "Delete" +msgstr "Rimuovi" + +#: mod/contacts.php:786 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: mod/contacts.php:777 +#: mod/contacts.php:790 msgid "is a fan of yours" msgstr "è un tuo fan" -#: mod/contacts.php:781 +#: mod/contacts.php:794 msgid "you are a fan of" msgstr "sei un fan di" -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Vuoi veramente cancellare questo video?" +#: mod/contacts.php:811 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Modifca contatto" -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Rimuovi video" +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Nessun video selezionato" +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Video Recenti" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Amici in comune" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." - -#: mod/follow.php:24 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." - -#: mod/follow.php:106 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: mod/bookmarklet.php:12 boot.php:1263 include/nav.php:92 -msgid "Login" -msgstr "Accedi" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Il messaggio è stato creato" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." - -#: mod/uimport.php:68 +#: mod/manage.php:107 msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" -#: mod/uimport.php:70 -msgid "Account file" -msgstr "File account" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Permesso negato" -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 +#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profilo" -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visibile a" -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Rimuovi" +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 +#: mod/notice.php:15 include/items.php:4814 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/directory.php:35 mod/photos.php:942 +msgid "Public access denied." +msgstr "Accesso negato." + +#: mod/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -3336,6 +560,12 @@ msgid "" " join." msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." +#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 +#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Impostazioni" + #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Vai alle tue Impostazioni" @@ -3355,13 +585,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:529 include/identity.php:610 include/identity.php:639 -#: include/nav.php:77 -msgid "Profile" -msgstr "Profilo" - -#: mod/newmember.php:36 mod/profiles.php:695 mod/profile_photo.php:244 +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" @@ -3500,1392 +724,31 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: mod/search.php:21 mod/network.php:187 -msgid "Remove term" -msgstr "Rimuovi termine" +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." -#: mod/search.php:30 mod/network.php:196 include/features.php:42 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: mod/search.php:99 include/text.php:977 include/nav.php:119 -msgid "Search" -msgstr "Cerca" - -#: mod/search.php:174 mod/community.php:62 mod/community.php:71 -msgid "No results." -msgstr "Nessun risultato." - -#: mod/search.php:180 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" - -#: mod/search.php:182 -#, php-format -msgid "Search results for: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisiciti a noi su Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: mod/invite.php:120 -#, php-format +#: mod/openid.php:53 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." +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." - -#: mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" - -#: mod/settings.php:46 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" - -#: mod/settings.php:51 -msgid "Display" -msgstr "Visualizzazione" - -#: mod/settings.php:57 mod/settings.php:805 -msgid "Social Networks" -msgstr "Social Networks" - -#: mod/settings.php:67 include/nav.php:171 -msgid "Delegations" -msgstr "Delegazioni" - -#: mod/settings.php:72 -msgid "Connected apps" -msgstr "Applicazioni collegate" - -#: mod/settings.php:77 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Esporta dati personali" - -#: mod/settings.php:82 -msgid "Remove account" -msgstr "Rimuovi account" - -#: mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" - -#: mod/settings.php:245 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: mod/settings.php:250 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: mod/settings.php:265 -msgid "Features updated" -msgstr "Funzionalità aggiornate" - -#: mod/settings.php:328 -msgid "Relocate message has been send to your contacts" -msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" - -#: mod/settings.php:342 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: mod/settings.php:347 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: mod/settings.php:355 -msgid "Wrong password." -msgstr "Password sbagliata." - -#: mod/settings.php:366 -msgid "Password changed." -msgstr "Password cambiata." - -#: mod/settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: mod/settings.php:435 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: mod/settings.php:437 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: mod/settings.php:446 -msgid "Wrong Password" -msgstr "Password Sbagliata" - -#: mod/settings.php:451 -msgid " Not valid email." -msgstr " Email non valida." - -#: mod/settings.php:457 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: mod/settings.php:513 -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:517 -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:547 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: mod/settings.php:624 mod/settings.php:650 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:625 mod/settings.php:651 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:626 mod/settings.php:652 -msgid "Redirect" -msgstr "Redirect" - -#: mod/settings.php:627 mod/settings.php:653 -msgid "Icon url" -msgstr "Url icona" - -#: mod/settings.php:638 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: mod/settings.php:681 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: mod/settings.php:685 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: mod/settings.php:686 -msgid "No name" -msgstr "Nessun nome" - -#: mod/settings.php:687 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: mod/settings.php:699 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: mod/settings.php:707 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: mod/settings.php:721 -msgid "Off" -msgstr "Spento" - -#: mod/settings.php:721 -msgid "On" -msgstr "Acceso" - -#: mod/settings.php:729 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: mod/settings.php:739 mod/settings.php:743 -msgid "General Social Media Settings" -msgstr "Impostazioni Media Sociali" - -#: mod/settings.php:749 -msgid "Disable intelligent shortening" -msgstr "Disabilita accorciamento intelligente" - -#: mod/settings.php:751 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica." - -#: mod/settings.php:761 mod/settings.php:762 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" - -#: mod/settings.php:761 mod/settings.php:762 -msgid "enabled" -msgstr "abilitato" - -#: mod/settings.php:761 mod/settings.php:762 -msgid "disabled" -msgstr "disabilitato" - -#: mod/settings.php:762 -msgid "StatusNet" -msgstr "StatusNet" - -#: mod/settings.php:798 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: mod/settings.php:810 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: mod/settings.php:811 -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:812 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: mod/settings.php:814 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: mod/settings.php:815 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: mod/settings.php:816 -msgid "Security:" -msgstr "Sicurezza:" - -#: mod/settings.php:816 mod/settings.php:821 -msgid "None" -msgstr "Nessuna" - -#: mod/settings.php:817 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: mod/settings.php:818 -msgid "Email password:" -msgstr "Password email:" - -#: mod/settings.php:819 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: mod/settings.php:820 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: mod/settings.php:821 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: mod/settings.php:821 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: mod/settings.php:821 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: mod/settings.php:822 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: mod/settings.php:903 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: mod/settings.php:909 mod/settings.php:924 -msgid "Display Theme:" -msgstr "Tema:" - -#: mod/settings.php:910 -msgid "Mobile Theme:" -msgstr "Tema mobile:" - -#: mod/settings.php:911 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: mod/settings.php:911 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: mod/settings.php:912 -msgid "Number of items to display per page:" -msgstr "Numero di elementi da mostrare per pagina:" - -#: mod/settings.php:912 mod/settings.php:913 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: mod/settings.php:913 -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:914 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: mod/settings.php:915 -msgid "Don't show notices" -msgstr "Non mostrare gli avvisi" - -#: mod/settings.php:916 -msgid "Infinite scroll" -msgstr "Scroll infinito" - -#: mod/settings.php:917 -msgid "Automatic updates only at the top of the network page" -msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" - -#: mod/settings.php:994 -msgid "User Types" -msgstr "Tipi di Utenti" - -#: mod/settings.php:995 -msgid "Community Types" -msgstr "Tipi di Comunità" - -#: mod/settings.php:996 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: mod/settings.php:997 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: mod/settings.php:1000 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: mod/settings.php:1001 -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:1004 -msgid "Community Forum/Celebrity Account" -msgstr "Account Celebrità/Forum comunitario" - -#: mod/settings.php:1005 -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:1008 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: mod/settings.php:1009 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: mod/settings.php:1012 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: mod/settings.php:1013 -msgid "Private forum - approved members only" -msgstr "Forum privato - solo membri approvati" - -#: mod/settings.php:1025 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1025 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: mod/settings.php:1035 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: mod/settings.php:1041 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: mod/settings.php:1049 -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:1053 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: mod/settings.php:1053 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" - -#: mod/settings.php:1058 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: mod/settings.php:1064 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: mod/settings.php:1070 -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:1076 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: mod/settings.php:1084 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: mod/settings.php:1087 mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: mod/settings.php:1092 -msgid "Your Identity Address is" -msgstr "L'indirizzo della tua identità è" - -#: mod/settings.php:1101 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" - -#: mod/settings.php:1101 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." - -#: mod/settings.php:1102 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" - -#: mod/settings.php:1103 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" - -#: mod/settings.php:1104 -msgid "Expire posts:" -msgstr "Fai scadere i post:" - -#: mod/settings.php:1105 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" - -#: mod/settings.php:1106 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" - -#: mod/settings.php:1107 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" - -#: mod/settings.php:1108 -msgid "Only expire posts by others:" -msgstr "Fai scadere solo i post degli altri:" - -#: mod/settings.php:1134 -msgid "Account Settings" -msgstr "Impostazioni account" - -#: mod/settings.php:1142 -msgid "Password Settings" -msgstr "Impostazioni password" - -#: mod/settings.php:1143 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/settings.php:1144 -msgid "Confirm:" -msgstr "Conferma:" - -#: mod/settings.php:1144 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" - -#: mod/settings.php:1145 -msgid "Current Password:" -msgstr "Password Attuale:" - -#: mod/settings.php:1145 mod/settings.php:1146 -msgid "Your current password to confirm the changes" -msgstr "La tua password attuale per confermare le modifiche" - -#: mod/settings.php:1146 -msgid "Password:" -msgstr "Password:" - -#: mod/settings.php:1150 -msgid "Basic Settings" -msgstr "Impostazioni base" - -#: mod/settings.php:1151 include/identity.php:538 -msgid "Full Name:" -msgstr "Nome completo:" - -#: mod/settings.php:1152 -msgid "Email Address:" -msgstr "Indirizzo Email:" - -#: mod/settings.php:1153 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: mod/settings.php:1154 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: mod/settings.php:1155 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: mod/settings.php:1158 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: mod/settings.php:1160 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: mod/settings.php:1160 mod/settings.php:1190 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: mod/settings.php:1161 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: mod/settings.php:1162 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: mod/settings.php:1173 -msgid "Default Private Post" -msgstr "Default Post Privato" - -#: mod/settings.php:1174 -msgid "Default Public Post" -msgstr "Default Post Pubblico" - -#: mod/settings.php:1178 -msgid "Default Permissions for New Posts" -msgstr "Permessi predefiniti per i nuovi post" - -#: mod/settings.php:1190 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: mod/settings.php:1193 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: mod/settings.php:1194 -msgid "By default post a status message when:" -msgstr "Invia un messaggio di stato quando:" - -#: mod/settings.php:1195 -msgid "accepting a friend request" -msgstr "accetti una richiesta di amicizia" - -#: mod/settings.php:1196 -msgid "joining a forum/community" -msgstr "ti unisci a un forum/comunità" - -#: mod/settings.php:1197 -msgid "making an interesting profile change" -msgstr "fai un interessante modifica al profilo" - -#: mod/settings.php:1198 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: mod/settings.php:1199 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: mod/settings.php:1200 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: mod/settings.php:1201 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: mod/settings.php:1202 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: mod/settings.php:1203 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: mod/settings.php:1204 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: mod/settings.php:1205 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: mod/settings.php:1206 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un post" - -#: mod/settings.php:1208 -msgid "Activate desktop notifications" -msgstr "Attiva notifiche desktop" - -#: mod/settings.php:1208 -msgid "Show desktop popup on new notifications" -msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" - -#: mod/settings.php:1210 -msgid "Text-only notification emails" -msgstr "Email di notifica in solo testo" - -#: mod/settings.php:1212 -msgid "Send text only notification emails, without the html part" -msgstr "Invia le email di notifica in solo testo, senza la parte in html" - -#: mod/settings.php:1214 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: mod/settings.php:1215 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: mod/settings.php:1218 -msgid "Relocate" -msgstr "Trasloca" - -#: mod/settings.php:1219 -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:1220 -msgid "Resend relocate message to contacts" -msgstr "Reinvia il messaggio di trasloco" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." - -#: mod/dirfind.php:27 -#, php-format -msgid "People Search - %s" -msgstr "Cerca persone - %s" - -#: mod/dirfind.php:62 mod/match.php:73 -msgid "No matches" -msgstr "Nessun risultato" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilo elminato." - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Profilo-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "Stato civile" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Partner romantico" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "Mi piace" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "Non mi piace" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Lavoro/Impiego" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Religione" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Orientamento Politico" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Sesso" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Homepage" - -#: mod/profiles.php:375 mod/profiles.php:694 -msgid "Interests" -msgstr "Interessi" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Indirizzo" - -#: mod/profiles.php:386 mod/profiles.php:690 -msgid "Location" -msgstr "Posizione" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: mod/profiles.php:564 -msgid " and " -msgstr "e " - -#: mod/profiles.php:572 -msgid "public profile" -msgstr "profilo pubblico" - -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: mod/profiles.php:576 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Visita %2$s di %1$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" - -#: mod/profiles.php:654 -msgid "Hide contacts and friends:" -msgstr "Nascondi contatti:" - -#: mod/profiles.php:659 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" - -#: mod/profiles.php:681 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: mod/profiles.php:683 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:684 -msgid "View this profile" -msgstr "Visualizza questo profilo" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: mod/profiles.php:687 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: mod/profiles.php:688 -msgid "Basic information" -msgstr "Informazioni di base" - -#: mod/profiles.php:689 -msgid "Profile picture" -msgstr "Immagine del profilo" - -#: mod/profiles.php:691 -msgid "Preferences" -msgstr "Preferenze" - -#: mod/profiles.php:692 -msgid "Status information" -msgstr "Informazioni stato" - -#: mod/profiles.php:693 -msgid "Additional information" -msgstr "Informazioni aggiuntive" - -#: mod/profiles.php:696 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: mod/profiles.php:697 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: mod/profiles.php:698 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: mod/profiles.php:699 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: mod/profiles.php:700 -msgid "Birthday :" -msgstr "Compleanno:" - -#: mod/profiles.php:701 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: mod/profiles.php:702 -msgid "Locality/City:" -msgstr "Località:" - -#: mod/profiles.php:703 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: mod/profiles.php:704 -msgid "Country:" -msgstr "Nazione:" - -#: mod/profiles.php:705 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: mod/profiles.php:706 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: mod/profiles.php:707 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: mod/profiles.php:708 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:709 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: mod/profiles.php:710 include/identity.php:569 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: mod/profiles.php:711 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: mod/profiles.php:712 include/identity.php:573 -msgid "Hometown:" -msgstr "Paese natale:" - -#: mod/profiles.php:713 include/identity.php:577 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: mod/profiles.php:714 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: mod/profiles.php:715 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: mod/profiles.php:716 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: mod/profiles.php:717 include/identity.php:585 -msgid "Likes:" -msgstr "Mi piace:" - -#: mod/profiles.php:718 include/identity.php:587 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: mod/profiles.php:719 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: mod/profiles.php:720 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" - -#: mod/profiles.php:721 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: mod/profiles.php:722 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: mod/profiles.php:723 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: mod/profiles.php:724 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: mod/profiles.php:725 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: mod/profiles.php:726 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: mod/profiles.php:727 -msgid "Television" -msgstr "Televisione" - -#: mod/profiles.php:728 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: mod/profiles.php:729 -msgid "Love/romance" -msgstr "Amore" - -#: mod/profiles.php:730 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: mod/profiles.php:731 -msgid "School/education" -msgstr "Scuola/educazione" - -#: mod/profiles.php:736 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet." - -#: mod/profiles.php:746 mod/directory.php:129 -msgid "Age: " -msgstr "Età : " - -#: mod/profiles.php:799 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" - -#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:801 include/identity.php:232 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: mod/profiles.php:812 include/identity.php:242 -msgid "Profile Image" -msgstr "Immagine del Profilo" - -#: mod/profiles.php:814 include/identity.php:245 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: mod/profiles.php:815 include/identity.php:246 -msgid "Edit visibility" -msgstr "Modifica visibilità" - -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Esporta account" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Esporta tutto" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:129 -#: include/nav.php:131 -msgid "Community" -msgstr "Comunità" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: mod/wall_attach.php: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/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/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:122 mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visibile a" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: mod/suggest.php:92 mod/match.php:65 include/identity.php:188 -#: include/contact_widgets.php:10 -msgid "Connect" -msgstr "Connetti" - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: mod/delegate.php:130 include/nav.php:171 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Aggiungi" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Nessuna voce." - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nessun contatto." - -#: mod/viewcontacts.php:78 include/text.php:899 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: mod/notes.php:44 include/identity.php:670 -msgid "Personal Notes" -msgstr "Note personali" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Genere:" - -#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 -msgid "Gender:" -msgstr "Genere:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Stato:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 -msgid "About:" -msgstr "Informazioni:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:139 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversione Ora" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." #: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 +#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Foto del profilo" + #: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 #: mod/profile_photo.php:308 #, php-format @@ -4902,6 +765,15 @@ msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nu msgid "Unable to process image" msgstr "Impossibile elaborare l'immagine" +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + #: mod/profile_photo.php:242 msgid "Upload File:" msgstr "Carica un file:" @@ -4914,6 +786,10 @@ msgstr "Seleziona un profilo:" msgid "Upload" msgstr "Carica" +#: mod/profile_photo.php:248 +msgid "or" +msgstr "o" + #: mod/profile_photo.php:248 msgid "skip this step" msgstr "salta questo passaggio" @@ -4938,6 +814,2618 @@ msgstr "Finito" msgid "Image uploaded successfully." msgstr "Immagine caricata con successo." +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2034 include/diaspora.php:2127 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "foto" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "stato" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Rimuovi" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Salva" + +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:58 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/follow.php:59 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 +#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 +#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 +#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "No" + +#: mod/follow.php:60 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: mod/follow.php:66 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/follow.php:69 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/follow.php:108 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 +#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:989 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." + +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: mod/item.php:992 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." + +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." + +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Salva gruppo" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: mod/group.php:190 +msgid "Members" +msgstr "Membri" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:634 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Vuoi veramente cancellare questo video?" + +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Rimuovi video" + +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Nessun video selezionato" + +#: mod/videos.php:298 mod/photos.php:1053 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Guarda Video" + +#: mod/videos.php:380 mod/photos.php:1827 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "clicca qui per entrare" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" + +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" + +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Nessun contatto." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Scarta" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Sistema" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Rete" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Personale" + +#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Home" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Presentazioni" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "se applicabile" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 +msgid "Approve" +msgstr "Approva" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "si" + +#: mod/notifications.php:191 +msgid "no" +msgstr "no" + +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Amico" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Condivisore" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "Posizione:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:581 +msgid "About:" +msgstr "Informazioni:" + +#: mod/notifications.php:224 include/identity.php:575 +msgid "Tags:" +msgstr "Tag:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:540 +msgid "Gender:" +msgstr "Genere:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Notifiche" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Messaggi" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "A:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Oggetto:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Carica foto" + +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Inserisci link" + +#: mod/message.php:335 mod/message.php:566 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Attendi" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Nessun messaggio." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Non duplicare" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 +#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 +#: mod/settings.php:660 +msgid "Name" +msgstr "Nome" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Nome utente" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL dell'utente" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Io remoto" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Accedi" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Cerca persone - %s" + +#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Connetti" + +#: mod/dirfind.php:139 mod/match.php:73 +msgid "No matches" +msgstr "Nessun risultato" + +#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Foto" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "File" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: mod/admin.php:104 mod/admin.php:682 +msgid "Site" +msgstr "Sito" + +#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 +msgid "Users" +msgstr "Utenti" + +#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugin" + +#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 +msgid "Themes" +msgstr "Temi" + +#: mod/admin.php:108 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Ispeziona Coda di invio" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 +msgid "Logs" +msgstr "Log" + +#: mod/admin.php:125 +msgid "probe address" +msgstr "controlla indirizzo" + +#: mod/admin.php:126 +msgid "check webfinger" +msgstr "verifica webfinger" + +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Amministrazione" + +#: mod/admin.php:132 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: mod/admin.php:134 +msgid "diagnostics" +msgstr "diagnostiche" + +#: mod/admin.php:135 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 +#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 +#: mod/admin.php:1524 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Nome Destinatario" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Profilo Destinatario" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Creato" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Ultimo Tentativo" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire." + +#: mod/admin.php:220 mod/admin.php:1025 +msgid "Normal Account" +msgstr "Account normale" + +#: mod/admin.php:221 mod/admin.php:1026 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: mod/admin.php:222 mod/admin.php:1027 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: mod/admin.php:223 mod/admin.php:1028 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Account Blog" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Forum Privato" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Code messaggi" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "Sommario" + +#: mod/admin.php:252 +msgid "Registered users" +msgstr "Utenti registrati" + +#: mod/admin.php:254 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: mod/admin.php:255 +msgid "Version" +msgstr "Versione" + +#: mod/admin.php:260 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: mod/admin.php:283 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: mod/admin.php:565 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: mod/admin.php:594 mod/settings.php:883 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: mod/admin.php:611 +msgid "No community page" +msgstr "Nessuna pagina Comunità" + +#: mod/admin.php:612 +msgid "Public postings from users of this site" +msgstr "Messaggi pubblici dagli utenti di questo sito" + +#: mod/admin.php:613 +msgid "Global community page" +msgstr "Pagina Comunità globale" + +#: mod/admin.php:619 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: mod/admin.php:620 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: mod/admin.php:621 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: mod/admin.php:622 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: mod/admin.php:623 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: mod/admin.php:629 +msgid "Users, Global Contacts" +msgstr "Utenti, Contatti Globali" + +#: mod/admin.php:630 +msgid "Users, Global Contacts/fallback" +msgstr "Utenti, Contatti Globali/fallback" + +#: mod/admin.php:634 +msgid "One month" +msgstr "Un meso" + +#: mod/admin.php:635 +msgid "Three months" +msgstr "Tre mesi" + +#: mod/admin.php:636 +msgid "Half a year" +msgstr "Sei mesi" + +#: mod/admin.php:637 +msgid "One year" +msgstr "Un anno" + +#: mod/admin.php:642 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: mod/admin.php:665 +msgid "Closed" +msgstr "Chiusa" + +#: mod/admin.php:666 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: mod/admin.php:667 +msgid "Open" +msgstr "Aperta" + +#: mod/admin.php:671 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" + +#: mod/admin.php:672 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: mod/admin.php:673 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" + +#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 +#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: mod/admin.php:684 mod/register.php:260 +msgid "Registration" +msgstr "Registrazione" + +#: mod/admin.php:685 +msgid "File upload" +msgstr "Caricamento file" + +#: mod/admin.php:686 +msgid "Policies" +msgstr "Politiche" + +#: mod/admin.php:687 +msgid "Advanced" +msgstr "Avanzate" + +#: mod/admin.php:688 +msgid "Auto Discovered Contact Directory" +msgstr "Elenco Contatti Scoperto Automaticamente" + +#: mod/admin.php:689 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:690 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." + +#: mod/admin.php:693 +msgid "Site name" +msgstr "Nome del sito" + +#: mod/admin.php:694 +msgid "Host name" +msgstr "Nome host" + +#: mod/admin.php:695 +msgid "Sender Email" +msgstr "Mittente email" + +#: mod/admin.php:695 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." + +#: mod/admin.php:696 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:697 +msgid "Shortcut icon" +msgstr "Icona shortcut" + +#: mod/admin.php:697 +msgid "Link to an icon that will be used for browsers." +msgstr "Link verso un'icona che verrà usata dai browsers." + +#: mod/admin.php:698 +msgid "Touch icon" +msgstr "Icona touch" + +#: mod/admin.php:698 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." + +#: mod/admin.php:699 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: mod/admin.php:699 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." + +#: mod/admin.php:700 +msgid "System language" +msgstr "Lingua di sistema" + +#: mod/admin.php:701 +msgid "System theme" +msgstr "Tema di sistema" + +#: mod/admin.php:701 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: mod/admin.php:702 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: mod/admin.php:702 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: mod/admin.php:703 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: mod/admin.php:703 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati devono essere forzati a usare SSL" + +#: mod/admin.php:704 +msgid "Force SSL" +msgstr "Forza SSL" + +#: mod/admin.php:704 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" + +#: mod/admin.php:705 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: mod/admin.php:705 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: mod/admin.php:706 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: mod/admin.php:706 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." + +#: mod/admin.php:707 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: mod/admin.php:707 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" + +#: mod/admin.php:708 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: mod/admin.php:708 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." + +#: mod/admin.php:709 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: mod/admin.php:709 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." + +#: mod/admin.php:710 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: mod/admin.php:710 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." + +#: mod/admin.php:712 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: mod/admin.php:713 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: mod/admin.php:713 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." + +#: mod/admin.php:714 +msgid "Register text" +msgstr "Testo registrazione" + +#: mod/admin.php:714 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: mod/admin.php:715 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: mod/admin.php:715 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." + +#: mod/admin.php:716 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: mod/admin.php:716 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:717 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: mod/admin.php:717 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:718 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: mod/admin.php:718 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." + +#: mod/admin.php:719 +msgid "Force publish" +msgstr "Forza publicazione" + +#: mod/admin.php:719 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." + +#: mod/admin.php:720 +msgid "Global directory update URL" +msgstr "URL aggiornamento Elenco Globale" + +#: mod/admin.php:720 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." + +#: mod/admin.php:721 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: mod/admin.php:721 +msgid "Allow infinite level threading for items on this site." +msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." + +#: mod/admin.php:722 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: mod/admin.php:722 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." + +#: mod/admin.php:723 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: mod/admin.php:723 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" + +#: mod/admin.php:724 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." + +#: mod/admin.php:724 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" + +#: mod/admin.php:725 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: mod/admin.php:725 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." + +#: mod/admin.php:726 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: mod/admin.php:726 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." + +#: mod/admin.php:727 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: mod/admin.php:727 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Non permette all'utente di registrare account extra da usare come pagine." + +#: mod/admin.php:728 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: mod/admin.php:728 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: mod/admin.php:729 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: mod/admin.php:729 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" + +#: mod/admin.php:730 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: mod/admin.php:730 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: mod/admin.php:731 +msgid "Community Page Style" +msgstr "Stile pagina Comunità" + +#: mod/admin.php:731 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." + +#: mod/admin.php:732 +msgid "Posts per user on community page" +msgstr "Messaggi per utente nella pagina Comunità" + +#: mod/admin.php:732 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" + +#: mod/admin.php:733 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: mod/admin.php:733 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." + +#: mod/admin.php:734 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: mod/admin.php:734 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." + +#: mod/admin.php:735 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: mod/admin.php:735 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: mod/admin.php:736 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: mod/admin.php:736 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." + +#: mod/admin.php:737 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: mod/admin.php:737 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." + +#: mod/admin.php:738 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: mod/admin.php:739 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:740 +msgid "Network timeout" +msgstr "Timeout rete" + +#: mod/admin.php:740 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." + +#: mod/admin.php:741 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: mod/admin.php:741 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." + +#: mod/admin.php:742 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: mod/admin.php:742 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." + +#: mod/admin.php:743 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: mod/admin.php:743 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." + +#: mod/admin.php:744 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: mod/admin.php:744 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." + +#: mod/admin.php:746 +msgid "Periodical check of global contacts" +msgstr "Check periodico dei contatti globali" + +#: mod/admin.php:746 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server." + +#: mod/admin.php:747 +msgid "Discover contacts from other servers" +msgstr "Trova contatti dagli altri server" + +#: mod/admin.php:747 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." + +#: mod/admin.php:748 +msgid "Timeframe for fetching global contacts" +msgstr "Termine per il recupero contatti globali" + +#: mod/admin.php:748 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." + +#: mod/admin.php:749 +msgid "Search the local directory" +msgstr "Cerca la directory locale" + +#: mod/admin.php:749 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." + +#: mod/admin.php:751 +msgid "Publish server information" +msgstr "Pubblica informazioni server" + +#: mod/admin.php:751 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." + +#: mod/admin.php:753 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: mod/admin.php:753 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." + +#: mod/admin.php:754 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: mod/admin.php:754 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: mod/admin.php:755 +msgid "Suppress Tags" +msgstr "Sopprimi Tags" + +#: mod/admin.php:755 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Non mostra la lista di hashtag in coda al messaggio" + +#: mod/admin.php:756 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: mod/admin.php:756 +msgid "The item caches buffers generated bbcode and external images." +msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." + +#: mod/admin.php:757 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: mod/admin.php:757 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." + +#: mod/admin.php:758 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" + +#: mod/admin.php:758 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." + +#: mod/admin.php:759 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: mod/admin.php:759 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." + +#: mod/admin.php:760 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: mod/admin.php:760 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." + +#: mod/admin.php:761 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: mod/admin.php:761 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." + +#: mod/admin.php:762 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" + +#: mod/admin.php:762 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." + +#: mod/admin.php:763 +msgid "Enable old style pager" +msgstr "Abilita la paginazione vecchio stile" + +#: mod/admin.php:763 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." + +#: mod/admin.php:764 +msgid "Only search in tags" +msgstr "Cerca solo nei tag" + +#: mod/admin.php:764 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." + +#: mod/admin.php:766 +msgid "New base url" +msgstr "Nuovo url base" + +#: mod/admin.php:766 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." + +#: mod/admin.php:768 +msgid "RINO Encryption" +msgstr "Crittografia RINO" + +#: mod/admin.php:768 +msgid "Encryption layer between nodes." +msgstr "Crittografia delle comunicazioni tra nodi." + +#: mod/admin.php:769 +msgid "Embedly API key" +msgstr "Embedly API key" + +#: mod/admin.php:769 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." + +#: mod/admin.php:787 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: mod/admin.php:795 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." + +#: mod/admin.php:798 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Aggiornamento struttura database %s fallita con errore: %s" + +#: mod/admin.php:810 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" + +#: mod/admin.php:813 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: mod/admin.php:817 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." + +#: mod/admin.php:819 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." + +#: mod/admin.php:838 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: mod/admin.php:839 +msgid "Check database structure" +msgstr "Controlla struttura database" + +#: mod/admin.php:844 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: mod/admin.php:845 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." + +#: mod/admin.php:846 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: mod/admin.php:847 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: mod/admin.php:879 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." + +#: mod/admin.php:882 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" + +#: mod/admin.php:914 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: mod/admin.php:926 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: mod/admin.php:933 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: mod/admin.php:972 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: mod/admin.php:980 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: mod/admin.php:980 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: mod/admin.php:1073 +msgid "Add User" +msgstr "Aggiungi utente" + +#: mod/admin.php:1074 +msgid "select all" +msgstr "seleziona tutti" + +#: mod/admin.php:1075 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: mod/admin.php:1076 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: mod/admin.php:1077 +msgid "Request date" +msgstr "Data richiesta" + +#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: mod/admin.php:1078 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: mod/admin.php:1080 +msgid "Deny" +msgstr "Nega" + +#: mod/admin.php:1084 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: mod/admin.php:1085 +msgid "Account expired" +msgstr "Account scaduto" + +#: mod/admin.php:1088 +msgid "New User" +msgstr "Nuovo Utente" + +#: mod/admin.php:1089 mod/admin.php:1090 +msgid "Register date" +msgstr "Data registrazione" + +#: mod/admin.php:1089 mod/admin.php:1090 +msgid "Last login" +msgstr "Ultimo accesso" + +#: mod/admin.php:1089 mod/admin.php:1090 +msgid "Last item" +msgstr "Ultimo elemento" + +#: mod/admin.php:1089 +msgid "Deleted since" +msgstr "Rimosso da" + +#: mod/admin.php:1090 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1092 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1093 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1103 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: mod/admin.php:1104 +msgid "Nickname" +msgstr "Nome utente" + +#: mod/admin.php:1104 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: mod/admin.php:1105 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: mod/admin.php:1138 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: mod/admin.php:1142 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: mod/admin.php:1152 mod/admin.php:1375 +msgid "Disable" +msgstr "Disabilita" + +#: mod/admin.php:1154 mod/admin.php:1377 +msgid "Enable" +msgstr "Abilita" + +#: mod/admin.php:1177 mod/admin.php:1405 +msgid "Toggle" +msgstr "Inverti" + +#: mod/admin.php:1185 mod/admin.php:1415 +msgid "Author: " +msgstr "Autore: " + +#: mod/admin.php:1186 mod/admin.php:1416 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: mod/admin.php:1335 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: mod/admin.php:1397 +msgid "Screenshot" +msgstr "Anteprima" + +#: mod/admin.php:1443 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: mod/admin.php:1444 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: mod/admin.php:1471 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: mod/admin.php:1527 +msgid "Clear" +msgstr "Pulisci" + +#: mod/admin.php:1533 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: mod/admin.php:1534 +msgid "Log file" +msgstr "File di Log" + +#: mod/admin.php:1534 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." + +#: mod/admin.php:1535 +msgid "Log level" +msgstr "Livello di Log" + +#: mod/admin.php:1585 include/acl_selectors.php:347 +msgid "Close" +msgstr "Chiudi" + +#: mod/admin.php:1591 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: mod/admin.php:1592 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: mod/admin.php:1593 +msgid "FTP User" +msgstr "Utente FTP" + +#: mod/admin.php:1594 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/network.php:187 mod/search.php:25 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: mod/network.php:196 mod/search.php:34 include/features.php:42 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "aggiungi" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:385 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: mod/network.php:466 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." +msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." + +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:532 mod/content.php:119 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/network.php:549 mod/content.php:130 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: mod/network.php:560 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "Contatto: %s" + +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:587 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" + +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Un evento non puo' finire prima di iniziare." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: mod/events.php:396 include/identity.php:667 include/nav.php:80 +#: view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Eventi" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Precendente" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Successivo" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Richiesto" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Descrizione:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: object/Item.php:689 include/conversation.php:1089 +msgid "Preview" +msgstr "Anteprima" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 +#: object/Item.php:130 include/conversation.php:612 +msgid "Select" +msgstr "Seleziona" + +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: mod/content.php:483 mod/content.php:866 object/Item.php:342 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: mod/content.php:605 object/Item.php:389 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: mod/content.php:607 object/Item.php:391 object/Item.php:404 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: mod/content.php:608 boot.php:765 object/Item.php:392 +#: include/contact_widgets.php:205 include/items.php:5134 +msgid "show more" +msgstr "mostra di più" + +#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Messaggio privato" + +#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: mod/content.php:686 object/Item.php:232 +msgid "like" +msgstr "mi piace" + +#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: mod/content.php:687 object/Item.php:233 +msgid "dislike" +msgstr "non mi piace" + +#: mod/content.php:689 object/Item.php:235 +msgid "Share this" +msgstr "Condividi questo" + +#: mod/content.php:689 object/Item.php:235 +msgid "share" +msgstr "condividi" + +#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 object/Item.php:677 +msgid "This is you" +msgstr "Questo sei tu" + +#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 +#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 +msgid "Comment" +msgstr "Commento" + +#: mod/content.php:713 object/Item.php:681 +msgid "Bold" +msgstr "Grassetto" + +#: mod/content.php:714 object/Item.php:682 +msgid "Italic" +msgstr "Corsivo" + +#: mod/content.php:715 object/Item.php:683 +msgid "Underline" +msgstr "Sottolineato" + +#: mod/content.php:716 object/Item.php:684 +msgid "Quote" +msgstr "Citazione" + +#: mod/content.php:717 object/Item.php:685 +msgid "Code" +msgstr "Codice" + +#: mod/content.php:718 object/Item.php:686 +msgid "Image" +msgstr "Immagine" + +#: mod/content.php:719 object/Item.php:687 +msgid "Link" +msgstr "Link" + +#: mod/content.php:720 object/Item.php:688 +msgid "Video" +msgstr "Video" + +#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 +msgid "Edit" +msgstr "Modifica" + +#: mod/content.php:755 object/Item.php:196 +msgid "add star" +msgstr "aggiungi a speciali" + +#: mod/content.php:756 object/Item.php:197 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: mod/content.php:757 object/Item.php:198 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: mod/content.php:760 object/Item.php:201 +msgid "starred" +msgstr "preferito" + +#: mod/content.php:761 object/Item.php:221 +msgid "add tag" +msgstr "aggiungi tag" + +#: mod/content.php:765 object/Item.php:134 +msgid "save to folder" +msgstr "salva nella cartella" + +#: mod/content.php:856 object/Item.php:330 +msgid "to" +msgstr "a" + +#: mod/content.php:857 object/Item.php:332 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: mod/content.php:858 object/Item.php:333 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + #: mod/install.php:119 msgid "Friendica Communications Server - Setup" msgstr "Friendica Comunicazione Server - Impostazioni" @@ -5232,83 +3720,68 @@ msgid "" "poller." msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." -#: mod/p.php:9 -msgid "Not Extended" -msgstr "Not Extended" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Salva gruppo" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: mod/group.php:190 -msgid "Members" -msgstr "Membri" - -#: mod/content.php:119 mod/network.php:526 -msgid "No such group" -msgstr "Nessun gruppo" - -#: mod/content.php:130 mod/network.php:543 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: mod/content.php:135 mod/network.php:554 +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Vedi nel contesto" +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Account approvato." +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." -#: mod/regmod.php:92 +#: mod/wallmessage.php:143 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %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/regmod.php:104 -msgid "Please login." -msgstr "Accedi." +#: mod/help.php:31 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Guida" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Non trovato" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." #: mod/match.php:13 msgid "Profile Match" @@ -5322,40 +3795,1044 @@ msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo p msgid "is interested in:" msgstr "è interessato a:" -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: mod/share.php:38 +msgid "link" +msgstr "collegamento" -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." +#: mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Comunità" -#: mod/item.php:989 +#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +msgid "No results." +msgstr "Nessun risultato." + +#: mod/settings.php:34 mod/photos.php:102 +msgid "everybody" +msgstr "tutti" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Visualizzazione" + +#: mod/settings.php:60 mod/settings.php:835 +msgid "Social Networks" +msgstr "Social Networks" + +#: mod/settings.php:72 include/nav.php:179 +msgid "Delegations" +msgstr "Delegazioni" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Applicazioni collegate" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Esporta dati personali" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Rimuovi account" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Funzionalità aggiornate" + +#: mod/settings.php:339 +msgid "Relocate message has been send to your contacts" +msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" + +#: mod/settings.php:353 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: mod/settings.php:358 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: mod/settings.php:366 +msgid "Wrong password." +msgstr "Password sbagliata." + +#: mod/settings.php:377 +msgid "Password changed." +msgstr "Password cambiata." + +#: mod/settings.php:379 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." + +#: mod/settings.php:446 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." + +#: mod/settings.php:448 +msgid " Name too short." +msgstr " Nome troppo corto." + +#: mod/settings.php:457 +msgid "Wrong Password" +msgstr "Password Sbagliata" + +#: mod/settings.php:462 +msgid " Not valid email." +msgstr " Email non valida." + +#: mod/settings.php:468 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." + +#: mod/settings.php:524 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." + +#: mod/settings.php:528 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." + +#: mod/settings.php:558 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 +msgid "Add application" +msgstr "Aggiungi applicazione" + +#: mod/settings.php:635 mod/settings.php:661 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:636 mod/settings.php:662 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:637 mod/settings.php:663 +msgid "Redirect" +msgstr "Redirect" + +#: mod/settings.php:638 mod/settings.php:664 +msgid "Icon url" +msgstr "Url icona" + +#: mod/settings.php:649 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." + +#: mod/settings.php:692 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" + +#: mod/settings.php:696 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" + +#: mod/settings.php:697 +msgid "No name" +msgstr "Nessun nome" + +#: mod/settings.php:698 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: mod/settings.php:710 +msgid "No Plugin settings configured" +msgstr "Nessun plugin ha impostazioni modificabili" + +#: mod/settings.php:718 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + +#: mod/settings.php:732 +msgid "Off" +msgstr "Spento" + +#: mod/settings.php:732 +msgid "On" +msgstr "Acceso" + +#: mod/settings.php:740 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:750 mod/settings.php:754 +msgid "General Social Media Settings" +msgstr "Impostazioni Media Sociali" + +#: mod/settings.php:760 +msgid "Disable intelligent shortening" +msgstr "Disabilita accorciamento intelligente" + +#: mod/settings.php:762 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica." + +#: mod/settings.php:768 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni" + +#: mod/settings.php:770 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." + +#: mod/settings.php:791 mod/settings.php:792 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: mod/settings.php:791 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:791 mod/settings.php:792 +msgid "enabled" +msgstr "abilitato" + +#: mod/settings.php:791 mod/settings.php:792 +msgid "disabled" +msgstr "disabilitato" + +#: mod/settings.php:792 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:828 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: mod/settings.php:840 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: mod/settings.php:841 +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:842 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" + +#: mod/settings.php:844 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" + +#: mod/settings.php:845 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: mod/settings.php:846 +msgid "Security:" +msgstr "Sicurezza:" + +#: mod/settings.php:846 mod/settings.php:851 +msgid "None" +msgstr "Nessuna" + +#: mod/settings.php:847 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: mod/settings.php:848 +msgid "Email password:" +msgstr "Password email:" + +#: mod/settings.php:849 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: mod/settings.php:850 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: mod/settings.php:851 +msgid "Action after import:" +msgstr "Azione post importazione:" + +#: mod/settings.php:851 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: mod/settings.php:851 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: mod/settings.php:852 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: mod/settings.php:933 +msgid "Display Settings" +msgstr "Impostazioni Grafiche" + +#: mod/settings.php:939 mod/settings.php:955 +msgid "Display Theme:" +msgstr "Tema:" + +#: mod/settings.php:940 +msgid "Mobile Theme:" +msgstr "Tema mobile:" + +#: mod/settings.php:941 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: mod/settings.php:941 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" + +#: mod/settings.php:942 +msgid "Number of items to display per page:" +msgstr "Numero di elementi da mostrare per pagina:" + +#: mod/settings.php:942 mod/settings.php:943 +msgid "Maximum of 100 items" +msgstr "Massimo 100 voci" + +#: mod/settings.php:943 +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:944 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" + +#: mod/settings.php:945 +msgid "Don't show notices" +msgstr "Non mostrare gli avvisi" + +#: mod/settings.php:946 +msgid "Infinite scroll" +msgstr "Scroll infinito" + +#: mod/settings.php:947 +msgid "Automatic updates only at the top of the network page" +msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" + +#: mod/settings.php:949 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Impostazioni tema" + +#: mod/settings.php:1025 +msgid "User Types" +msgstr "Tipi di Utenti" + +#: mod/settings.php:1026 +msgid "Community Types" +msgstr "Tipi di Comunità" + +#: mod/settings.php:1027 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: mod/settings.php:1028 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: mod/settings.php:1031 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: mod/settings.php:1032 +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:1035 +msgid "Community Forum/Celebrity Account" +msgstr "Account Celebrità/Forum comunitario" + +#: mod/settings.php:1036 +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:1039 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: mod/settings.php:1040 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" + +#: mod/settings.php:1043 +msgid "Private Forum [Experimental]" +msgstr "Forum privato [sperimentale]" + +#: mod/settings.php:1044 +msgid "Private forum - approved members only" +msgstr "Forum privato - solo membri approvati" + +#: mod/settings.php:1056 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1056 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: mod/settings.php:1066 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" + +#: mod/settings.php:1072 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" + +#: mod/settings.php:1080 +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:1084 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: mod/settings.php:1084 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" + +#: mod/settings.php:1089 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: mod/settings.php:1095 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di taggare i tuoi messaggi?" + +#: mod/settings.php:1101 +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:1107 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: mod/settings.php:1115 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: mod/settings.php:1123 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "L'indirizzo della tua identità è '%s' or '%s'." + +#: mod/settings.php:1130 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i post automaticamente dopo x giorni:" + +#: mod/settings.php:1130 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: mod/settings.php:1131 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scandenza" + +#: mod/settings.php:1132 +msgid "Advanced Expiration" +msgstr "Scadenza avanzata" + +#: mod/settings.php:1133 +msgid "Expire posts:" +msgstr "Fai scadere i post:" + +#: mod/settings.php:1134 +msgid "Expire personal notes:" +msgstr "Fai scadere le Note personali:" + +#: mod/settings.php:1135 +msgid "Expire starred posts:" +msgstr "Fai scadere i post Speciali:" + +#: mod/settings.php:1136 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" + +#: mod/settings.php:1137 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo i post degli altri:" + +#: mod/settings.php:1163 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: mod/settings.php:1171 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: mod/settings.php:1172 mod/register.php:271 +msgid "New Password:" +msgstr "Nuova password:" + +#: mod/settings.php:1173 mod/register.php:272 +msgid "Confirm:" +msgstr "Conferma:" + +#: mod/settings.php:1173 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: mod/settings.php:1174 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: mod/settings.php:1174 mod/settings.php:1175 +msgid "Your current password to confirm the changes" +msgstr "La tua password attuale per confermare le modifiche" + +#: mod/settings.php:1175 +msgid "Password:" +msgstr "Password:" + +#: mod/settings.php:1179 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: mod/settings.php:1180 include/identity.php:538 +msgid "Full Name:" +msgstr "Nome completo:" + +#: mod/settings.php:1181 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: mod/settings.php:1182 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: mod/settings.php:1183 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: mod/settings.php:1184 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: mod/settings.php:1187 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: mod/settings.php:1189 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: mod/settings.php:1189 mod/settings.php:1219 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: mod/settings.php:1190 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: mod/settings.php:1191 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/settings.php:1202 +msgid "Default Private Post" +msgstr "Default Post Privato" + +#: mod/settings.php:1203 +msgid "Default Public Post" +msgstr "Default Post Pubblico" + +#: mod/settings.php:1207 +msgid "Default Permissions for New Posts" +msgstr "Permessi predefiniti per i nuovi post" + +#: mod/settings.php:1219 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: mod/settings.php:1222 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: mod/settings.php:1223 +msgid "By default post a status message when:" +msgstr "Invia un messaggio di stato quando:" + +#: mod/settings.php:1224 +msgid "accepting a friend request" +msgstr "accetti una richiesta di amicizia" + +#: mod/settings.php:1225 +msgid "joining a forum/community" +msgstr "ti unisci a un forum/comunità" + +#: mod/settings.php:1226 +msgid "making an interesting profile change" +msgstr "fai un interessante modifica al profilo" + +#: mod/settings.php:1227 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: mod/settings.php:1228 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: mod/settings.php:1229 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: mod/settings.php:1230 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: mod/settings.php:1231 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: mod/settings.php:1232 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: mod/settings.php:1233 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: mod/settings.php:1234 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un post" + +#: mod/settings.php:1235 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" + +#: mod/settings.php:1237 +msgid "Activate desktop notifications" +msgstr "Attiva notifiche desktop" + +#: mod/settings.php:1237 +msgid "Show desktop popup on new notifications" +msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" + +#: mod/settings.php:1239 +msgid "Text-only notification emails" +msgstr "Email di notifica in solo testo" + +#: mod/settings.php:1241 +msgid "Send text only notification emails, without the html part" +msgstr "Invia le email di notifica in solo testo, senza la parte in html" + +#: mod/settings.php:1243 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: mod/settings.php:1244 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: mod/settings.php:1247 +msgid "Relocate" +msgstr "Trasloca" + +#: mod/settings.php:1248 +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:1249 +msgid "Resend relocate message to contacts" +msgstr "Reinvia il messaggio di trasloco" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: mod/dfrn_request.php:840 #, php-format msgid "" -"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." +"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/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" -#: mod/item.php:992 +#: mod/dfrn_request.php:846 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." +"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/item.php:996 +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:857 #, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

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

    Puoi cambiare la password dopo il login." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Il tuo nome completo (es. Mario Rossi): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Lascia vuoto per generare automaticamente una password." + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrati" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: mod/search.php:100 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Cerca" + +#: mod/search.php:198 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: mod/search.php:200 +#, php-format +msgid "Search results for: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Elenco globale" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: mod/directory.php:129 mod/profiles.php:747 +msgid "Age: " +msgstr "Età : " + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Genere:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "Stato:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Aggiungi" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Nessuna voce." + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Amici in comune" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" #: mod/mood.php:62 include/conversation.php:226 #, php-format @@ -5370,451 +4847,1073 @@ msgstr "Umore" msgid "Set your current mood and tell your friends" msgstr "Condividi il tuo umore con i tuoi amici" -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Risultato della ricerca per: %s" +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "aggiungi" +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: mod/network.php:364 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: mod/network.php:367 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: mod/network.php:376 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: mod/network.php:382 -msgid "New" -msgstr "Nuovo" - -#: mod/network.php:385 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: mod/network.php:391 -msgid "Shared Links" -msgstr "Links condivisi" - -#: mod/network.php:394 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: mod/network.php:400 -msgid "Starred" -msgstr "Preferiti" - -#: mod/network.php:403 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: mod/network.php:460 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." -msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." - -#: mod/network.php:463 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:572 -#, php-format -msgid "Contact: %s" -msgstr "Contatto: %s" - -#: mod/network.php:576 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:581 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: mod/crepair.php:142 +#: mod/suggest.php:76 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ù" +"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/crepair.php:143 +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilo elminato." + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profilo-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Il nome profilo è obbligatorio ." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Stato civile" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Partner romantico" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Mi piace" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Non mi piace" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Lavoro/Impiego" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Religione" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Orientamento Politico" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Sesso" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Preferenza sessuale" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Homepage" + +#: mod/profiles.php:375 mod/profiles.php:695 +msgid "Interests" +msgstr "Interessi" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Indirizzo" + +#: mod/profiles.php:386 mod/profiles.php:691 +msgid "Location" +msgstr "Posizione" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: mod/profiles.php:565 +msgid " and " +msgstr "e " + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "profilo pubblico" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "Nascondi contatti:" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" + +#: mod/profiles.php:682 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: mod/profiles.php:684 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: mod/profiles.php:685 +msgid "View this profile" +msgstr "Visualizza questo profilo" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "Informazioni di base" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "Immagine del profilo" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "Preferenze" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "Informazioni stato" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "Informazioni aggiuntive" + +#: mod/profiles.php:697 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: mod/profiles.php:698 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: mod/profiles.php:699 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" + +#: mod/profiles.php:700 +msgid "Your Gender:" +msgstr "Il tuo sesso:" + +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "Compleanno:" + +#: mod/profiles.php:702 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: mod/profiles.php:703 +msgid "Locality/City:" +msgstr "Località:" + +#: mod/profiles.php:704 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: mod/profiles.php:705 +msgid "Country:" +msgstr "Nazione:" + +#: mod/profiles.php:706 +msgid "Region/State:" +msgstr "Regione/Stato:" + +#: mod/profiles.php:707 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: mod/profiles.php:708 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: mod/profiles.php:709 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:710 +msgid "Since [date]:" +msgstr "Dal [data]:" + +#: mod/profiles.php:711 include/identity.php:569 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: mod/profiles.php:712 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: mod/profiles.php:713 include/identity.php:573 +msgid "Hometown:" +msgstr "Paese natale:" + +#: mod/profiles.php:714 include/identity.php:577 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: mod/profiles.php:715 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: mod/profiles.php:716 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: mod/profiles.php:717 +msgid "Private Keywords:" +msgstr "Parole chiave private:" + +#: mod/profiles.php:718 include/identity.php:585 +msgid "Likes:" +msgstr "Mi piace:" + +#: mod/profiles.php:719 include/identity.php:587 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: mod/profiles.php:720 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" + +#: mod/profiles.php:721 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" + +#: mod/profiles.php:722 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: mod/profiles.php:723 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: mod/profiles.php:724 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: mod/profiles.php:725 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" + +#: mod/profiles.php:726 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: mod/profiles.php:727 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: mod/profiles.php:728 +msgid "Television" +msgstr "Televisione" + +#: mod/profiles.php:729 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: mod/profiles.php:730 +msgid "Love/romance" +msgstr "Amore" + +#: mod/profiles.php:731 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: mod/profiles.php:732 +msgid "School/education" +msgstr "Scuola/educazione" + +#: mod/profiles.php:737 msgid "" -"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." +"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/crepair.php:149 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" +#: mod/profiles.php:800 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Non duplicare" +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" +#: mod/profiles.php:802 include/identity.php:232 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" +#: mod/profiles.php:813 include/identity.php:242 +msgid "Profile Image" +msgstr "Immagine del Profilo" -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Ricarica dati contatto" +#: mod/profiles.php:815 include/identity.php:245 +msgid "visible to everybody" +msgstr "visibile a tutti" -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Nome utente" +#: mod/profiles.php:816 include/identity.php:246 +msgid "Edit visibility" +msgstr "Modifica visibilità" -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL dell'utente" +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Modifica messaggio" -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "carica foto" -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Allega file" -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "allega file" -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "URL Feed" +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "link web" -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Inserire collegamento video" -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Io remoto" +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "link video" -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" -#: mod/crepair.php:181 +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "link audio" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "La tua posizione" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "posizione" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "canc. pos." + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Scegli un titolo" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:62 msgid "" -"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." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:148 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "Le tue foto" +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "I tuoi eventi" +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: mod/notes.php:44 include/identity.php:675 +msgid "Personal Notes" msgstr "Note personali" -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Pagine Comunitarie" +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversione Ora" -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Profili Comunità" +#: 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/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Ultimi utenti" +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Ora UTC: %s" -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso orario corrente: %s" -#: view/theme/diabook/theme.php:463 include/text.php:1998 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "l'evento" +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locale convertita: %s" -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Ultime foto" +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selezionare il tuo fuso orario:" -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Trova Amici" +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Interessi simili" +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Invita amici" +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Servizi di conessione" +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "non mostrare" +#: 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." -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "mostra" +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" +#: 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." -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/dispy/config.php:72 view/theme/duepuntozero/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Impostazioni tema" +#: mod/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." -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" +#: 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." -#: 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/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." -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" +#: 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." -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Imposta stile" +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" +#: 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:" -#: view/theme/duepuntozero/config.php:44 include/text.php:1734 -#: include/user.php:247 -msgid "default" -msgstr "default" +#: 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" -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" +#: mod/photos.php:84 include/identity.php:651 +msgid "Photo Albums" +msgstr "Album foto" -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Foto recenti" -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album non trovato." -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Varianti" +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Rimuovi album" -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Rimuovi foto" -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Schema colori" +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" +#: mod/photos.php:684 +msgid "a photo" +msgstr "una foto" -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: 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/photos.php:952 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "Rimuovi contatto" +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Carica foto" -#: boot.php:753 +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Permessi" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Foto privata" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Modifica album" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Vedi foto" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Vedi foto" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Modifica foto" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Tag: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Titolo" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Non ruotare" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Foto privata" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Condividi" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Not Extended" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Account approvato." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Accedi." + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "File account" + +#: mod/uimport.php:70 +msgid "" +"To export your 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/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." + +#: boot.php:763 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: boot.php:756 +#: boot.php:766 msgid "show fewer" msgstr "mostra di meno" -#: boot.php:1130 +#: boot.php:1140 #, php-format msgid "Update %s failed. See error logs." msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: boot.php:1237 +#: boot.php:1247 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: boot.php:1262 include/nav.php:73 +#: boot.php:1272 include/nav.php:73 msgid "Logout" msgstr "Esci" -#: boot.php:1265 +#: boot.php:1275 msgid "Nickname or Email address: " msgstr "Nome utente o indirizzo email: " -#: boot.php:1266 +#: boot.php:1276 msgid "Password: " msgstr "Password: " -#: boot.php:1267 +#: boot.php:1277 msgid "Remember me" msgstr "Ricordati di me" -#: boot.php:1270 +#: boot.php:1280 msgid "Or login using OpenID: " msgstr "O entra con OpenID:" -#: boot.php:1276 +#: boot.php:1286 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: boot.php:1279 +#: boot.php:1289 msgid "Website Terms of Service" msgstr "Condizioni di servizio del sito web " -#: boot.php:1280 +#: boot.php:1290 msgid "terms of service" msgstr "condizioni del servizio" -#: boot.php:1282 +#: boot.php:1292 msgid "Website Privacy Policy" msgstr "Politiche di privacy del sito" -#: boot.php:1283 +#: boot.php:1293 msgid "privacy policy" msgstr "politiche di privacy" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "ignora la discussione" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "non ignorare la discussione" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" + +#: object/Item.php:214 +msgid "ignored" +msgstr "ignorato" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Categorie:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" + +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: include/auth.php:128 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." + +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" + +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Interessi simili" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" + +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Invita amici" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Reti" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tutto" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorie" + #: include/features.php:23 msgid "General Features" msgstr "Funzionalità generali" @@ -5952,10 +6051,6 @@ msgstr "Cateorie post" msgid "Add categories to your posts" msgstr "Aggiungi categorie ai tuoi post" -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Permette di archiviare i post in cartelle" @@ -5984,390 +6079,179 @@ msgstr "Silenzia le notifiche di nuovi post" msgid "Ability to mute notifications for a thread" msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." -#: include/auth.php:128 include/user.php:67 +#: include/follow.php:102 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 site is not configured to allow communications with other networks." +msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." -#: include/auth.php:128 include/user.php:67 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." -#: include/event.php:22 include/bb2diaspora.php:145 -msgid "Starts:" -msgstr "Inizia:" +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: include/event.php:32 include/bb2diaspora.php:153 -msgid "Finishes:" -msgstr "Finisce:" +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" -#: include/message.php:15 include/message.php:172 -msgid "[no subject]" -msgstr "[nessun oggetto]" +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." -#: include/Scrape.php:608 -msgid " on Last.fm" -msgstr "su Last.fm" +#: include/follow.php:129 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." -#: include/text.php:299 -msgid "newer" -msgstr "nuovi" +#: include/follow.php:130 +msgid "Use mailto: in front of address to force email check." +msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." -#: include/text.php:301 -msgid "older" -msgstr "vecchi" +#: include/follow.php:136 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." -#: include/text.php:306 -msgid "prev" -msgstr "prec" +#: include/follow.php:146 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." -#: include/text.php:308 -msgid "first" -msgstr "primo" +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." -#: include/text.php:340 -msgid "last" -msgstr "ultimo" +#: include/follow.php:302 +msgid "following" +msgstr "segue" -#: include/text.php:343 -msgid "next" -msgstr "succ" +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "Carico più elementi..." +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" -#: include/text.php:399 -msgid "The end" -msgstr "Fine" +#: include/group.php:226 +msgid "Everybody" +msgstr "Tutti" -#: include/text.php:878 -msgid "No contacts" -msgstr "Nessun contatto" +#: include/group.php:249 +msgid "edit" +msgstr "modifica" -#: include/text.php:887 +#: include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG o MM-GG" + +#: include/datetime.php:256 +msgid "never" +msgstr "mai" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: include/datetime.php:272 +msgid "year" +msgstr "anno" + +#: include/datetime.php:272 +msgid "years" +msgstr "anni" + +#: include/datetime.php:273 +msgid "month" +msgstr "mese" + +#: include/datetime.php:273 +msgid "months" +msgstr "mesi" + +#: include/datetime.php:274 +msgid "week" +msgstr "settimana" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "settimane" + +#: include/datetime.php:275 +msgid "day" +msgstr "giorno" + +#: include/datetime.php:275 +msgid "days" +msgstr "giorni" + +#: include/datetime.php:276 +msgid "hour" +msgstr "ora" + +#: include/datetime.php:276 +msgid "hours" +msgstr "ore" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minuti" + +#: include/datetime.php:278 +msgid "second" +msgstr "secondo" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "secondi" + +#: include/datetime.php:287 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: include/text.php:1027 -msgid "poke" -msgstr "stuzzica" - -#: include/text.php:1027 -msgid "poked" -msgstr "ha stuzzicato" - -#: include/text.php:1028 -msgid "ping" -msgstr "invia un ping" - -#: include/text.php:1028 -msgid "pinged" -msgstr "ha inviato un ping" - -#: include/text.php:1029 -msgid "prod" -msgstr "pungola" - -#: include/text.php:1029 -msgid "prodded" -msgstr "ha pungolato" - -#: include/text.php:1030 -msgid "slap" -msgstr "schiaffeggia" - -#: include/text.php:1030 -msgid "slapped" -msgstr "ha schiaffeggiato" - -#: include/text.php:1031 -msgid "finger" -msgstr "tocca" - -#: include/text.php:1031 -msgid "fingered" -msgstr "ha toccato" - -#: include/text.php:1032 -msgid "rebuff" -msgstr "respingi" - -#: include/text.php:1032 -msgid "rebuffed" -msgstr "ha respinto" - -#: include/text.php:1046 -msgid "happy" -msgstr "felice" - -#: include/text.php:1047 -msgid "sad" -msgstr "triste" - -#: include/text.php:1048 -msgid "mellow" -msgstr "rilassato" - -#: include/text.php:1049 -msgid "tired" -msgstr "stanco" - -#: include/text.php:1050 -msgid "perky" -msgstr "vivace" - -#: include/text.php:1051 -msgid "angry" -msgstr "arrabbiato" - -#: include/text.php:1052 -msgid "stupified" -msgstr "stupefatto" - -#: include/text.php:1053 -msgid "puzzled" -msgstr "confuso" - -#: include/text.php:1054 -msgid "interested" -msgstr "interessato" - -#: include/text.php:1055 -msgid "bitter" -msgstr "risentito" - -#: include/text.php:1056 -msgid "cheerful" -msgstr "giocoso" - -#: include/text.php:1057 -msgid "alive" -msgstr "vivo" - -#: include/text.php:1058 -msgid "annoyed" -msgstr "annoiato" - -#: include/text.php:1059 -msgid "anxious" -msgstr "ansioso" - -#: include/text.php:1060 -msgid "cranky" -msgstr "irritabile" - -#: include/text.php:1061 -msgid "disturbed" -msgstr "disturbato" - -#: include/text.php:1062 -msgid "frustrated" -msgstr "frustato" - -#: include/text.php:1063 -msgid "motivated" -msgstr "motivato" - -#: include/text.php:1064 -msgid "relaxed" -msgstr "rilassato" - -#: include/text.php:1065 -msgid "surprised" -msgstr "sorpreso" - -#: include/text.php:1235 -msgid "Monday" -msgstr "Lunedì" - -#: include/text.php:1235 -msgid "Tuesday" -msgstr "Martedì" - -#: include/text.php:1235 -msgid "Wednesday" -msgstr "Mercoledì" - -#: include/text.php:1235 -msgid "Thursday" -msgstr "Giovedì" - -#: include/text.php:1235 -msgid "Friday" -msgstr "Venerdì" - -#: include/text.php:1235 -msgid "Saturday" -msgstr "Sabato" - -#: include/text.php:1235 -msgid "Sunday" -msgstr "Domenica" - -#: include/text.php:1239 -msgid "January" -msgstr "Gennaio" - -#: include/text.php:1239 -msgid "February" -msgstr "Febbraio" - -#: include/text.php:1239 -msgid "March" -msgstr "Marzo" - -#: include/text.php:1239 -msgid "April" -msgstr "Aprile" - -#: include/text.php:1239 -msgid "May" -msgstr "Maggio" - -#: include/text.php:1239 -msgid "June" -msgstr "Giugno" - -#: include/text.php:1239 -msgid "July" -msgstr "Luglio" - -#: include/text.php:1239 -msgid "August" -msgstr "Agosto" - -#: include/text.php:1239 -msgid "September" -msgstr "Settembre" - -#: include/text.php:1239 -msgid "October" -msgstr "Ottobre" - -#: include/text.php:1239 -msgid "November" -msgstr "Novembre" - -#: include/text.php:1239 -msgid "December" -msgstr "Dicembre" - -#: include/text.php:1461 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1493 include/text.php:1505 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: include/text.php:1746 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" - -#: include/text.php:2002 -msgid "activity" -msgstr "attività" - -#: include/text.php:2005 -msgid "post" -msgstr "messaggio" - -#: include/text.php:2173 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: include/api.php:310 include/api.php:321 include/api.php:430 -#: include/api.php:1133 include/api.php:1135 -msgid "User not found." -msgstr "Utente non trovato." - -#: include/api.php:784 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" - -#: include/api.php:803 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato" - -#: include/api.php:822 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" - -#: include/api.php:1342 -msgid "There is no status with this id." -msgstr "Non c'è nessuno status con questo id." - -#: include/api.php:1416 -msgid "There is no conversation with this id." -msgstr "Non c'è nessuna conversazione con questo id" - -#: include/api.php:1686 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: include/api.php:1697 -msgid "Invalid item." -msgstr "Elemento non valido." - -#: include/api.php:1707 -msgid "Invalid action. " -msgstr "Azione non valida." - -#: include/api.php:1715 -msgid "DB error" -msgstr "Errore database" - -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: include/items.php:2431 include/datetime.php:459 +#: include/datetime.php:459 include/items.php:2432 #, php-format msgid "%s's birthday" msgstr "Compleanno di %s" -#: include/items.php:2432 include/datetime.php:460 +#: include/datetime.php:460 include/items.php:2433 #, php-format msgid "Happy Birthday %s" msgstr "Buon compleanno %s" -#: include/items.php:4852 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" - -#: include/items.php:5127 -msgid "Archives" -msgstr "Archivi" - -#: include/delivery.php:456 include/notifier.php:825 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: include/delivery.php:467 include/notifier.php:835 include/enotify.php:33 -msgid "noreply" -msgstr "nessuna risposta" - -#: include/diaspora.php:705 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" - -#: include/diaspora.php:2539 -msgid "Attachments:" -msgstr "Allegati:" - #: include/identity.php:38 msgid "Requested account is not available." msgstr "L'account richiesto non è disponibile." @@ -6380,7 +6264,7 @@ msgstr "Modifica il profilo" msgid "Message" msgstr "Messaggio" -#: include/identity.php:226 include/nav.php:176 +#: include/identity.php:226 include/nav.php:184 msgid "Profiles" msgstr "Profili" @@ -6445,10 +6329,6 @@ msgstr "Età:" msgid "for %1$d %2$s" msgstr "per %1$d %2$s" -#: include/identity.php:575 -msgid "Tags:" -msgstr "Tag:" - #: include/identity.php:579 msgid "Religion:" msgstr "Religione:" @@ -6497,76 +6377,87 @@ msgstr "Stato" msgid "Status Messages and Posts" msgstr "Messaggi di stato e post" -#: include/identity.php:642 +#: include/identity.php:643 msgid "Profile Details" msgstr "Dettagli del profilo" -#: include/identity.php:653 include/identity.php:656 include/nav.php:79 +#: include/identity.php:656 include/identity.php:659 include/nav.php:79 msgid "Videos" msgstr "Video" -#: include/identity.php:666 +#: include/identity.php:670 msgid "Events and Calendar" msgstr "Eventi e calendario" -#: include/identity.php:673 +#: include/identity.php:678 msgid "Only You Can See This" msgstr "Solo tu puoi vedere questo" -#: include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Invia a email" -#: include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." -#: include/follow.php:60 include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "show" +msgstr "mostra" -#: include/follow.php:82 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "non mostrare" -#: include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[nessun oggetto]" -#: include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." +#: include/Contact.php:119 +msgid "stopped following" +msgstr "tolto dai seguiti" -#: include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" +msgstr "Stuzzica" -#: include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" +msgstr "Visualizza stato" -#: include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "Visualizza profilo" -#: include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "Visualizza foto" -#: include/follow.php:258 -msgid "following" -msgstr "segue" +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "Invia messaggio privato" #: include/security.php:22 msgid "Welcome " @@ -6586,6 +6477,878 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2032 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "l'evento" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "post/elemento" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: include/conversation.php:771 +msgid "remove" +msgstr "rimuovi" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:965 +msgid "and" +msgstr "e" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Post privato" + +#: include/network.php:959 +msgid "view full size" +msgstr "vedi a schermo intero" + +#: include/text.php:299 +msgid "newer" +msgstr "nuovi" + +#: include/text.php:301 +msgid "older" +msgstr "vecchi" + +#: include/text.php:306 +msgid "prev" +msgstr "prec" + +#: include/text.php:308 +msgid "first" +msgstr "primo" + +#: include/text.php:340 +msgid "last" +msgstr "ultimo" + +#: include/text.php:343 +msgid "next" +msgstr "succ" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "Carico più elementi..." + +#: include/text.php:399 +msgid "The end" +msgstr "Fine" + +#: include/text.php:890 +msgid "No contacts" +msgstr "Nessun contatto" + +#: include/text.php:905 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: include/text.php:1003 include/nav.php:122 +msgid "Full Text" +msgstr "Testo Completo" + +#: include/text.php:1004 include/nav.php:123 +msgid "Tags" +msgstr "Tags:" + +#: include/text.php:1008 include/nav.php:127 +msgid "Forums" +msgstr "Forum" + +#: include/text.php:1058 +msgid "poke" +msgstr "stuzzica" + +#: include/text.php:1058 +msgid "poked" +msgstr "ha stuzzicato" + +#: include/text.php:1059 +msgid "ping" +msgstr "invia un ping" + +#: include/text.php:1059 +msgid "pinged" +msgstr "ha inviato un ping" + +#: include/text.php:1060 +msgid "prod" +msgstr "pungola" + +#: include/text.php:1060 +msgid "prodded" +msgstr "ha pungolato" + +#: include/text.php:1061 +msgid "slap" +msgstr "schiaffeggia" + +#: include/text.php:1061 +msgid "slapped" +msgstr "ha schiaffeggiato" + +#: include/text.php:1062 +msgid "finger" +msgstr "tocca" + +#: include/text.php:1062 +msgid "fingered" +msgstr "ha toccato" + +#: include/text.php:1063 +msgid "rebuff" +msgstr "respingi" + +#: include/text.php:1063 +msgid "rebuffed" +msgstr "ha respinto" + +#: include/text.php:1077 +msgid "happy" +msgstr "felice" + +#: include/text.php:1078 +msgid "sad" +msgstr "triste" + +#: include/text.php:1079 +msgid "mellow" +msgstr "rilassato" + +#: include/text.php:1080 +msgid "tired" +msgstr "stanco" + +#: include/text.php:1081 +msgid "perky" +msgstr "vivace" + +#: include/text.php:1082 +msgid "angry" +msgstr "arrabbiato" + +#: include/text.php:1083 +msgid "stupified" +msgstr "stupefatto" + +#: include/text.php:1084 +msgid "puzzled" +msgstr "confuso" + +#: include/text.php:1085 +msgid "interested" +msgstr "interessato" + +#: include/text.php:1086 +msgid "bitter" +msgstr "risentito" + +#: include/text.php:1087 +msgid "cheerful" +msgstr "giocoso" + +#: include/text.php:1088 +msgid "alive" +msgstr "vivo" + +#: include/text.php:1089 +msgid "annoyed" +msgstr "annoiato" + +#: include/text.php:1090 +msgid "anxious" +msgstr "ansioso" + +#: include/text.php:1091 +msgid "cranky" +msgstr "irritabile" + +#: include/text.php:1092 +msgid "disturbed" +msgstr "disturbato" + +#: include/text.php:1093 +msgid "frustrated" +msgstr "frustato" + +#: include/text.php:1094 +msgid "motivated" +msgstr "motivato" + +#: include/text.php:1095 +msgid "relaxed" +msgstr "rilassato" + +#: include/text.php:1096 +msgid "surprised" +msgstr "sorpreso" + +#: include/text.php:1266 +msgid "Monday" +msgstr "Lunedì" + +#: include/text.php:1266 +msgid "Tuesday" +msgstr "Martedì" + +#: include/text.php:1266 +msgid "Wednesday" +msgstr "Mercoledì" + +#: include/text.php:1266 +msgid "Thursday" +msgstr "Giovedì" + +#: include/text.php:1266 +msgid "Friday" +msgstr "Venerdì" + +#: include/text.php:1266 +msgid "Saturday" +msgstr "Sabato" + +#: include/text.php:1266 +msgid "Sunday" +msgstr "Domenica" + +#: include/text.php:1270 +msgid "January" +msgstr "Gennaio" + +#: include/text.php:1270 +msgid "February" +msgstr "Febbraio" + +#: include/text.php:1270 +msgid "March" +msgstr "Marzo" + +#: include/text.php:1270 +msgid "April" +msgstr "Aprile" + +#: include/text.php:1270 +msgid "May" +msgstr "Maggio" + +#: include/text.php:1270 +msgid "June" +msgstr "Giugno" + +#: include/text.php:1270 +msgid "July" +msgstr "Luglio" + +#: include/text.php:1270 +msgid "August" +msgstr "Agosto" + +#: include/text.php:1270 +msgid "September" +msgstr "Settembre" + +#: include/text.php:1270 +msgid "October" +msgstr "Ottobre" + +#: include/text.php:1270 +msgid "November" +msgstr "Novembre" + +#: include/text.php:1270 +msgid "December" +msgstr "Dicembre" + +#: include/text.php:1492 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1524 include/text.php:1536 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: include/text.php:1710 +msgid "View on separate page" +msgstr "Vedi in una pagina separata" + +#: include/text.php:1711 +msgid "view on separate page" +msgstr "vedi in una pagina separata" + +#: include/text.php:1768 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "default" + +#: include/text.php:1780 +msgid "Select an alternate language" +msgstr "Seleziona una diversa lingua" + +#: include/text.php:2036 +msgid "activity" +msgstr "attività" + +#: include/text.php:2039 +msgid "post" +msgstr "messaggio" + +#: include/text.php:2207 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: include/bbcode.php:556 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:590 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Contenuto criptato" + +#: include/notifier.php:830 include/delivery.php:456 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr "su Last.fm" + +#: include/bb2diaspora.php:154 include/event.php:22 +msgid "Starts:" +msgstr "Inizia:" + +#: include/bb2diaspora.php:162 include/event.php:32 +msgid "Finishes:" +msgstr "Finisce:" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: include/nav.php:77 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: include/nav.php:78 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Le tue foto" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "I tuoi video" + +#: include/nav.php:80 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "I tuoi eventi" + +#: include/nav.php:81 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Note personali" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Entra" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Applicazioni" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Elenco" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Elenco delle persone" + +#: include/nav.php:143 +msgid "Information" +msgstr "Informazioni" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Posta privata" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "In arrivo" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Inviati" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Gestisci" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Parametri account" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigazione" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Mappa del sito" + +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1141 include/api.php:1143 +msgid "User not found." +msgstr "Utente non trovato." + +#: include/api.php:795 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:814 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:833 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:1350 +msgid "There is no status with this id." +msgstr "Non c'è nessuno status con questo id." + +#: include/api.php:1424 +msgid "There is no conversation with this id." +msgstr "Non c'è nessuna conversazione con questo id" + +#: include/api.php:1703 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: include/api.php:1713 +msgid "Invalid action. " +msgstr "Azione non valida." + +#: include/api.php:1721 +msgid "DB error" +msgstr "Errore database" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Amici" + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" + +#: include/diaspora.php:717 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:2560 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/items.php:4853 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: include/items.php:5128 +msgid "Archives" +msgstr "Archivi" + #: include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -6730,10 +7493,6 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" -#: include/profile_selectors.php:42 include/user.php:289 include/user.php:293 -msgid "Friends" -msgstr "Amici" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amici con benefici" @@ -6818,457 +7577,6 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" - -#: 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!" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Errore creando l'utente" - -#: include/uimport.php:171 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" - -#: 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" - -#: 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" - -#: include/plugin.php:455 include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: 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." - -#: include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: include/conversation.php:771 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "Stuzzica" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:965 -msgid "and" -msgstr "e" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Post privato" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" - -#: include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:131 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:133 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:133 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:135 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:146 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:153 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:157 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:158 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:162 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:163 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:164 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:168 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:168 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:173 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:176 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:178 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:185 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:189 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:189 -msgid "Site map" -msgstr "Mappa del sito" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connettore Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Notifica Friendica" @@ -7552,299 +7860,212 @@ msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." -#: include/user.php:40 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: include/user.php:45 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: include/user.php:74 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: include/user.php:88 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: include/user.php:90 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: 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)." - -#: 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." - -#: include/user.php:113 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: include/user.php:126 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: 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." - -#: include/user.php:138 include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: 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." - -#: include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: 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." - -#: 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." - -#: 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 "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Invia a email" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: include/bbcode.php:549 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:583 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente messaggio" - -#: include/bbcode.php:1065 include/bbcode.php:1085 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1110 include/bbcode.php:1111 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/oembed.php:224 +#: include/oembed.php:220 msgid "Embedded content" msgstr "Contenuto incorporato" -#: include/oembed.php:233 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "Embed disabilitato" -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" -#: include/group.php:226 -msgid "Everybody" -msgstr "Tutti" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" -#: include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG o MM-GG" - -#: include/datetime.php:256 -msgid "never" -msgstr "mai" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: include/datetime.php:272 -msgid "year" -msgstr "anno" - -#: include/datetime.php:272 -msgid "years" -msgstr "anni" - -#: include/datetime.php:273 -msgid "month" -msgstr "mese" - -#: include/datetime.php:273 -msgid "months" -msgstr "mesi" - -#: include/datetime.php:274 -msgid "week" -msgstr "settimana" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "settimane" - -#: include/datetime.php:275 -msgid "day" -msgstr "giorno" - -#: include/datetime.php:275 -msgid "days" -msgstr "giorni" - -#: include/datetime.php:276 -msgid "hour" -msgstr "ora" - -#: include/datetime.php:276 -msgid "hours" -msgstr "ore" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuti" - -#: include/datetime.php:278 -msgid "second" -msgstr "secondo" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "secondi" - -#: include/datetime.php:287 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" -#: include/network.php:959 -msgid "view full size" -msgstr "vedi a schermo intero" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Errore creando l'utente" -#: include/dbstructure.php:26 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: include/uimport.php:222 #, 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." +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Il messaggio di errore è\n[pre]%s[/pre]" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: index.php:441 +msgid "toggle mobile" +msgstr "commuta tema mobile" -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Schema colori" + +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: 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?" + +#: 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" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Trova Amici" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Ultimi utenti" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Ultime foto" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Imposta stile" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Varianti" diff --git a/view/it/strings.php b/view/it/strings.php index c61250288..3ccaba7f4 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,123 +5,281 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Edit"] = "Modifica"; -$a->strings["Select"] = "Seleziona"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["to"] = "a"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["Comment"] = "Commento"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato", + 1 => "%d contatti modificati", ); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Submit"] = "Invia"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -$a->strings["Suggest Friends"] = "Suggerisci amici"; -$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Contact updated."] = "Contatto aggiornato."; $a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; +$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; +$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; +$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; +$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; +$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; +$a->strings["Yes"] = "Si"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; +$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; +$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; +$a->strings["Never"] = "Mai"; +$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; +$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; +$a->strings["Suggest friends"] = "Suggerisci amici"; +$a->strings["Network type: %s"] = "Tipo di rete: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["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["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; +$a->strings["Disabled"] = "Disabilitato"; +$a->strings["Fetch information"] = "Recupera informazioni"; +$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; +$a->strings["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["Blacklisted keywords"] = "Parole chiave in blacklist"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; +$a->strings["Profile URL"] = "URL Profilo"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; +$a->strings["All Contacts"] = "Tutti i contatti"; +$a->strings["Show all contacts"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Sbloccato"; +$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; +$a->strings["Blocked"] = "Bloccato"; +$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; +$a->strings["Ignored"] = "Ignorato"; +$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; +$a->strings["Archived"] = "Achiviato"; +$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; +$a->strings["Hidden"] = "Nascosto"; +$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Find"] = "Trova"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Delete"] = "Rimuovi"; +$a->strings["Mutual Friendship"] = "Amicizia reciproca"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; +$a->strings["Edit contact"] = "Modifca contatto"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["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["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Image exceeds size limit of %s"] = "La dimensione dell'immagine supera il limite di %s"; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; +$a->strings["Done Editing"] = "Finito"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["Save"] = "Salva"; +$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; $a->strings["Please answer the following:"] = "Rispondi:"; $a->strings["Does %s know you?"] = "%s ti conosce?"; $a->strings["No"] = "No"; -$a->strings["Yes"] = "Si"; $a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; $a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; $a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["View Video"] = "Guarda Video"; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; $a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; $a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; +$a->strings["Delete Video"] = "Rimuovi video"; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; +$a->strings["Suggest Friends"] = "Suggerisci amici"; +$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["%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["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"; @@ -132,7 +290,6 @@ $a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; $a->strings["Notification type: "] = "Tipo di notifica: "; $a->strings["Friend Suggestion"] = "Amico suggerito"; $a->strings["suggested by %s"] = "sugerito da %s"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; $a->strings["if applicable"] = "se applicabile"; $a->strings["Approve"] = "Approva"; @@ -146,6 +303,10 @@ $a->strings["Sharer"] = "Condivisore"; $a->strings["Fan/Admirer"] = "Fan/Ammiratore"; $a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; $a->strings["New Follower"] = "Qualcuno inizia a seguirti"; +$a->strings["Location:"] = "Posizione:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Gender:"] = "Genere:"; $a->strings["No introductions."] = "Nessuna presentazione."; $a->strings["Notifications"] = "Notifiche"; $a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; @@ -161,13 +322,6 @@ $a->strings["No more personal notifications."] = "Nessuna nuova."; $a->strings["Personal Notifications"] = "Notifiche personali"; $a->strings["No more home notifications."] = "Nessuna nuova."; $a->strings["Home Notifications"] = "Notifiche bacheca"; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["Login failed."] = "Accesso fallito."; $a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; $a->strings["Source input: "] = "Sorgente:"; @@ -180,12 +334,79 @@ $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["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["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; +$a->strings["Name"] = "Nome"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; +$a->strings["Login"] = "Accedi"; +$a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["People Search - %s"] = "Cerca persone - %s"; +$a->strings["Connect"] = "Connetti"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Photos"] = "Foto"; +$a->strings["Files"] = "File"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; $a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; $a->strings["Plugins"] = "Plugin"; $a->strings["Themes"] = "Temi"; $a->strings["DB updates"] = "Aggiornamenti Database"; +$a->strings["Inspect Queue"] = "Ispeziona Coda di invio"; $a->strings["Logs"] = "Log"; $a->strings["probe address"] = "controlla indirizzo"; $a->strings["check webfinger"] = "verifica webfinger"; @@ -193,7 +414,13 @@ $a->strings["Admin"] = "Amministrazione"; $a->strings["Plugin Features"] = "Impostazioni Plugins"; $a->strings["diagnostics"] = "diagnostiche"; $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; -$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Nome Destinatario"; +$a->strings["Recipient Profile"] = "Profilo Destinatario"; +$a->strings["Created"] = "Creato"; +$a->strings["Last Tried"] = "Ultimo Tentativo"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire."; $a->strings["Normal Account"] = "Account normale"; $a->strings["Soapbox Account"] = "Account per comunicati e annunci"; $a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; @@ -201,7 +428,6 @@ $a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; $a->strings["Blog Account"] = "Account Blog"; $a->strings["Private Forum"] = "Forum Privato"; $a->strings["Message queues"] = "Code messaggi"; -$a->strings["Administration"] = "Amministrazione"; $a->strings["Summary"] = "Sommario"; $a->strings["Registered users"] = "Utenti registrati"; $a->strings["Pending registrations"] = "Registrazioni in attesa"; @@ -213,12 +439,17 @@ $a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i $a->strings["No community page"] = "Nessuna pagina Comunità"; $a->strings["Public postings from users of this site"] = "Messaggi pubblici dagli utenti di questo sito"; $a->strings["Global community page"] = "Pagina Comunità globale"; -$a->strings["Never"] = "Mai"; $a->strings["At post arrival"] = "All'arrivo di un messaggio"; $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "Ogni ora"; $a->strings["Twice daily"] = "Due volte al dì"; $a->strings["Daily"] = "Giornalmente"; +$a->strings["Users, Global Contacts"] = "Utenti, Contatti Globali"; +$a->strings["Users, Global Contacts/fallback"] = "Utenti, Contatti Globali/fallback"; +$a->strings["One month"] = "Un meso"; +$a->strings["Three months"] = "Tre mesi"; +$a->strings["Half a year"] = "Sei mesi"; +$a->strings["One year"] = "Un anno"; $a->strings["Multi user instance"] = "Istanza multi utente"; $a->strings["Closed"] = "Chiusa"; $a->strings["Requires approval"] = "Richiede l'approvazione"; @@ -231,16 +462,20 @@ $a->strings["Registration"] = "Registrazione"; $a->strings["File upload"] = "Caricamento file"; $a->strings["Policies"] = "Politiche"; $a->strings["Advanced"] = "Avanzate"; +$a->strings["Auto Discovered Contact Directory"] = "Elenco Contatti Scoperto Automaticamente"; $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"] = "Nome host"; $a->strings["Sender Email"] = "Mittente email"; +$a->strings["The email address your server shall use to send notification emails from."] = "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email."; $a->strings["Banner/Logo"] = "Banner/Logo"; $a->strings["Shortcut icon"] = "Icona shortcut"; +$a->strings["Link to an icon that will be used for browsers."] = "Link verso un'icona che verrà usata dai browsers."; $a->strings["Touch icon"] = "Icona touch"; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link verso un'icona che verrà usata dai tablet e i telefonini."; $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["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo."; $a->strings["System language"] = "Lingua di sistema"; $a->strings["System theme"] = "Tema di sistema"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; @@ -325,6 +560,16 @@ $a->strings["Maximum Load Average"] = "Massimo carico medio"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; $a->strings["Maximum Load Average (Frontend)"] = "Media Massimo Carico (Frontend)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."; +$a->strings["Periodical check of global contacts"] = "Check periodico dei contatti globali"; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server."; +$a->strings["Discover contacts from other servers"] = "Trova contatti dagli altri server"; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."; +$a->strings["Timeframe for fetching global contacts"] = "Termine per il recupero contatti globali"; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server."; +$a->strings["Search the local directory"] = "Cerca la directory locale"; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta."; +$a->strings["Publish server information"] = "Pubblica informazioni server"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ."; $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"; @@ -332,13 +577,17 @@ $a->strings["Suppress language information in meta information about a posting." $a->strings["Suppress Tags"] = "Sopprimi Tags"; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Non mostra la lista di hashtag in coda al messaggio"; $a->strings["Path to item cache"] = "Percorso cache elementi"; +$a->strings["The item caches buffers generated bbcode and external images."] = "La cache degli elementi memorizza il bbcode generato e le immagini esterne."; $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."; $a->strings["Maximum numbers of comments per post"] = "Numero massimo di commenti per post"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanti commenti devono essere mostrati per ogni post? Default : 100."; $a->strings["Path for lock file"] = "Percorso al file di lock"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui."; $a->strings["Temp path"] = "Percorso file temporanei"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui."; $a->strings["Base path to installation"] = "Percorso base all'installazione"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot."; $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"] = "Abilita la paginazione vecchio stile"; @@ -346,8 +595,11 @@ $a->strings["The old style pager has page numbers but slows down massively the p $a->strings["Only search in tags"] = "Cerca solo nei tag"; $a->strings["On large systems the text search can slow down the system extremely."] = "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema."; $a->strings["New base url"] = "Nuovo url base"; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti."; $a->strings["RINO Encryption"] = "Crittografia RINO"; $a->strings["Encryption layer between nodes."] = "Crittografia delle comunicazioni tra nodi."; +$a->strings["Embedly API key"] = "Embedly API key"; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale."; $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"; @@ -380,12 +632,9 @@ $a->strings["select all"] = "seleziona tutti"; $a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; $a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva"; $a->strings["Request date"] = "Data richiesta"; -$a->strings["Name"] = "Nome"; $a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; $a->strings["Site admin"] = "Amministrazione sito"; $a->strings["Account expired"] = "Account scaduto"; $a->strings["New User"] = "Nuovo Utente"; @@ -405,7 +654,6 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; $a->strings["Disable"] = "Disabilita"; $a->strings["Enable"] = "Abilita"; $a->strings["Toggle"] = "Inverti"; -$a->strings["Settings"] = "Impostazioni"; $a->strings["Author: "] = "Autore: "; $a->strings["Maintainer: "] = "Manutentore: "; $a->strings["No themes found."] = "Nessun tema trovato."; @@ -418,83 +666,39 @@ $a->strings["Enable Debugging"] = "Abilita Debugging"; $a->strings["Log file"] = "File di Log"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; $a->strings["Log level"] = "Livello di Log"; -$a->strings["Update now"] = "Aggiorna adesso"; $a->strings["Close"] = "Chiudi"; $a->strings["FTP Host"] = "Indirizzo FTP"; $a->strings["FTP Path"] = "Percorso FTP"; $a->strings["FTP User"] = "Utente FTP"; $a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", +$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["add"] = "aggiungi"; +$a->strings["Commented Order"] = "Ordina per commento"; +$a->strings["Sort by Comment Date"] = "Ordina per data commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; +$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; +$a->strings["New"] = "Nuovo"; +$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; +$a->strings["Shared Links"] = "Links condivisi"; +$a->strings["Interesting Links"] = "Link Interessanti"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Messaggi preferiti"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", + 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", ); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["Save"] = "Salva"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["set location"] = "posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: %s"] = "Gruppo: %s"; +$a->strings["Contact: %s"] = "Contatto: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; +$a->strings["Invalid contact."] = "Contatto non valido."; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; $a->strings["Event can not end before it has started."] = "Un evento non puo' finire prima di iniziare."; $a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; $a->strings["l, F j"] = "l j F"; @@ -512,304 +716,136 @@ $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["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Select"] = "Seleziona"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["show more"] = "mostra di più"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Comment"] = "Commento"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Modifica"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; +$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; +$a->strings["Could not create table."] = "Impossibile creare le tabelle."; +$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Database già in uso."; +$a->strings["System check"] = "Controllo sistema"; +$a->strings["Check again"] = "Controlla ancora"; +$a->strings["Database connection"] = "Connessione al database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Nome del database server"; +$a->strings["Database Login Name"] = "Nome utente database"; +$a->strings["Database Login Password"] = "Password utente database"; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; +$a->strings["Site settings"] = "Impostazioni sito"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; +$a->strings["Command line PHP"] = "PHP da riga di comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Versione PHP:"; +$a->strings["PHP cli binary"] = "Binario PHP cli"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; +$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; +$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; +$a->strings["

    What next

    "] = "

    Cosa fare ora

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

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

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

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

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

    What next

    "] = "

    Cosa fare ora

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["Poke/Prod"] = "Tocca/Pungola"; +$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; +$a->strings["Make this post private"] = "Rendi questo post privato"; +$a->strings["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["Contact Photos"] = "Foto dei contatti"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Rimuovi album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; +$a->strings["Delete Photo"] = "Rimuovi foto"; +$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Public Photo"] = "Foto pubblica"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; +$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["View photo"] = "Vedi foto"; +$a->strings["Edit photo"] = "Modifica foto"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["View Full Size"] = "Vedi dimensione intera"; +$a->strings["Tags: "] = "Tag: "; +$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Non ruotare"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["Share"] = "Condividi"; $a->strings["Not Extended"] = "Not Extended"; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Save Group"] = "Salva gruppo"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: %s"] = "Gruppo: %s"; -$a->strings["View in context"] = "Vedi nel contesto"; $a->strings["Account approved."] = "Account approvato."; $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; $a->strings["Please login."] = "Accedi."; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; -$a->strings["add"] = "aggiungi"; -$a->strings["Commented Order"] = "Ordina per commento"; -$a->strings["Sort by Comment Date"] = "Ordina per data commento"; -$a->strings["Posted Order"] = "Ordina per invio"; -$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; -$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = "Link Interessanti"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Messaggi preferiti"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; -$a->strings["Contact: %s"] = "Contatto: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["Refetch contact data"] = "Ricarica dati contatto"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["Remote Self"] = "Io remoto"; -$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["event"] = "l'evento"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["show"] = "mostra"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Theme settings"] = "Impostazioni tema"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set style"] = "Imposta stile"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["default"] = "default"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Varianti"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Drop contact"] = "Rimuovi contatto"; +$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."; @@ -1330,6 +1312,40 @@ $a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web " $a->strings["terms of service"] = "condizioni del servizio"; $a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; $a->strings["privacy policy"] = "politiche di privacy"; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["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"; @@ -1364,7 +1380,6 @@ $a->strings["Tagging"] = "Aggiunta tag"; $a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; $a->strings["Post Categories"] = "Cateorie post"; $a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; $a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; $a->strings["Dislike Posts"] = "Non mi piace"; $a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; @@ -1372,13 +1387,126 @@ $a->strings["Star Posts"] = "Post preferiti"; $a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; $a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; $a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; +$a->strings["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["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["year"] = "anno"; +$a->strings["years"] = "anni"; +$a->strings["month"] = "mese"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["day"] = "giorno"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Network:"] = "Rete:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; +$a->strings["Musical interests:"] = "Interessi musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; $a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings[" on Last.fm"] = "su Last.fm"; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["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["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["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"; @@ -1392,6 +1520,9 @@ $a->strings["%d Contact"] = array( 0 => "%d contatto", 1 => "%d contatti", ); +$a->strings["Full Text"] = "Testo Completo"; +$a->strings["Tags"] = "Tags:"; +$a->strings["Forums"] = "Forum"; $a->strings["poke"] = "stuzzica"; $a->strings["poked"] = "ha stuzzicato"; $a->strings["ping"] = "invia un ping"; @@ -1445,81 +1576,118 @@ $a->strings["November"] = "Novembre"; $a->strings["December"] = "Dicembre"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["View on separate page"] = "Vedi in una pagina separata"; +$a->strings["view on separate page"] = "vedi in una pagina separata"; +$a->strings["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"] = "%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["Redmatrix"] = "Redmatrix"; +$a->strings[" on Last.fm"] = "su Last.fm"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; +$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; +$a->strings["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"] = "Conversazioni nella rete"; +$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."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; $a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"; $a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; $a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; -$a->strings["Invalid request."] = "Richiesta non valida."; $a->strings["Invalid item."] = "Elemento non valido."; $a->strings["Invalid action. "] = "Azione non valida."; $a->strings["DB error"] = "Errore database"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; -$a->strings["Archives"] = "Archivi"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["Friends"] = "Amici"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; $a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; $a->strings["Attachments:"] = "Allegati:"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["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["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; +$a->strings["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"; @@ -1556,7 +1724,6 @@ $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"; @@ -1578,120 +1745,6 @@ $a->strings["Uncertain"] = "Incerto"; $a->strings["It's complicated"] = "E' complicato"; $a->strings["Don't care"] = "Non interessa"; $a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; -$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["permissions"] = "permessi"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Your 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 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"] = "Conversazioni nella rete"; -$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["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["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; @@ -1749,64 +1802,55 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "H $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", 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\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; $a->strings["Embedded content"] = "Contenuto incorporato"; $a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["year"] = "anno"; -$a->strings["years"] = "anni"; -$a->strings["month"] = "mese"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["day"] = "giorno"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["view full size"] = "vedi a schermo intero"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Varianti"; diff --git a/view/nl/messages.po b/view/nl/messages.po index df4726983..52608625e 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -14,5358 +14,2374 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-04 17:54+0200\n" -"PO-Revision-Date: 2015-05-18 10:07+0000\n" +"POT-Creation-Date: 2015-07-08 13:18+0200\n" +"PO-Revision-Date: 2015-07-14 10:17+0000\n" "Last-Translator: Karel Vandecandelaere \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/friendica/language/nl/)\n" +"Language-Team: Dutch (http://www.transifex.com/p/friendica/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:56 -#: ../../view/theme/duepuntozero/config.php:59 -#: ../../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:492 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1203 -#: ../../mod/photos.php:1514 ../../mod/photos.php:1565 -#: ../../mod/photos.php:1609 ../../mod/photos.php:1697 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:686 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:186 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Opslaan" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:58 -#: ../../view/theme/duepuntozero/config.php:61 -#: ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Stel lettergrootte voor berichten en reacties in" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stel breedte van het thema in" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Kleurschema" - -#: ../../view/theme/vier/config.php:59 -msgid "Set style" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719 -#: ../../include/user.php:247 -msgid "default" -msgstr "standaard" - -#: ../../view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "" - -#: ../../view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335 -msgid "don't show" -msgstr "niet tonen" - -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334 -msgid "show" -msgstr "tonen" - -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Stel lijnhoogte voor berichten en reacties in" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Stel resolutie in voor de middelste kolom. " - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Stel kleurenschema in" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../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 "Forum/groepspagina'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" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Forum/groepsprofielen" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Diensten verbinden" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Zoek vrienden" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Laatste gebruikers" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Laatste foto's" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Recent leuk gevonden" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Tijdlijn" - -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133 -#: ../../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 "Profiel" - -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Jouw profiel pagina" - -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177 -#: ../../mod/contacts.php:718 -msgid "Contacts" -msgstr "Contacten" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Jouw contacten" - -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" - -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Jouw foto's" - -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Gebeurtenissen" - -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Jouw gebeurtenissen" - -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Persoonlijke nota's" - -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Jouw persoonlijke foto's" - -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../mod/community.php:32 -msgid "Community" -msgstr "Website" - -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:245 ../../include/text.php:1983 -msgid "event" -msgstr "gebeurtenis" - -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -#: ../../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:2011 -#: ../../include/conversation.php:126 ../../include/conversation.php:253 -#: ../../include/text.php:1985 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "foto" - -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027 -#: ../../include/conversation.php:137 ../../mod/like.php:166 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s leuk" - -#: ../../view/theme/diabook/theme.php:499 ../../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 -msgid "Contact Photos" -msgstr "Contactfoto's" - -#: ../../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:1187 -#: ../../mod/photos.php:1210 ../../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 "Profielfoto's" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokale gids" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Globale gids" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Dezelfde interesses" - -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:68 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172 -#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Instellingen" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Uitlijning" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Gecentreerd" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Lettergrootte berichten" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Lettergrootte tekstgebieden" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stel kleurschema in" - -#: ../../index.php:211 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " - -#: ../../index.php:255 ../../mod/help.php:42 -msgid "Not Found" -msgstr "Niet gevonden" - -#: ../../index.php:258 ../../mod/help.php:45 -msgid "Page not found." -msgstr "Pagina niet gevonden" - -#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Toegang geweigerd" - -#: ../../index.php:368 ../../include/items.php:4815 ../../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:12 -#: ../../mod/notifications.php:66 ../../mod/settings.php:20 -#: ../../mod/settings.php:107 ../../mod/settings.php:606 -#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:24 ../../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:165 ../../mod/profiles.php:618 -#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135 -#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:169 ../../mod/item.php:185 -#: ../../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 "Toegang geweigerd" - -#: ../../index.php:427 -msgid "toggle mobile" -msgstr "mobiel thema omwisselen" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:30 -#, php-format -msgid "Do you wish to confirm your identity (%s) with %s" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:43 -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Bevestig" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:44 -msgid "Do not confirm" -msgstr "Bevestig niet" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:48 -msgid "Trust This Site" -msgstr "Vertrouw deze website" - -#: ../../addon-wrk/openidserver/lib/render/trust.php:53 -msgid "No Identifier Sent" -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5 -msgid "Requested identity don't match logged in user." -msgstr "" - -#: ../../addon-wrk/openidserver/lib/render.php:27 -#, php-format -msgid "Please wait; you are being redirected to <%s>" -msgstr "" - -#: ../../boot.php:749 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" - -#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 -#: ../../mod/photos.php:1696 ../../mod/content.php:709 -msgid "Comment" -msgstr "Reacties" - -#: ../../boot.php:751 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "toon meer" - -#: ../../boot.php:752 -msgid "show fewer" -msgstr "Minder tonen" - -#: ../../boot.php:1122 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." - -#: ../../boot.php:1229 -msgid "Create a New Account" -msgstr "Nieuwe account aanmaken" - -#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269 -msgid "Register" -msgstr "Registreer" - -#: ../../boot.php:1254 ../../include/nav.php:73 -msgid "Logout" -msgstr "Uitloggen" - -#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12 -msgid "Login" -msgstr "Login" - -#: ../../boot.php:1257 -msgid "Nickname or Email address: " -msgstr "Bijnaam of e-mailadres:" - -#: ../../boot.php:1258 -msgid "Password: " -msgstr "Wachtwoord:" - -#: ../../boot.php:1259 -msgid "Remember me" -msgstr "Onthou me" - -#: ../../boot.php:1262 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" - -#: ../../boot.php:1268 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" - -#: ../../boot.php:1269 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Wachtwoord opnieuw instellen" - -#: ../../boot.php:1271 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" - -#: ../../boot.php:1272 -msgid "terms of service" -msgstr "servicevoorwaarden" - -#: ../../boot.php:1274 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" - -#: ../../boot.php:1275 -msgid "privacy policy" -msgstr "privacybeleid" - -#: ../../boot.php:1408 -msgid "Requested account is not available." -msgstr "Gevraagde account is niet beschikbaar." - -#: ../../boot.php:1447 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Gevraagde profiel is niet beschikbaar." - -#: ../../boot.php:1490 ../../boot.php:1624 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Bewerk profiel" - -#: ../../boot.php:1557 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:90 ../../mod/match.php:58 -msgid "Connect" -msgstr "Verbinden" - -#: ../../boot.php:1589 -msgid "Message" -msgstr "Bericht" - -#: ../../boot.php:1595 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profielen" - -#: ../../boot.php:1595 -msgid "Manage/edit profiles" -msgstr "Beheer/wijzig profielen" - -#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804 -msgid "Change profile photo" -msgstr "Profiel foto wijzigen" - -#: ../../boot.php:1601 ../../mod/profiles.php:805 -msgid "Create New Profile" -msgstr "Maak nieuw profiel" - -#: ../../boot.php:1611 ../../mod/profiles.php:816 -msgid "Profile Image" -msgstr "Profiel afbeelding" - -#: ../../boot.php:1614 ../../mod/profiles.php:818 -msgid "visible to everybody" -msgstr "zichtbaar voor iedereen" - -#: ../../boot.php:1615 ../../mod/profiles.php:819 -msgid "Edit visibility" -msgstr "Pas zichtbaarheid aan" - -#: ../../boot.php:1637 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Plaats:" - -#: ../../boot.php:1639 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../boot.php:1642 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Tijdlijn:" - -#: ../../boot.php:1644 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Website:" - -#: ../../boot.php:1646 ../../include/profile_advanced.php:58 -#: ../../mod/directory.php:144 -msgid "About:" -msgstr "Over:" - -#: ../../boot.php:1711 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1743 ../../boot.php:1829 -msgid "g A l F d" -msgstr "G l j F" - -#: ../../boot.php:1744 ../../boot.php:1830 -msgid "F d" -msgstr "d F" - -#: ../../boot.php:1789 ../../boot.php:1877 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../boot.php:1801 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: ../../boot.php:1802 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: ../../boot.php:1864 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: ../../boot.php:1888 -msgid "Event Reminders" -msgstr "Gebeurtenisherinneringen" - -#: ../../boot.php:1889 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: ../../boot.php:2126 ../../include/nav.php:76 -msgid "Status" -msgstr "Tijdlijn" - -#: ../../boot.php:2129 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: ../../boot.php:2136 -msgid "Profile Details" -msgstr "Profieldetails" - -#: ../../boot.php:2143 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79 -msgid "Videos" -msgstr "Video's" - -#: ../../boot.php:2160 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: ../../boot.php:2164 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - -#: ../../boot.php:2167 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Tekstverwerker met opmaak" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Voorvertoning bericht" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Zijbalkwidgets op netwerkpagina" - -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Zoeken op datum" - -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" - -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Groepsfilter" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" - -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Netwerkfilter" - -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" - -#: ../../include/features.php:42 ../../mod/network.php:194 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" - -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Netwerktabs" - -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Bericht-/reactiehulpmiddelen" - -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Meervoudige verwijdering" - -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" - -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties na verzending" - -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Labelen" - -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Bewaarde Mappen" - -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen te bewaren" - -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" - -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" - -#: ../../include/items.php:2307 ../../include/datetime.php:477 -#, php-format -msgid "%s's birthday" -msgstr "%s's verjaardag" - -#: ../../include/items.php:2308 ../../include/datetime.php:478 -#, php-format -msgid "Happy Birthday %s" -msgstr "Gefeliciteerd %s" - -#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Naam achtergehouden]" - -#: ../../include/items.php:4619 ../../mod/admin.php:169 -#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284 -#: ../../mod/display.php:503 -msgid "Item not found." -msgstr "Item niet gevonden." - -#: ../../include/items.php:4658 -msgid "Do you really want to delete this item?" -msgstr "Wil je echt dit item verwijderen?" - -#: ../../include/items.php:4660 ../../mod/settings.php:1015 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1029 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1038 -#: ../../mod/settings.php:1044 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1056 ../../mod/settings.php:1086 -#: ../../mod/settings.php:1087 ../../mod/settings.php:1088 -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 -#: ../../mod/contacts.php:341 ../../mod/register.php:233 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 -msgid "Yes" -msgstr "Ja" - -#: ../../include/items.php:4663 ../../include/conversation.php:1128 -#: ../../mod/settings.php:620 ../../mod/settings.php:646 -#: ../../mod/contacts.php:344 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:844 ../../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 "Annuleren" - -#: ../../include/items.php:4881 -msgid "Archives" -msgstr "Archieven" - -#: ../../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 "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Iedereen" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "verander" - -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Groepen" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Verander groep" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Maak nieuwe groep" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "" - -#: ../../include/group.php:275 ../../mod/network.php:195 -msgid "add" -msgstr "toevoegen" - -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:933 ../../include/Photo.php:948 -#: ../../include/Photo.php:955 ../../include/Photo.php:977 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:485 -msgid "Wall Photos" -msgstr "" - -#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Nieuw Contact toevoegen" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Voeg een webadres of -locatie in:" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" - -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Zoek mensen" - -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" - -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeelden: Jan Peeters, Vissen" - -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Zoek" - -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Willekeurig Profiel" - -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netwerken" - -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle netwerken" - -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorieën" - -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gedeeld contact" -msgstr[1] "%d gedeelde contacten" - -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Notificatie" - -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Bedankt" - -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Beheerder" - -#: ../../include/enotify.php:33 ../../include/delivery.php:467 -#: ../../include/notifier.php:796 -msgid "noreply" -msgstr "geen reactie" - -#: ../../include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:68 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" - -#: ../../include/enotify.php:70 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s sent you a new private message at %2$s." - -#: ../../include/enotify.php:71 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s stuurde jou %2$s." - -#: ../../include/enotify.php:71 -msgid "a private message" -msgstr "een prive bericht" - -#: ../../include/enotify.php:72 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:124 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" - -#: ../../include/enotify.php:139 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" - -#: ../../include/enotify.php:149 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:150 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." - -#: ../../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 "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." - -#: ../../include/enotify.php:160 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:162 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../include/enotify.php:164 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: ../../include/enotify.php:175 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificatie] %s heeft jou genoemd" - -#: ../../include/enotify.php:176 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s heeft jou in %2$s genoemd" - -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." - -#: ../../include/enotify.php:188 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: ../../include/enotify.php:190 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: ../../include/enotify.php:202 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" - -#: ../../include/enotify.php:203 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s heeft jou aangestoten op %2$s" - -#: ../../include/enotify.php:204 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." +#: object/Item.php:95 +msgid "This entry was edited" msgstr "" -#: ../../include/enotify.php:219 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" - -#: ../../include/enotify.php:220 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s heeft jouw bericht gelabeld in %2$s" - -#: ../../include/enotify.php:221 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" - -#: ../../include/enotify.php:232 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" - -#: ../../include/enotify.php:233 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" - -#: ../../include/enotify.php:234 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." - -#: ../../include/enotify.php:237 ../../include/enotify.php:279 -#, php-format -msgid "You may visit their profile at %s" -msgstr "U kunt hun profiel bezoeken op %s" - -#: ../../include/enotify.php:239 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bezoek %s om het verzoek goed of af te keuren." - -#: ../../include/enotify.php:247 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: ../../include/enotify.php:248 ../../include/enotify.php:249 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: ../../include/enotify.php:255 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: ../../include/enotify.php:256 ../../include/enotify.php:257 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:271 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: ../../include/enotify.php:277 -msgid "Name:" -msgstr "Naam:" - -#: ../../include/enotify.php:278 -msgid "Photo:" -msgstr "Foto: " - -#: ../../include/enotify.php:281 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:289 ../../include/enotify.php:302 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: ../../include/enotify.php:290 ../../include/enotify.php:303 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" - -#: ../../include/enotify.php:291 ../../include/enotify.php:304 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: ../../include/enotify.php:294 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../include/enotify.php:322 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: ../../include/enotify.php:323 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:324 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: ../../include/enotify.php:327 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: ../../include/enotify.php:330 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: ../../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 "Gebruiker niet gevonden" - -#: ../../include/api.php:770 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:789 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: ../../include/api.php:808 -#, 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 "Er is geen status met dit kenmerk" - -#: ../../include/api.php:1341 -msgid "There is no conversation with this id." -msgstr "" - -#: ../../include/api.php:1613 -msgid "Invalid request." -msgstr "" - -#: ../../include/api.php:1624 -msgid "Invalid item." -msgstr "" - -#: ../../include/api.php:1634 -msgid "Invalid action. " -msgstr "" - -#: ../../include/api.php:1642 -msgid "DB error" -msgstr "" - -#: ../../include/network.php:890 -msgid "view full size" -msgstr "Volledig formaat" - -#: ../../include/Scrape.php:608 -msgid " on Last.fm" -msgstr " op Last.fm" - -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133 -msgid "Full Name:" -msgstr "Volledige Naam:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "F j Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "F j" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Verjaardag:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Leeftijd:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Labels:" - -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Muzikale interesse " - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisie" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/cultuur/ontspanning:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Liefde/romance:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "School/opleiding:" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Niets nieuw hier" - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Notificaties verwijderen" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Deze sessie beëindigen" - -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Inloggen" - -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Jouw tijdlijn" - -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Maak een accoount" - -#: ../../include/nav.php:114 ../../mod/help.php:36 -msgid "Help" -msgstr "Help" - -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Extra toepassingen, hulpmiddelen of spelletjes" - -#: ../../include/nav.php:119 ../../include/text.php:968 -#: ../../include/text.php:969 ../../mod/search.php:99 -msgid "Search" -msgstr "Zoeken" - -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Doorzoek de inhoud van de website" - -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversaties op deze website" - -#: ../../include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: ../../include/nav.php:133 -msgid "Directory" -msgstr "Gids" - -#: ../../include/nav.php:133 -msgid "People directory" -msgstr "Personengids" - -#: ../../include/nav.php:135 -msgid "Information" -msgstr "Informatie" - -#: ../../include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:145 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Netwerk" - -#: ../../include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversaties van je vrienden" - -#: ../../include/nav.php:146 -msgid "Network Reset" -msgstr "Netwerkpagina opnieuw instellen" - -#: ../../include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Laad de netwerkpagina zonder filters" - -#: ../../include/nav.php:154 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Verzoeken" - -#: ../../include/nav.php:154 -msgid "Friend Requests" -msgstr "Vriendschapsverzoeken" - -#: ../../include/nav.php:155 ../../mod/notifications.php:224 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:156 -msgid "See all notifications" -msgstr "Toon alle notificaties" - -#: ../../include/nav.php:157 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" - -#: ../../include/nav.php:161 ../../mod/message.php:182 -msgid "Messages" -msgstr "Privéberichten" - -#: ../../include/nav.php:161 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:162 -msgid "Inbox" -msgstr "Inbox" - -#: ../../include/nav.php:163 -msgid "Outbox" -msgstr "Verzonden berichten" - -#: ../../include/nav.php:164 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nieuw Bericht" - -#: ../../include/nav.php:167 -msgid "Manage" -msgstr "Beheren" - -#: ../../include/nav.php:167 -msgid "Manage other pages" -msgstr "Andere pagina's beheren" - -#: ../../include/nav.php:170 ../../mod/settings.php:67 -msgid "Delegations" -msgstr "" - -#: ../../include/nav.php:170 ../../mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Paginabeheer uitbesteden" - -#: ../../include/nav.php:172 -msgid "Account settings" -msgstr "Account instellingen" - -#: ../../include/nav.php:175 -msgid "Manage/Edit Profiles" -msgstr "Beheer/Wijzig Profielen" - -#: ../../include/nav.php:177 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: ../../include/nav.php:184 ../../mod/admin.php:130 -msgid "Admin" -msgstr "Beheer" - -#: ../../include/nav.php:184 -msgid "Site setup and configuration" -msgstr "Website opzetten en configureren" - -#: ../../include/nav.php:188 -msgid "Navigation" -msgstr "Navigatie" - -#: ../../include/nav.php:188 -msgid "Site map" -msgstr "Sitemap" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: ../../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 "Deze website is niet geconfigureerd voor communicatie met andere netwerken." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: ../../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 "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../include/follow.php:258 -msgid "following" -msgstr "volgend" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Gebruiker '%s' bestaat al op deze server!" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Fout bij het aanmaken van de gebruiker" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fout bij het aanmaken van het gebruikersprofiel" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact werd niet geïmporteerd" -msgstr[1] "%d contacten werden niet geïmporteerd" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" - -#: ../../include/event.php:11 ../../include/bb2diaspora.php:133 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:139 -msgid "Starts:" -msgstr "Begint:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:147 -msgid "Finishes:" -msgstr "Eindigt:" - -#: ../../include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: ../../include/Contact.php:232 ../../include/conversation.php:881 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../include/Contact.php:233 ../../include/conversation.php:875 -msgid "View Status" -msgstr "Bekijk status" - -#: ../../include/Contact.php:234 ../../include/conversation.php:876 -msgid "View Profile" -msgstr "Bekijk profiel" - -#: ../../include/Contact.php:235 ../../include/conversation.php:877 -msgid "View Photos" -msgstr "Bekijk foto's" - -#: ../../include/Contact.php:236 ../../include/Contact.php:259 -#: ../../include/conversation.php:878 -msgid "Network Posts" -msgstr "Netwerkberichten" - -#: ../../include/Contact.php:237 ../../include/Contact.php:259 -#: ../../include/conversation.php:879 -msgid "Edit Contact" -msgstr "Bewerk contact" - -#: ../../include/Contact.php:238 -msgid "Drop Contact" -msgstr "Verwijder contact" - -#: ../../include/Contact.php:239 ../../include/Contact.php:259 -#: ../../include/conversation.php:880 -msgid "Send PM" -msgstr "Stuur een privébericht" - -#: ../../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 "" - -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: ../../include/dbstructure.php:150 -msgid "Errors encountered creating database tables." -msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." - -#: ../../include/dbstructure.php:208 -msgid "Errors encountered performing database changes." -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "jaar" - -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "maand" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:290 -msgid "years" -msgstr "jaren" - -#: ../../include/datetime.php:291 -msgid "months" -msgstr "maanden" - -#: ../../include/datetime.php:292 -msgid "week" -msgstr "week" - -#: ../../include/datetime.php:292 -msgid "weeks" -msgstr "weken" - -#: ../../include/datetime.php:293 -msgid "days" -msgstr "dagen" - -#: ../../include/datetime.php:294 -msgid "hour" -msgstr "uur" - -#: ../../include/datetime.php:294 -msgid "hours" -msgstr "uren" - -#: ../../include/datetime.php:295 -msgid "minute" -msgstr "minuut" - -#: ../../include/datetime.php:295 -msgid "minutes" -msgstr "minuten" - -#: ../../include/datetime.php:296 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:296 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:305 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/delivery.php:456 ../../include/notifier.php:786 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Onbekend | Niet " - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Onmiddellijk blokkeren" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Onbetrouwbaar, spammer, zelfpromotor" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Bekend, maar geen mening" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, waarschijnlijk onschadelijk" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Gerenommeerd, heeft mijn vertrouwen" - -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571 -msgid "Frequently" -msgstr "Frequent" - -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572 -msgid "Hourly" -msgstr "elk uur" - -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574 -msgid "Daily" -msgstr "dagelijks" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "wekelijks" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "maandelijks" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741 -#: ../../mod/dfrn_request.php:838 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "Linkedln" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "Myspace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora-connector" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s is nu bevriend met %2$s" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2444 -msgid "Attachments:" -msgstr "Bijlagen:" - -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s niet leuk" - -#: ../../include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stootte %2$s aan" - -#: ../../include/conversation.php:226 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s is op dit moment %2$s" - -#: ../../include/conversation.php:265 ../../mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s labelde %3$s van %2$s met %4$s" - -#: ../../include/conversation.php:290 -msgid "post/item" -msgstr "bericht/item" +#: object/Item.php:117 mod/content.php:622 mod/photos.php:1379 +msgid "Private Message" +msgstr "Privébericht" -#: ../../include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s markeerde %2$s's %3$s als favoriet" +#: object/Item.php:121 mod/content.php:730 mod/settings.php:683 +msgid "Edit" +msgstr "Bewerken" -#: ../../include/conversation.php:612 ../../object/Item.php:129 -#: ../../mod/photos.php:1653 ../../mod/content.php:437 -#: ../../mod/content.php:740 +#: object/Item.php:130 mod/content.php:439 mod/content.php:742 +#: mod/photos.php:1672 include/conversation.php:612 msgid "Select" msgstr "Kies" -#: ../../include/conversation.php:613 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:682 -#: ../../mod/contacts.php:733 ../../mod/admin.php:1007 -#: ../../mod/photos.php:1654 ../../mod/content.php:438 -#: ../../mod/content.php:741 +#: object/Item.php:131 mod/admin.php:1017 mod/contacts.php:760 +#: mod/content.php:440 mod/content.php:743 mod/group.php:171 +#: mod/photos.php:1673 mod/settings.php:684 include/conversation.php:613 msgid "Delete" msgstr "Verwijder" -#: ../../include/conversation.php:653 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 +#: object/Item.php:134 mod/content.php:765 +msgid "save to folder" +msgstr "Bewaren in map" + +#: object/Item.php:196 mod/content.php:755 +msgid "add star" +msgstr "ster toevoegen" + +#: object/Item.php:197 mod/content.php:756 +msgid "remove star" +msgstr "ster verwijderen" + +#: object/Item.php:198 mod/content.php:757 +msgid "toggle star status" +msgstr "ster toevoegen of verwijderen" + +#: object/Item.php:201 mod/content.php:760 +msgid "starred" +msgstr "met ster" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "" + +#: object/Item.php:214 +msgid "ignored" +msgstr "" + +#: object/Item.php:221 mod/content.php:761 +msgid "add tag" +msgstr "label toevoegen" + +#: object/Item.php:232 mod/content.php:686 mod/photos.php:1561 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: object/Item.php:232 mod/content.php:686 +msgid "like" +msgstr "leuk" + +#: object/Item.php:233 mod/content.php:687 mod/photos.php:1562 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: object/Item.php:233 mod/content.php:687 +msgid "dislike" +msgstr "niet leuk" + +#: object/Item.php:235 mod/content.php:689 +msgid "Share this" +msgstr "Delen" + +#: object/Item.php:235 mod/content.php:689 +msgid "share" +msgstr "Delen" + +#: object/Item.php:319 include/conversation.php:665 +msgid "Categories:" +msgstr "Categorieën:" + +#: object/Item.php:320 include/conversation.php:666 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: object/Item.php:329 object/Item.php:330 mod/content.php:473 +#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:665 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Categorieën:" +#: object/Item.php:331 mod/content.php:856 +msgid "to" +msgstr "aan" -#: ../../include/conversation.php:666 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: object/Item.php:332 +msgid "via" +msgstr "via" -#: ../../include/conversation.php:673 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 +#: object/Item.php:333 mod/content.php:857 +msgid "Wall-to-Wall" +msgstr "wall-to-wall" + +#: object/Item.php:334 mod/content.php:858 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall" + +#: object/Item.php:343 mod/content.php:483 mod/content.php:866 +#: include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s van %s" -#: ../../include/conversation.php:689 ../../mod/content.php:497 -msgid "View in context" -msgstr "In context bekijken" +#: object/Item.php:364 object/Item.php:680 mod/content.php:711 +#: mod/photos.php:1583 mod/photos.php:1627 mod/photos.php:1715 boot.php:754 +msgid "Comment" +msgstr "Reacties" -#: ../../include/conversation.php:691 ../../include/conversation.php:1108 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1545 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 +#: object/Item.php:367 mod/wallmessage.php:156 mod/message.php:334 +#: mod/message.php:565 mod/content.php:501 mod/content.php:885 +#: mod/editpost.php:124 mod/photos.php:1564 include/conversation.php:691 +#: include/conversation.php:1074 msgid "Please wait" msgstr "Even geduld" -#: ../../include/conversation.php:771 -msgid "remove" -msgstr "verwijder" - -#: ../../include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Geselecteerde items verwijderen" - -#: ../../include/conversation.php:874 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d mensen vinden dit leuk" - -#: ../../include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people vinden dit niet leuk" - -#: ../../include/conversation.php:965 -msgid "and" -msgstr "en" - -#: ../../include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr ", en %d andere mensen" - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s vindt dit leuk." - -#: ../../include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s vindt dit niet leuk." - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -#: ../../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 "Vul een internetadres/URL in:" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Tag term:" -msgstr "Label:" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Bewaren in map:" - -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Waar ben je nu?" - -#: ../../include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Item(s) verwijderen?" - -#: ../../include/conversation.php:1050 -msgid "Post to Email" -msgstr "Verzenden per e-mail" - -#: ../../include/conversation.php:1055 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1056 ../../mod/settings.php:1033 -msgid "Hide your profile details from unknown viewers?" -msgstr "Je profieldetails verbergen voor onbekende bezoekers?" - -#: ../../include/conversation.php:1089 ../../mod/photos.php:1544 -msgid "Share" -msgstr "Delen" - -#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1091 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "Foto uploaden" - -#: ../../include/conversation.php:1092 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Bestand bijvoegen" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "bestand bijvoegen" - -#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Voeg een webadres in" - -#: ../../include/conversation.php:1095 ../../mod/editpost.php:115 -msgid "web link" -msgstr "webadres" - -#: ../../include/conversation.php:1096 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: ../../include/conversation.php:1097 ../../mod/editpost.php:117 -msgid "video link" -msgstr "video adres" - -#: ../../include/conversation.php:1098 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: ../../include/conversation.php:1099 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "audio adres" - -#: ../../include/conversation.php:1100 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Stel uw locatie in" - -#: ../../include/conversation.php:1101 ../../mod/editpost.php:121 -msgid "set location" -msgstr "Stel uw locatie in" - -#: ../../include/conversation.php:1102 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../include/conversation.php:1103 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: ../../include/conversation.php:1105 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Titel plaatsen" - -#: ../../include/conversation.php:1107 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (komma-gescheiden lijst)" - -#: ../../include/conversation.php:1109 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Instellingen van rechten" - -#: ../../include/conversation.php:1110 -msgid "permissions" -msgstr "rechten" - -#: ../../include/conversation.php:1118 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: ../../include/conversation.php:1119 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Openbare post" - -#: ../../include/conversation.php:1121 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: ../../include/conversation.php:1125 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1566 -#: ../../mod/photos.php:1610 ../../mod/photos.php:1698 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Voorvertoning" - -#: ../../include/conversation.php:1134 -msgid "Post to Groups" -msgstr "Verzenden naar Groepen" - -#: ../../include/conversation.php:1135 -msgid "Post to Contacts" -msgstr "Verzenden naar Contacten" - -#: ../../include/conversation.php:1136 -msgid "Private post" -msgstr "Privé verzending" - -#: ../../include/text.php:297 -msgid "newer" -msgstr "nieuwere berichten" - -#: ../../include/text.php:299 -msgid "older" -msgstr "oudere berichten" - -#: ../../include/text.php:304 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:306 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:338 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:341 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:396 -msgid "Loading more entries..." -msgstr "" - -#: ../../include/text.php:397 -msgid "The end" -msgstr "" - -#: ../../include/text.php:870 -msgid "No contacts" -msgstr "Geen contacten" - -#: ../../include/text.php:879 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" - -#: ../../include/text.php:891 ../../mod/viewcontacts.php:78 -msgid "View Contacts" -msgstr "Bekijk contacten" - -#: ../../include/text.php:971 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Bewaren" - -#: ../../include/text.php:1020 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:1020 -msgid "poked" -msgstr "aangestoten" - -#: ../../include/text.php:1021 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1021 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:1022 -msgid "prod" -msgstr "porren" - -#: ../../include/text.php:1022 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:1023 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1023 -msgid "slapped" -msgstr "geslagen" - -#: ../../include/text.php:1024 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1024 -msgid "fingered" -msgstr "gerfingerd" - -#: ../../include/text.php:1025 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1025 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1039 -msgid "happy" -msgstr "Blij" - -#: ../../include/text.php:1040 -msgid "sad" -msgstr "Verdrietig" - -#: ../../include/text.php:1041 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1042 -msgid "tired" -msgstr "vermoeid" - -#: ../../include/text.php:1043 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1044 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1045 -msgid "stupified" -msgstr "verbijsterd" - -#: ../../include/text.php:1046 -msgid "puzzled" -msgstr "onzeker" - -#: ../../include/text.php:1047 -msgid "interested" -msgstr "Geïnteresseerd" - -#: ../../include/text.php:1048 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:1049 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1050 -msgid "alive" -msgstr "levend" - -#: ../../include/text.php:1051 -msgid "annoyed" -msgstr "verveeld" - -#: ../../include/text.php:1052 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1053 -msgid "cranky" -msgstr "humeurig " - -#: ../../include/text.php:1054 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1055 -msgid "frustrated" -msgstr "gefrustreerd" - -#: ../../include/text.php:1056 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1057 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1058 -msgid "surprised" -msgstr "verbaasd" - -#: ../../include/text.php:1228 -msgid "Monday" -msgstr "Maandag" - -#: ../../include/text.php:1228 -msgid "Tuesday" -msgstr "Dinsdag" - -#: ../../include/text.php:1228 -msgid "Wednesday" -msgstr "Woensdag" - -#: ../../include/text.php:1228 -msgid "Thursday" -msgstr "Donderdag" - -#: ../../include/text.php:1228 -msgid "Friday" -msgstr "Vrijdag" - -#: ../../include/text.php:1228 -msgid "Saturday" -msgstr "Zaterdag" - -#: ../../include/text.php:1228 -msgid "Sunday" -msgstr "Zondag" - -#: ../../include/text.php:1232 -msgid "January" -msgstr "Januari" - -#: ../../include/text.php:1232 -msgid "February" -msgstr "Februari" - -#: ../../include/text.php:1232 -msgid "March" -msgstr "Maart" - -#: ../../include/text.php:1232 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1232 -msgid "May" -msgstr "Mei" - -#: ../../include/text.php:1232 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1232 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1232 -msgid "August" -msgstr "Augustus" - -#: ../../include/text.php:1232 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1232 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1232 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1232 -msgid "December" -msgstr "December" - -#: ../../include/text.php:1422 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Bekijk Video" - -#: ../../include/text.php:1454 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1478 ../../include/text.php:1490 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: ../../include/text.php:1664 ../../include/text.php:1674 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "Verwijzing naar bron" - -#: ../../include/text.php:1731 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1987 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:1989 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "reactie" -msgstr[1] "reacties" - -#: ../../include/text.php:1990 -msgid "post" -msgstr "bericht" - -#: ../../include/text.php:2158 -msgid "Item filed" -msgstr "Item bewaard" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Login mislukt." - -#: ../../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 "" - -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "De foutboodschap was:" - -#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066 -#: ../../include/bbcode.php:1067 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:531 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:565 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Welkom" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Upload een profielfoto." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Welkom terug " - -#: ../../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/oembed.php:213 -msgid "Embedded content" -msgstr "Ingebedde inhoud" - -#: ../../include/oembed.php:222 -msgid "Embedding disabled" -msgstr "Inbedden uitgeschakeld" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Man" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Vrouw" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel mannelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouwelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Meestal mannelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Meestal vrouwelijk" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet-specifiek" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Anders" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Onbeslist" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Manen" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Vrouwen" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Homo" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbie" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Geen voorkeur" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Biseksueel" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autoseksueel" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Onthouder" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Maagd" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Afwijkend" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Veel" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Niet seksueel" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Alleenstaand" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Eenzaam" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Beschikbaar" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Onbeschikbaar" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Verliefd" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Smoorverliefd" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Aan het daten" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Ontrouw" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Seksverslaafd" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Vrienden" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ongebonden/vluchtig" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Verloofd" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Getrouwd" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Samenwonend" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Common-law-huwelijk" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Blij" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Bedrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Uit elkaar" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Onstabiel" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Gescheiden" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Onzeker" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Het is gecompliceerd" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Kan me niet schelen" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Vraag me" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Ongeldige OpenID url" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "gebruik een kortere naam" - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Naam te kort" - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Je e-maildomein is op deze website niet toegestaan." - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." - -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Ik kan die e-mail niet gebruiken." - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." - -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Bijnaam is al geregistreerd. Kies een andere." - -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." - -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -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" -msgstr "" - -#: ../../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 "" - -#: ../../include/user.php:413 ../../mod/admin.php:838 -#, php-format -msgid "Registration details for %s" -msgstr "Registratie details voor %s" - -#: ../../include/acl_selectors.php:333 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "" - -#: ../../object/Item.php:116 ../../mod/photos.php:1359 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Privébericht" - -#: ../../object/Item.php:120 ../../mod/settings.php:681 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Bewerken" - -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "Bewaren in map" - -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "ster toevoegen" - -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "ster verwijderen" - -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "ster toevoegen of verwijderen" - -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "met ster" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "" - -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "label toevoegen" - -#: ../../object/Item.php:231 ../../mod/photos.php:1542 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: ../../object/Item.php:231 ../../mod/content.php:684 -msgid "like" -msgstr "leuk" - -#: ../../object/Item.php:232 ../../mod/photos.php:1543 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: ../../object/Item.php:232 ../../mod/content.php:685 -msgid "dislike" -msgstr "niet leuk" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "Share this" -msgstr "Delen" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "share" -msgstr "Delen" - -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "aan" - -#: ../../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 +#: object/Item.php:390 mod/content.php:605 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties" -#: ../../object/Item.php:675 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../mod/content.php:707 +#: object/Item.php:392 object/Item.php:405 mod/content.php:607 +#: include/text.php:2004 +msgid "comment" +msgid_plural "comments" +msgstr[0] "reactie" +msgstr[1] "reacties" + +#: object/Item.php:393 mod/content.php:608 include/contact_widgets.php:205 +#: include/items.php:5133 boot.php:755 +msgid "show more" +msgstr "toon meer" + +#: object/Item.php:678 mod/content.php:709 mod/photos.php:1581 +#: mod/photos.php:1625 mod/photos.php:1713 msgid "This is you" msgstr "Dit ben jij" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: object/Item.php:681 view/theme/perihel/config.php:95 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/quattro/config.php:64 +#: view/theme/zero-childs/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/clean/config.php:83 +#: view/theme/duepuntozero/config.php:59 view/theme/cleanzero/config.php:80 +#: view/theme/vier/config.php:56 view/theme/vier-mobil/config.php:47 +#: mod/mood.php:137 mod/localtime.php:45 mod/poke.php:199 mod/fsuggest.php:107 +#: mod/invite.php:140 mod/manage.php:110 mod/message.php:335 +#: mod/message.php:564 mod/contacts.php:564 mod/content.php:712 +#: mod/crepair.php:191 mod/events.php:511 mod/install.php:250 +#: mod/install.php:288 mod/photos.php:1104 mod/photos.php:1223 +#: mod/photos.php:1533 mod/photos.php:1584 mod/photos.php:1628 +#: mod/photos.php:1716 mod/profiles.php:682 +msgid "Submit" +msgstr "Opslaan" + +#: object/Item.php:682 mod/content.php:713 msgid "Bold" msgstr "Vet" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: object/Item.php:683 mod/content.php:714 msgid "Italic" msgstr "Cursief" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: object/Item.php:684 mod/content.php:715 msgid "Underline" msgstr "Onderstrepen" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: object/Item.php:685 mod/content.php:716 msgid "Quote" msgstr "Citeren" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: object/Item.php:686 mod/content.php:717 msgid "Code" msgstr "Broncode" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: object/Item.php:687 mod/content.php:718 msgid "Image" msgstr "Afbeelding" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: object/Item.php:688 mod/content.php:719 msgid "Link" msgstr "Link" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: object/Item.php:689 mod/content.php:720 msgid "Video" msgstr "Video" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Item niet beschikbaar" +#: object/Item.php:690 mod/content.php:721 mod/editpost.php:145 +#: mod/events.php:509 mod/photos.php:1585 mod/photos.php:1629 +#: mod/photos.php:1717 include/conversation.php:1089 +msgid "Preview" +msgstr "Voorvertoning" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:76 +#: view/smarty3/compiled/3652bcbaa383153072aa300c238792d03867c262.file.tree.tpl.php:76 +#: view/smarty3/compiled/788b954cfdfbf400e0cd17e1e5629515d87eb32f.file.commit.tpl.php:77 +#: view/smarty3/compiled/c6d84f5d6190b86e81c93d71a9bb01aa32004841.file.project.tpl.php:76 +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:76 +#: view/smarty3/compiled/7fd1b71c8d07cc4e9605dd231482f4f114db46f5.file.commits.tpl.php:77 +msgid "Clone this project:" +msgstr "" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:111 +msgid "Click here to download" +msgstr "" + +#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:98 +msgid "This project is empty!" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:31 +msgid "Projects" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "" + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148 +msgid "Home" +msgstr "Tijdlijn" + +#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 +#: include/nav.php:76 include/nav.php:148 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: mod/newmember.php:32 mod/profperm.php:104 include/identity.php:529 +#: include/identity.php:610 include/identity.php:639 include/nav.php:77 +msgid "Profile" +msgstr "Profiel" + +#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 +#: include/nav.php:77 +msgid "Your profile page" +msgstr "Jouw profiel pagina" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: mod/fbrowser.php:25 include/identity.php:646 include/nav.php:78 +msgid "Photos" +msgstr "Foto's" + +#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 +#: include/nav.php:78 +msgid "Your photos" +msgstr "Jouw foto's" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: mod/events.php:396 include/identity.php:663 include/nav.php:80 +msgid "Events" +msgstr "Gebeurtenissen" + +#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 +#: include/nav.php:80 +msgid "Your events" +msgstr "Jouw gebeurtenissen" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +#: include/nav.php:81 +msgid "Personal notes" +msgstr "Persoonlijke nota's" + +#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Jouw persoonlijke foto's" + +#: view/theme/perihel/theme.php:38 view/theme/diabook/theme.php:129 +#: mod/community.php:32 include/nav.php:129 include/nav.php:131 +msgid "Community" +msgstr "Website" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:337 +msgid "don't show" +msgstr "niet tonen" + +#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 include/acl_selectors.php:336 +msgid "show" +msgstr "tonen" + +#: view/theme/perihel/config.php:97 view/theme/diabook/config.php:150 +#: view/theme/quattro/config.php:66 +#: view/theme/zero-childs/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/clean/config.php:85 +#: view/theme/duepuntozero/config.php:61 view/theme/cleanzero/config.php:82 +#: view/theme/vier/config.php:58 view/theme/vier-mobil/config.php:49 +#: mod/settings.php:919 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: view/theme/perihel/config.php:98 view/theme/diabook/config.php:151 +#: view/theme/zero-childs/cleanzero/config.php:84 +#: view/theme/dispy/config.php:73 view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Stel lettergrootte voor berichten en reacties in" + +#: view/theme/perihel/config.php:99 view/theme/diabook/config.php:152 +#: view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Stel lijnhoogte voor berichten en reacties in" + +#: view/theme/perihel/config.php:100 view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Stel resolutie in voor de middelste kolom. " + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Stel kleurenschema in" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: 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 "Forum/groepspagina'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" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Forum/groepsprofielen" + +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Diensten verbinden" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Zoek vrienden" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Laatste gebruikers" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Laatste foto's" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Recent leuk gevonden" + +#: view/theme/diabook/theme.php:125 mod/contacts.php:745 include/nav.php:178 +msgid "Contacts" +msgstr "Contacten" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Jouw contacten" + +#: view/theme/diabook/theme.php:463 include/conversation.php:118 +#: include/conversation.php:245 include/text.php:1998 +msgid "event" +msgstr "gebeurtenis" + +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: mod/tagger.php:62 mod/like.php:149 mod/like.php:319 mod/subthread.php:87 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2106 +msgid "status" +msgstr "status" + +#: view/theme/diabook/theme.php:471 mod/tagger.php:62 mod/like.php:149 +#: mod/subthread.php:87 include/conversation.php:126 +#: include/conversation.php:253 include/diaspora.php:2106 +#: include/text.php:2000 +msgid "photo" +msgstr "foto" + +#: view/theme/diabook/theme.php:480 mod/like.php:166 +#: include/conversation.php:137 include/diaspora.php:2122 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s leuk" + +#: view/theme/diabook/theme.php:499 mod/photos.php:50 mod/photos.php:177 +#: mod/photos.php:1086 mod/photos.php:1207 mod/photos.php:1230 +#: mod/photos.php:1779 mod/photos.php:1791 +msgid "Contact Photos" +msgstr "Contactfoto's" + +#: view/theme/diabook/theme.php:500 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 mod/profile_photo.php:74 +#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:204 +#: mod/profile_photo.php:296 mod/profile_photo.php:305 include/user.php:343 +#: include/user.php:350 include/user.php:357 +msgid "Profile Photos" +msgstr "Profielfoto's" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokale gids" + +#: view/theme/diabook/theme.php:525 mod/directory.php:53 +msgid "Global Directory" +msgstr "Globale gids" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Dezelfde interesses" + +#: view/theme/diabook/theme.php:527 mod/suggest.php:69 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 +#: mod/newmember.php:22 mod/admin.php:1114 mod/admin.php:1335 +#: mod/settings.php:90 include/nav.php:173 +msgid "Settings" +msgstr "Instellingen" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Uitlijning" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Gecentreerd" + +#: view/theme/quattro/config.php:68 +#: view/theme/zero-childs/cleanzero/config.php:86 +#: view/theme/clean/config.php:88 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Kleurschema" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Lettergrootte berichten" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Lettergrootte tekstgebieden" + +#: view/theme/zero-childs/cleanzero/config.php:83 +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: view/theme/zero-childs/cleanzero/config.php:85 +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Stel breedte van het thema in" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Stel kleurschema in" + +#: view/theme/clean/config.php:56 view/theme/duepuntozero/config.php:44 +#: include/text.php:1734 include/user.php:255 +msgid "default" +msgstr "standaard" + +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "achtergrondkleur" + +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" + +#: view/theme/vier/config.php:59 view/theme/vier-mobil/config.php:50 +msgid "Set style" +msgstr "" + +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is op dit moment %2$s" + +#: mod/mood.php:114 mod/api.php:26 mod/api.php:31 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/attach.php:33 mod/regmod.php:110 mod/uimport.php:23 mod/poke.php:135 +#: mod/delegate.php:12 mod/nogroup.php:25 mod/fsuggest.php:78 +#: mod/invite.php:15 mod/invite.php:101 mod/manage.php:96 mod/message.php:38 +#: mod/message.php:174 mod/viewcontacts.php:24 mod/notifications.php:66 +#: mod/allfriends.php:9 mod/contacts.php:322 mod/crepair.php:120 +#: mod/dfrn_confirm.php:55 mod/display.php:508 mod/editpost.php:10 +#: mod/events.php:164 mod/follow.php:9 mod/follow.php:42 mod/follow.php:81 +#: mod/group.php:19 mod/item.php:170 mod/item.php:186 mod/network.php:4 +#: mod/notes.php:20 mod/photos.php:156 mod/photos.php:1072 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/profiles.php:165 +#: mod/profiles.php:614 mod/suggest.php:58 mod/wall_attach.php:55 +#: mod/wall_upload.php:66 mod/register.php:42 mod/settings.php:20 +#: mod/settings.php:107 mod/settings.php:608 include/items.php:5022 +#: index.php:382 +msgid "Permission denied." +msgstr "Toegang geweigerd" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Stemming" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Stel je huidige stemming in, en vertel het je vrienden" + +#: mod/decrypt.php:9 mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Toegang geweigerd" + +#: mod/decrypt.php:15 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:169 +#: mod/admin.php:1062 mod/admin.php:1275 mod/display.php:82 +#: mod/display.php:295 mod/display.php:512 include/items.php:4813 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heet %2$s van harte welkom" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Log in om verder te gaan." + +#: 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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" + +#: mod/api.php:105 mod/message.php:209 mod/contacts.php:413 +#: mod/dfrn_request.php:845 mod/follow.php:57 mod/profiles.php:657 +#: mod/profiles.php:660 mod/suggest.php:29 mod/register.php:235 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 include/items.php:4854 +msgid "Yes" +msgstr "Ja" + +#: mod/api.php:106 mod/dfrn_request.php:845 mod/follow.php:57 +#: mod/profiles.php:657 mod/profiles.php:661 mod/register.php:236 +#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 +#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 +#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 +#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 +#: mod/settings.php:1109 +msgid "No" +msgstr "Nee" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." + +#: 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/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 "" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." + +#: mod/lostpass.php:109 boot.php:1277 +msgid "Password Reset" +msgstr "Wachtwoord opnieuw instellen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Je nieuwe wachtwoord is" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "klik hier om in te loggen" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." + +#: 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\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t" + +#: 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 "" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Je wachtwoord is veranderd op %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Bijnaam of e-mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Opnieuw" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +#: mod/wallmessage.php:56 mod/message.php:63 msgid "No recipient selected." msgstr "Geen ontvanger geselecteerd." -#: ../../mod/wallmessage.php:59 +#: mod/wallmessage.php:59 msgid "Unable to check your home location." msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +#: mod/wallmessage.php:62 mod/message.php:70 msgid "Message could not be sent." msgstr "Bericht kon niet verzonden worden." -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +#: mod/wallmessage.php:65 mod/message.php:73 msgid "Message collection failure." msgstr "Fout bij het verzamelen van berichten." -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +#: mod/wallmessage.php:68 mod/message.php:76 msgid "Message sent." msgstr "Bericht verzonden." -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +#: mod/wallmessage.php:86 mod/wallmessage.php:95 msgid "No recipient." msgstr "Geen ontvanger." -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:283 +#: mod/message.php:291 mod/message.php:466 mod/message.php:474 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: mod/wallmessage.php:142 mod/message.php:319 msgid "Send Private Message" msgstr "Verstuur privébericht" -#: ../../mod/wallmessage.php:143 +#: 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 "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 +#: mod/wallmessage.php:144 mod/message.php:320 mod/message.php:553 msgid "To:" msgstr "Aan:" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 +#: mod/wallmessage.php:145 mod/message.php:325 mod/message.php:555 msgid "Subject:" msgstr "Onderwerp:" -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 +#: mod/wallmessage.php:151 mod/invite.php:134 mod/message.php:329 +#: mod/message.php:558 msgid "Your message:" msgstr "Jouw bericht:" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Groep aangemaakt." +#: mod/wallmessage.php:154 mod/message.php:332 mod/message.php:562 +#: mod/editpost.php:110 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Foto uploaden" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Kon de groep niet aanmaken." +#: mod/wallmessage.php:155 mod/message.php:333 mod/message.php:563 +#: mod/editpost.php:114 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Voeg een webadres in" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Groep niet gevonden." +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Welkom bij Friendica" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Groepsnaam gewijzigd." +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist voor nieuwe leden" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Maak een groep contacten/vrienden aan." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Groepsnaam:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Groep verwijderd." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Niet in staat om groep te verwijderen." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Groepsbewerker" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Leden" - -#: ../../mod/group.php:194 ../../mod/contacts.php:586 -msgid "All Contacts" -msgstr "Alle Contacten" - -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." - -#: ../../mod/delegate.php:132 +#: mod/newmember.php:12 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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." +"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 "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Bestaande paginabeheerders" +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Aan de slag" -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Doorloop Friendica" -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " - -#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Verwijderen" - -#: ../../mod/delegate.php:140 -msgid "Add" -msgstr "Toevoegen" - -#: ../../mod/delegate.php:141 -msgid "No entries." -msgstr "Geen gegevens." - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige request identifier." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:215 -msgid "Discard" -msgstr "Verwerpen" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:214 ../../mod/contacts.php:455 -#: ../../mod/contacts.php:519 ../../mod/contacts.php:731 -msgid "Ignore" -msgstr "Negeren" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Systeem" - -#: ../../mod/notifications.php:88 ../../mod/network.php:371 -msgid "Personal" -msgstr "Persoonlijk" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Toon genegeerde verzoeken" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberg genegeerde verzoeken" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:199 -msgid "Notification type: " -msgstr "Notificatiesoort:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Vriendschapsvoorstel" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "Voorgesteld door %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:208 -#: ../../mod/contacts.php:525 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Bericht over een nieuwe vriend" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:209 -msgid "if applicable" -msgstr "Indien toepasbaar" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:212 -#: ../../mod/admin.php:1005 -msgid "Approve" -msgstr "Goedkeuren" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Denkt dat u hem of haar kent:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "Ja" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "Nee" - -#: ../../mod/notifications.php:182 +#: mod/newmember.php:18 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "" +"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 "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." -#: ../../mod/notifications.php:185 +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Ga naar je instellingen" + +#: mod/newmember.php:26 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" +"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 "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web." -#: ../../mod/notifications.php:193 -msgid "Friend" -msgstr "Vriend" - -#: ../../mod/notifications.php:194 -msgid "Sharer" -msgstr "Deler" - -#: ../../mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fan/Bewonderaar" - -#: ../../mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Vriendschapsverzoek" - -#: ../../mod/notifications.php:200 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: ../../mod/notifications.php:221 -msgid "No introductions." -msgstr "Geen vriendschaps- of connectieverzoeken." - -#: ../../mod/notifications.php:262 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "%s vond het bericht van %s leuk" - -#: ../../mod/notifications.php:272 ../../mod/notifications.php:401 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s vond het bericht van %s niet leuk" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:416 -#: ../../mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s is nu bevriend met %s" - -#: ../../mod/notifications.php:294 ../../mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s schreef een nieuw bericht" - -#: ../../mod/notifications.php:295 ../../mod/notifications.php:424 -#: ../../mod/notifications.php:517 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s gaf een reactie op het bericht van %s" - -#: ../../mod/notifications.php:310 -msgid "No more network notifications." -msgstr "Geen netwerknotificaties meer" - -#: ../../mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Netwerknotificaties" - -#: ../../mod/notifications.php:340 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../mod/notifications.php:344 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Geen persoonlijke notificaties meer" - -#: ../../mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Persoonlijke notificaties" - -#: ../../mod/notifications.php:524 -msgid "No more home notifications." -msgstr "Geen tijdlijn-notificaties meer" - -#: ../../mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Tijdlijn-notificaties" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Geen profiel" - -#: ../../mod/settings.php:34 ../../mod/photos.php:80 -msgid "everybody" -msgstr "iedereen" - -#: ../../mod/settings.php:41 ../../mod/admin.php:1016 -msgid "Account" -msgstr "Account" - -#: ../../mod/settings.php:46 -msgid "Additional features" -msgstr "Extra functies" - -#: ../../mod/settings.php:51 -msgid "Display" -msgstr "Weergave" - -#: ../../mod/settings.php:57 ../../mod/settings.php:785 -msgid "Social Networks" -msgstr "Sociale netwerken" - -#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102 -#: ../../mod/admin.php:1155 -msgid "Plugins" -msgstr "Plugins" - -#: ../../mod/settings.php:72 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:77 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: ../../mod/settings.php:82 -msgid "Remove account" -msgstr "Account verwijderen" - -#: ../../mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: ../../mod/settings.php:137 ../../mod/settings.php:645 -#: ../../mod/contacts.php:729 -msgid "Update" -msgstr "Wijzigen" - -#: ../../mod/settings.php:243 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." - -#: ../../mod/settings.php:248 -msgid "Email settings updated." -msgstr "E-mail instellingen bijgewerkt.." - -#: ../../mod/settings.php:263 -msgid "Features updated" -msgstr "Functies bijgewerkt" - -#: ../../mod/settings.php:326 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: ../../mod/settings.php:340 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:345 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." - -#: ../../mod/settings.php:353 -msgid "Wrong password." -msgstr "Verkeerd wachtwoord." - -#: ../../mod/settings.php:364 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: ../../mod/settings.php:366 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: ../../mod/settings.php:433 -msgid " Please use a shorter name." -msgstr "Gebruik een kortere naam." - -#: ../../mod/settings.php:435 -msgid " Name too short." -msgstr "Naam te kort." - -#: ../../mod/settings.php:444 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: ../../mod/settings.php:449 -msgid " Not valid email." -msgstr "Geen geldig e-mailadres." - -#: ../../mod/settings.php:455 -msgid " Cannot change to that email." -msgstr "Kan niet veranderen naar die e-mail." - -#: ../../mod/settings.php:511 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." - -#: ../../mod/settings.php:515 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." - -#: ../../mod/settings.php:545 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: ../../mod/settings.php:618 ../../mod/settings.php:644 -#: ../../mod/settings.php:680 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: ../../mod/settings.php:619 ../../mod/settings.php:729 -#: ../../mod/settings.php:803 ../../mod/settings.php:885 -#: ../../mod/settings.php:1118 ../../mod/admin.php:620 -#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445 -msgid "Save Settings" -msgstr "Instellingen opslaan" - -#: ../../mod/settings.php:621 ../../mod/settings.php:647 -#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 -#: ../../mod/admin.php:1029 ../../mod/crepair.php:165 -msgid "Name" -msgstr "Naam" - -#: ../../mod/settings.php:622 ../../mod/settings.php:648 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: ../../mod/settings.php:623 ../../mod/settings.php:649 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: ../../mod/settings.php:624 ../../mod/settings.php:650 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: ../../mod/settings.php:625 ../../mod/settings.php:651 -msgid "Icon url" -msgstr "URL pictogram" - -#: ../../mod/settings.php:636 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: ../../mod/settings.php:679 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: ../../mod/settings.php:683 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:684 -msgid "No name" -msgstr "Geen naam" - -#: ../../mod/settings.php:685 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: ../../mod/settings.php:697 -msgid "No Plugin settings configured" -msgstr "" - -#: ../../mod/settings.php:705 -msgid "Plugin Settings" -msgstr "Plugin Instellingen" - -#: ../../mod/settings.php:719 -msgid "Off" -msgstr "Uit" - -#: ../../mod/settings.php:719 -msgid "On" -msgstr "Aan" - -#: ../../mod/settings.php:727 -msgid "Additional Features" -msgstr "Extra functies" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -msgid "enabled" -msgstr "ingeschakeld" - -#: ../../mod/settings.php:741 ../../mod/settings.php:742 -msgid "disabled" -msgstr "uitgeschakeld" - -#: ../../mod/settings.php:742 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:778 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." - -#: ../../mod/settings.php:790 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: ../../mod/settings.php:791 +#: mod/newmember.php:28 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." +"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 "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." -#: ../../mod/settings.php:792 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:695 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../mod/settings.php:794 -msgid "IMAP server name:" -msgstr "IMAP server naam:" - -#: ../../mod/settings.php:795 -msgid "IMAP port:" -msgstr "IMAP poort:" - -#: ../../mod/settings.php:796 -msgid "Security:" -msgstr "Beveiliging:" - -#: ../../mod/settings.php:796 ../../mod/settings.php:801 -msgid "None" -msgstr "Geen" - -#: ../../mod/settings.php:797 -msgid "Email login name:" -msgstr "E-mail login naam:" - -#: ../../mod/settings.php:798 -msgid "Email password:" -msgstr "E-mail wachtwoord:" - -#: ../../mod/settings.php:799 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: ../../mod/settings.php:800 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: ../../mod/settings.php:801 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: ../../mod/settings.php:801 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: ../../mod/settings.php:801 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: ../../mod/settings.php:802 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: ../../mod/settings.php:833 ../../mod/admin.php:545 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: ../../mod/settings.php:883 -msgid "Display Settings" -msgstr "Scherminstellingen" - -#: ../../mod/settings.php:889 ../../mod/settings.php:904 -msgid "Display Theme:" -msgstr "Schermthema:" - -#: ../../mod/settings.php:890 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: ../../mod/settings.php:891 -msgid "Update browser every xx seconds" -msgstr "Browser elke xx seconden verversen" - -#: ../../mod/settings.php:891 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 seconden, geen maximum" - -#: ../../mod/settings.php:892 -msgid "Number of items to display per page:" -msgstr "Aantal items te tonen per pagina:" - -#: ../../mod/settings.php:892 ../../mod/settings.php:893 -msgid "Maximum of 100 items" -msgstr "Maximum 100 items" - -#: ../../mod/settings.php:893 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" - -#: ../../mod/settings.php:894 -msgid "Don't show emoticons" -msgstr "Emoticons niet tonen" - -#: ../../mod/settings.php:895 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:896 -msgid "Infinite scroll" -msgstr "Oneindig scrollen" - -#: ../../mod/settings.php:897 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "User Types" -msgstr "Gebruikerstypes" - -#: ../../mod/settings.php:975 -msgid "Community Types" -msgstr "Forum/groepstypes" - -#: ../../mod/settings.php:976 -msgid "Normal Account Page" -msgstr "Normale accountpagina" - -#: ../../mod/settings.php:977 -msgid "This account is a normal personal profile" -msgstr "Deze account is een normaal persoonlijk profiel" - -#: ../../mod/settings.php:980 -msgid "Soapbox Page" -msgstr "Zeepkist-pagina" - -#: ../../mod/settings.php:981 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." - -#: ../../mod/settings.php:984 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/groeps- of beroemdheid-account" - -#: ../../mod/settings.php:985 +#: mod/newmember.php:36 msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." +"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 "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen." -#: ../../mod/settings.php:988 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Bewerk je profiel" -#: ../../mod/settings.php:989 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." - -#: ../../mod/settings.php:992 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: ../../mod/settings.php:993 -msgid "Private forum - approved members only" -msgstr "Privé-forum - enkel voor goedgekeurde leden" - -#: ../../mod/settings.php:1005 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:1005 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." - -#: ../../mod/settings.php:1015 -msgid "Publish your default profile in your local site directory?" -msgstr "Je standaardprofiel in je lokale gids publiceren?" - -#: ../../mod/settings.php:1015 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1029 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1038 ../../mod/settings.php:1044 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1056 -#: ../../mod/settings.php:1086 ../../mod/settings.php:1087 -#: ../../mod/settings.php:1088 ../../mod/settings.php:1089 -#: ../../mod/settings.php:1090 ../../mod/register.php:234 -#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106 -#: ../../mod/profiles.php:661 ../../mod/profiles.php:665 -msgid "No" -msgstr "Nee" - -#: ../../mod/settings.php:1021 -msgid "Publish your default profile in the global social directory?" -msgstr "Je standaardprofiel in de globale sociale gids publiceren?" - -#: ../../mod/settings.php:1029 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" - -#: ../../mod/settings.php:1033 +#: mod/newmember.php:38 msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." -#: ../../mod/settings.php:1038 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jou profielpagina te posten?" +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Sleutelwoorden voor dit profiel" -#: ../../mod/settings.php:1044 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: ../../mod/settings.php:1050 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" - -#: ../../mod/settings.php:1056 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: ../../mod/settings.php:1064 -msgid "Profile is not published." -msgstr "Profiel is niet gepubliceerd." - -#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "of" - -#: ../../mod/settings.php:1072 -msgid "Your Identity Address is" -msgstr "Jouw Identiteitsadres is" - -#: ../../mod/settings.php:1083 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: ../../mod/settings.php:1083 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." - -#: ../../mod/settings.php:1084 -msgid "Advanced expiration settings" -msgstr "Geavanceerde instellingen voor vervallen" - -#: ../../mod/settings.php:1085 -msgid "Advanced Expiration" -msgstr "Geavanceerd Verval:" - -#: ../../mod/settings.php:1086 -msgid "Expire posts:" -msgstr "Laat berichten vervallen:" - -#: ../../mod/settings.php:1087 -msgid "Expire personal notes:" -msgstr "Laat persoonlijke aantekeningen verlopen:" - -#: ../../mod/settings.php:1088 -msgid "Expire starred posts:" -msgstr "Laat berichten met ster verlopen" - -#: ../../mod/settings.php:1089 -msgid "Expire photos:" -msgstr "Laat foto's vervallen:" - -#: ../../mod/settings.php:1090 -msgid "Only expire posts by others:" -msgstr "Laat alleen berichten door anderen vervallen:" - -#: ../../mod/settings.php:1116 -msgid "Account Settings" -msgstr "Account Instellingen" - -#: ../../mod/settings.php:1124 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" - -#: ../../mod/settings.php:1125 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" - -#: ../../mod/settings.php:1126 -msgid "Confirm:" -msgstr "Bevestig:" - -#: ../../mod/settings.php:1126 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: ../../mod/settings.php:1127 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: ../../mod/settings.php:1128 -msgid "Password:" -msgstr "Wachtwoord:" - -#: ../../mod/settings.php:1132 -msgid "Basic Settings" -msgstr "Basis Instellingen" - -#: ../../mod/settings.php:1134 -msgid "Email Address:" -msgstr "E-mailadres:" - -#: ../../mod/settings.php:1135 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" - -#: ../../mod/settings.php:1136 -msgid "Default Post Location:" -msgstr "Standaard locatie:" - -#: ../../mod/settings.php:1137 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" - -#: ../../mod/settings.php:1140 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" - -#: ../../mod/settings.php:1142 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" - -#: ../../mod/settings.php:1142 ../../mod/settings.php:1172 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" - -#: ../../mod/settings.php:1143 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" - -#: ../../mod/settings.php:1144 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../mod/settings.php:1153 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 -msgid "Show to Groups" -msgstr "Tonen aan groepen" - -#: ../../mod/settings.php:1154 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" - -#: ../../mod/settings.php:1155 -msgid "Default Private Post" -msgstr "Standaard Privé Post" - -#: ../../mod/settings.php:1156 -msgid "Default Public Post" -msgstr "Standaard Publieke Post" - -#: ../../mod/settings.php:1160 -msgid "Default Permissions for New Posts" -msgstr "Standaard rechten voor nieuwe berichten" - -#: ../../mod/settings.php:1172 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: ../../mod/settings.php:1175 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" - -#: ../../mod/settings.php:1176 -msgid "By default post a status message when:" -msgstr "Post automatisch een bericht op je tijdlijn wanneer:" - -#: ../../mod/settings.php:1177 -msgid "accepting a friend request" -msgstr "Een vriendschapsverzoek accepteren" - -#: ../../mod/settings.php:1178 -msgid "joining a forum/community" -msgstr "Lid worden van een groep/forum" - -#: ../../mod/settings.php:1179 -msgid "making an interesting profile change" -msgstr "Een interessante verandering aan je profiel" - -#: ../../mod/settings.php:1180 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: ../../mod/settings.php:1181 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: ../../mod/settings.php:1182 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: ../../mod/settings.php:1183 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op je tijdlijn schrijft" - -#: ../../mod/settings.php:1184 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: ../../mod/settings.php:1185 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: ../../mod/settings.php:1186 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: ../../mod/settings.php:1187 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: ../../mod/settings.php:1188 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je in een bericht bent aangestoten/gepord/etc." - -#: ../../mod/settings.php:1190 -msgid "Text-only notification emails" -msgstr "" - -#: ../../mod/settings.php:1192 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: ../../mod/settings.php:1194 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1195 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1198 -msgid "Relocate" -msgstr "" - -#: ../../mod/settings.php:1199 +#: mod/newmember.php:40 msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." +"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 "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbinding aan het maken" + +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren." + +#: 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 "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken." + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "E-mails importeren" + +#: 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 "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren" + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Ga naar je contactenpagina" + +#: 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 "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog." + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Ga naar de gids van je website" + +#: 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 "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "Nieuwe mensen vinden" + +#: 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 "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "Groepen" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Groepeer je contacten" + +#: 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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. " + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Waarom zijn mijn berichten niet openbaar?" + +#: 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 respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hulp krijgen" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Ga naar de help" + +#: mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." + +#: mod/_search.php:21 mod/network.php:187 mod/search.php:21 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: mod/_search.php:30 mod/network.php:196 mod/search.php:30 +#: include/features.php:42 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: mod/_search.php:89 mod/viewcontacts.php:19 mod/community.php:18 +#: mod/dfrn_request.php:777 mod/directory.php:35 mod/display.php:223 +#: mod/photos.php:942 mod/search.php:89 mod/videos.php:187 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" + +#: mod/_search.php:99 mod/search.php:99 include/nav.php:119 +#: include/text.php:977 +msgid "Search" +msgstr "Zoeken" + +#: mod/_search.php:180 mod/_search.php:206 mod/community.php:62 +#: mod/community.php:71 mod/search.php:174 +msgid "No results." +msgstr "Geen resultaten." + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s labelde %3$s van %2$s met %4$s" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Item niet beschikbaar" + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Account goedgekeurd." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Inloggen." + +#: mod/uimport.php:50 mod/register.php:188 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." + +#: mod/uimport.php:64 mod/register.php:283 +msgid "Import" +msgstr "Importeren" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Account verplaatsen" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Je kunt een account van een andere Friendica server importeren." + +#: 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 "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." + +#: 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 "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Account bestand" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" msgstr "" -#: ../../mod/settings.php:1200 -msgid "Resend relocate message to contacts" -msgstr "" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Gedeelde Vrienden" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Geen gedeelde contacten." - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +#: mod/lockview.php:31 mod/lockview.php:39 msgid "Remote privacy information not available." msgstr "Privacyinformatie op afstand niet beschikbaar." -#: ../../mod/lockview.php:48 +#: mod/lockview.php:48 msgid "Visible to:" msgstr "Zichtbaar voor:" -#: ../../mod/contacts.php:112 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Geen profiel" -#: ../../mod/contacts.php:143 ../../mod/contacts.php:276 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" - -#: ../../mod/contacts.php:157 -msgid "Could not locate selected profile." -msgstr "Kon het geselecteerde profiel niet vinden." - -#: ../../mod/contacts.php:190 -msgid "Contact updated." -msgstr "Contact bijgewerkt." - -#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." - -#: ../../mod/contacts.php:291 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" - -#: ../../mod/contacts.php:291 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" - -#: ../../mod/contacts.php:302 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" - -#: ../../mod/contacts.php:302 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" - -#: ../../mod/contacts.php:314 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" - -#: ../../mod/contacts.php:314 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" - -#: ../../mod/contacts.php:339 ../../mod/contacts.php:727 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" - -#: ../../mod/contacts.php:356 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." - -#: ../../mod/contacts.php:394 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" - -#: ../../mod/contacts.php:398 -#, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" - -#: ../../mod/contacts.php:403 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" - -#: ../../mod/contacts.php:423 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." - -#: ../../mod/contacts.php:426 ../../mod/admin.php:569 -msgid "Never" -msgstr "Nooit" - -#: ../../mod/contacts.php:430 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" - -#: ../../mod/contacts.php:430 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" - -#: ../../mod/contacts.php:432 -msgid "Suggest friends" -msgstr "Stel vrienden voor" - -#: ../../mod/contacts.php:436 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" - -#: ../../mod/contacts.php:444 -msgid "View all contacts" -msgstr "Alle contacten zien" - -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1009 -msgid "Unblock" -msgstr "Blokkering opheffen" - -#: ../../mod/contacts.php:449 ../../mod/contacts.php:518 -#: ../../mod/contacts.php:730 ../../mod/admin.php:1008 -msgid "Block" -msgstr "Blokkeren" - -#: ../../mod/contacts.php:452 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" - -#: ../../mod/contacts.php:455 ../../mod/contacts.php:519 -#: ../../mod/contacts.php:731 -msgid "Unignore" -msgstr "Negeer niet meer" - -#: ../../mod/contacts.php:458 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" - -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 -msgid "Unarchive" -msgstr "Archiveer niet meer" - -#: ../../mod/contacts.php:462 ../../mod/contacts.php:732 -msgid "Archive" -msgstr "Archiveer" - -#: ../../mod/contacts.php:465 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" - -#: ../../mod/contacts.php:468 -msgid "Repair" -msgstr "Herstellen" - -#: ../../mod/contacts.php:471 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" - -#: ../../mod/contacts.php:477 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" - -#: ../../mod/contacts.php:480 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../mod/contacts.php:481 -msgid "Disabled" -msgstr "" - -#: ../../mod/contacts.php:481 -msgid "Fetch information" -msgstr "" - -#: ../../mod/contacts.php:481 -msgid "Fetch information and keywords" -msgstr "" - -#: ../../mod/contacts.php:490 -msgid "Contact Editor" -msgstr "Contactbewerker" - -#: ../../mod/contacts.php:493 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: ../../mod/contacts.php:494 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " - -#: ../../mod/contacts.php:495 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" - -#: ../../mod/contacts.php:496 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" - -#: ../../mod/contacts.php:501 ../../mod/contacts.php:695 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" - -#: ../../mod/contacts.php:502 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" - -#: ../../mod/contacts.php:503 -msgid "Ignore contact" -msgstr "Negeer contact" - -#: ../../mod/contacts.php:504 -msgid "Repair URL settings" -msgstr "Repareer URL-instellingen" - -#: ../../mod/contacts.php:505 -msgid "View conversations" -msgstr "Toon conversaties" - -#: ../../mod/contacts.php:507 -msgid "Delete contact" -msgstr "Verwijder contact" - -#: ../../mod/contacts.php:511 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: ../../mod/contacts.php:513 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: ../../mod/contacts.php:515 ../../mod/admin.php:1503 -msgid "Update now" -msgstr "Wijzig nu" - -#: ../../mod/contacts.php:522 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: ../../mod/contacts.php:523 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: ../../mod/contacts.php:524 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: ../../mod/contacts.php:525 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" - -#: ../../mod/contacts.php:526 -msgid "Notification for new posts" -msgstr "Meldingen voor nieuwe berichten" - -#: ../../mod/contacts.php:526 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: ../../mod/contacts.php:529 -msgid "Blacklisted keywords" -msgstr "" - -#: ../../mod/contacts.php:529 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: ../../mod/contacts.php:580 -msgid "Suggestions" -msgstr "Voorstellen" - -#: ../../mod/contacts.php:583 -msgid "Suggest potential friends" -msgstr "Stel vrienden voor" - -#: ../../mod/contacts.php:589 -msgid "Show all contacts" -msgstr "Toon alle contacten" - -#: ../../mod/contacts.php:592 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: ../../mod/contacts.php:595 -msgid "Only show unblocked contacts" -msgstr "Toon alleen niet-geblokkeerde contacten" - -#: ../../mod/contacts.php:599 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: ../../mod/contacts.php:602 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" - -#: ../../mod/contacts.php:606 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../mod/contacts.php:609 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" - -#: ../../mod/contacts.php:613 -msgid "Archived" -msgstr "Gearchiveerd" - -#: ../../mod/contacts.php:616 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" - -#: ../../mod/contacts.php:620 -msgid "Hidden" -msgstr "Verborgen" - -#: ../../mod/contacts.php:623 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" - -#: ../../mod/contacts.php:671 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" - -#: ../../mod/contacts.php:675 -msgid "is a fan of yours" -msgstr "Is een fan van jou" - -#: ../../mod/contacts.php:679 -msgid "you are a fan of" -msgstr "Jij bent een fan van" - -#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Contact bewerken" - -#: ../../mod/contacts.php:722 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" - -#: ../../mod/contacts.php:723 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Gevonden:" - -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." - -#: ../../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 +#: mod/update_profile.php:41 mod/update_network.php:25 +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 msgid "[Embedded content - reload page to view]" msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" -#: ../../mod/uexport.php:77 +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Bron (bbcode) tekst:" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Bron ingave:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (ruwe HTML):" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Bron ingave (Diaspora formaat):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s niet leuk" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Bericht succesvol geplaatst." + +#: mod/localtime.php:12 include/bb2diaspora.php:139 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tijdsconversie" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC tijd: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Huidige Tijdzone: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Omgerekende lokale tijd: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selecteer je tijdzone:" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Bewaren in map:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- Kies -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978 +msgid "Save" +msgstr "Bewaren" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "aanstoten, porren of andere dingen met iemand doen" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Ontvanger" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Dit bericht privé maken" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt %3$s van %2$s" + +#: mod/uexport.php:77 msgid "Export account" msgstr "Account exporteren" -#: ../../mod/uexport.php:77 +#: 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 "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." -#: ../../mod/uexport.php:78 +#: mod/uexport.php:78 msgid "Export all" msgstr "Alles exporteren" -#: ../../mod/uexport.php:78 +#: 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 "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." +#: mod/uexport.php:85 mod/settings.php:77 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" -#: ../../mod/register.php:96 +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Toepassingen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Notificaties verwijderen" + +#: mod/tagrm.php:11 mod/tagrm.php:94 mod/fbrowser.php:81 mod/fbrowser.php:116 +#: mod/message.php:212 mod/contacts.php:416 mod/dfrn_request.php:859 +#: mod/editpost.php:148 mod/follow.php:68 mod/photos.php:225 +#: mod/photos.php:314 mod/suggest.php:32 mod/videos.php:121 +#: mod/settings.php:622 mod/settings.php:648 include/conversation.php:1093 +#: include/items.php:4857 +msgid "Cancel" +msgstr "Annuleren" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Label verwijderd" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Verwijder label van item" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecteer een label om te verwijderen: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Verwijderen" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." + +#: mod/delegate.php:130 include/nav.php:171 +msgid "Delegate Page Management" +msgstr "Paginabeheer uitbesteden" + +#: 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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Bestaande paginabeheerders" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Toevoegen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Geen gegevens." + +#: mod/nogroup.php:40 mod/viewcontacts.php:64 mod/contacts.php:573 +#: mod/contacts.php:797 #, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." +#: mod/nogroup.php:41 mod/contacts.php:798 +msgid "Edit contact" +msgstr "Contact bewerken" -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw registratie wacht op goedkeuring van de beheerder." +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contacten die geen leden zijn van een groep" -#: ../../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 "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." +#: mod/fbrowser.php:113 +msgid "Files" +msgstr "Bestanden" -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." - -#: ../../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 "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." - -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" - -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "Je uitnodigingsid:" - -#: ../../mod/register.php:255 ../../mod/admin.php:621 -msgid "Registration" -msgstr "Registratie" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Je volledige naam (bijv. Jan Jansens):" - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "Je email adres:" - -#: ../../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 "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" - -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importeren" - -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Bericht succesvol geplaatst." - -#: ../../mod/maintenance.php:5 +#: mod/maintenance.php:5 msgid "System down for maintenance" msgstr "Systeem onbeschikbaar wegens onderhoud" -#: ../../mod/profile.php:155 ../../mod/display.php:332 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Verwijder mijn account" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762 -#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:212 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Voer je wachtwoord in voor verificatie:" -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:134 +#: mod/dfrn_confirm.php:120 +msgid "Contact not found." +msgstr "Contact niet gevonden" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vriendschapsvoorstel verzonden." -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 -msgid "View Album" -msgstr "Album bekijken" +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stel vrienden voor" -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Recente video's" +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een vriend voor aan %s" -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Totale uitnodigingslimiet overschreden." -#: ../../mod/manage.php:106 +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Geen geldig e-mailadres." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Kom bij ons op Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Aflevering van bericht mislukt." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Je kunt geen uitnodigingen meer sturen" + +#: 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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." + +#: 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 servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Verstuur uitnodigingen" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Vul e-mailadressen in, één per lijn:" + +#: 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 "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" + +#: 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 "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" + +#: mod/manage.php:106 msgid "Manage Identities and/or Pages" msgstr "Beheer Identiteiten en/of Pagina's" -#: ../../mod/manage.php:107 +#: 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 "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." -#: ../../mod/manage.php:108 +#: mod/manage.php:108 msgid "Select an identity to manage: " msgstr "Selecteer een identiteit om te beheren:" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Mensen Zoeken" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Geen resultaten" - -#: ../../mod/regmod.php:55 -msgid "Account approved." -msgstr "Account goedgekeurd." - -#: ../../mod/regmod.php:92 +#: mod/home.php:35 #, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../mod/regmod.php:104 -msgid "Please login." -msgstr "Inloggen." +#: mod/message.php:9 include/nav.php:165 +msgid "New Message" +msgstr "Nieuw Bericht" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" +#: mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Ik kan geen contact informatie vinden." -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" +#: mod/message.php:182 include/nav.php:162 +msgid "Messages" +msgstr "Privéberichten" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." +#: mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Wil je echt dit bericht verwijderen?" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." +#: mod/message.php:227 +msgid "Message deleted." +msgstr "Bericht verwijderd." -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: mod/message.php:258 +msgid "Conversation removed." +msgstr "Gesprek verwijderd." + +#: mod/message.php:371 +msgid "No messages." +msgstr "Geen berichten." + +#: mod/message.php:378 #, 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] "De %d vereiste parameter is niet op het gegeven adres gevonden" -msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" +msgid "Unknown sender - %s" +msgstr "Onbekende afzender - %s" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Verzoek voltooid." - -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Onherstelbare protocolfout. " - -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profiel onbeschikbaar" - -#: ../../mod/dfrn_request.php:267 +#: mod/message.php:381 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s heeft te veel verzoeken gehad vandaag." +msgid "You and %s" +msgstr "Jij en %s" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." - -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." - -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ongeldige plaatsbepaler" - -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Geen geldig e-mailadres" - -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." - -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." - -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: ../../mod/dfrn_request.php:480 +#: mod/message.php:384 #, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar bent u al bevriend met %s." +msgid "%s and You" +msgstr "%s en jij" -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." +#: mod/message.php:405 mod/message.php:546 +msgid "Delete conversation" +msgstr "Verwijder gesprek" -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." +#: mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." +#: mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d bericht" +msgstr[1] "%d berichten" -#: ../../mod/dfrn_request.php:660 +#: mod/message.php:450 +msgid "Message not available." +msgstr "Bericht niet beschikbaar." + +#: mod/message.php:520 +msgid "Delete message" +msgstr "Verwijder bericht" + +#: mod/message.php:548 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." -#: ../../mod/dfrn_request.php:671 -msgid "Hide this contact" -msgstr "Verberg dit contact" +#: mod/message.php:552 +msgid "Send Reply" +msgstr "Verstuur Antwoord" -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." - -#: ../../mod/dfrn_request.php:675 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." - -#: ../../mod/dfrn_request.php:804 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" - -#: ../../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 "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." - -#: ../../mod/dfrn_request.php:827 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Kent %s jou?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: ../../mod/dfrn_request.php:837 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Gefedereerde Sociale Web" - -#: ../../mod/dfrn_request.php:839 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." - -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Adres van uw identiteit:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Bestanden" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Log in om verder te gaan." - -#: ../../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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Wil je echt dit voorstel verwijderen?" - -#: ../../mod/suggest.php:74 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." - -#: ../../mod/suggest.php:92 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contacten die geen leden zijn van een groep" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vriendschapsvoorstel verzonden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Stel vrienden voor" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een vriend voor aan %s" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "link" - -#: ../../mod/viewcontacts.php:41 +#: mod/viewcontacts.php:41 msgid "No contacts." msgstr "Geen contacten." -#: ../../mod/admin.php:57 +#: mod/viewcontacts.php:78 include/text.php:899 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol fout. Geen ID Gevonden." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Login mislukt." + +#: mod/community.php:23 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: mod/help.php:31 +msgid "Help:" +msgstr "Help:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Help" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Niet gevonden" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ongeldige request identifier." + +#: mod/notifications.php:35 mod/notifications.php:165 +#: mod/notifications.php:215 +msgid "Discard" +msgstr "Verwerpen" + +#: mod/notifications.php:51 mod/notifications.php:164 +#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591 +#: mod/contacts.php:758 +msgid "Ignore" +msgstr "Negeren" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Systeem" + +#: mod/notifications.php:83 include/nav.php:145 +msgid "Network" +msgstr "Netwerk" + +#: mod/notifications.php:88 mod/network.php:373 +msgid "Personal" +msgstr "Persoonlijk" + +#: mod/notifications.php:98 include/nav.php:153 +msgid "Introductions" +msgstr "Verzoeken" + +#: mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Toon genegeerde verzoeken" + +#: mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Verberg genegeerde verzoeken" + +#: mod/notifications.php:149 mod/notifications.php:199 +msgid "Notification type: " +msgstr "Notificatiesoort:" + +#: mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Vriendschapsvoorstel" + +#: mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "Voorgesteld door %s" + +#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" + +#: mod/notifications.php:158 mod/notifications.php:209 +msgid "Post a new friend activity" +msgstr "Bericht over een nieuwe vriend" + +#: mod/notifications.php:158 mod/notifications.php:209 +msgid "if applicable" +msgstr "Indien toepasbaar" + +#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015 +msgid "Approve" +msgstr "Goedkeuren" + +#: mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Denkt dat u hem of haar kent:" + +#: mod/notifications.php:181 +msgid "yes" +msgstr "Ja" + +#: mod/notifications.php:181 +msgid "no" +msgstr "Nee" + +#: mod/notifications.php:182 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:185 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:193 +msgid "Friend" +msgstr "Vriend" + +#: mod/notifications.php:194 +msgid "Sharer" +msgstr "Deler" + +#: mod/notifications.php:194 +msgid "Fan/Admirer" +msgstr "Fan/Bewonderaar" + +#: mod/notifications.php:200 +msgid "Friend/Connect Request" +msgstr "Vriendschapsverzoek" + +#: mod/notifications.php:200 +msgid "New Follower" +msgstr "Nieuwe Volger" + +#: mod/notifications.php:221 +msgid "No introductions." +msgstr "Geen vriendschaps- of connectieverzoeken." + +#: mod/notifications.php:224 include/nav.php:156 +msgid "Notifications" +msgstr "Notificaties" + +#: mod/notifications.php:262 mod/notifications.php:391 +#: mod/notifications.php:482 +#, php-format +msgid "%s liked %s's post" +msgstr "%s vond het bericht van %s leuk" + +#: mod/notifications.php:272 mod/notifications.php:401 +#: mod/notifications.php:492 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s vond het bericht van %s niet leuk" + +#: mod/notifications.php:287 mod/notifications.php:416 +#: mod/notifications.php:507 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is nu bevriend met %s" + +#: mod/notifications.php:294 mod/notifications.php:423 +#, php-format +msgid "%s created a new post" +msgstr "%s schreef een nieuw bericht" + +#: mod/notifications.php:295 mod/notifications.php:424 +#: mod/notifications.php:517 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s gaf een reactie op het bericht van %s" + +#: mod/notifications.php:310 +msgid "No more network notifications." +msgstr "Geen netwerknotificaties meer" + +#: mod/notifications.php:314 +msgid "Network Notifications" +msgstr "Netwerknotificaties" + +#: mod/notifications.php:340 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: mod/notifications.php:344 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: mod/notifications.php:439 +msgid "No more personal notifications." +msgstr "Geen persoonlijke notificaties meer" + +#: mod/notifications.php:443 +msgid "Personal Notifications" +msgstr "Persoonlijke notificaties" + +#: mod/notifications.php:524 +msgid "No more home notifications." +msgstr "Geen tijdlijn-notificaties meer" + +#: mod/notifications.php:528 +msgid "Home Notifications" +msgstr "Tijdlijn-notificaties" + +#: mod/admin.php:57 msgid "Theme settings updated." msgstr "Thema-instellingen aangepast." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: mod/admin.php:104 mod/admin.php:627 msgid "Site" msgstr "Website" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023 msgid "Users" msgstr "Gebruiker" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367 msgid "Themes" msgstr "Thema's" -#: ../../mod/admin.php:108 +#: mod/admin.php:108 msgid "DB updates" msgstr "DB aanpassingen" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454 msgid "Logs" msgstr "Logs" -#: ../../mod/admin.php:124 +#: mod/admin.php:124 msgid "probe address" msgstr "" -#: ../../mod/admin.php:125 +#: mod/admin.php:125 msgid "check webfinger" msgstr "" -#: ../../mod/admin.php:131 +#: mod/admin.php:130 include/nav.php:185 +msgid "Admin" +msgstr "Beheer" + +#: mod/admin.php:131 msgid "Plugin Features" msgstr "Plugin Functies" -#: ../../mod/admin.php:133 +#: mod/admin.php:133 msgid "diagnostics" msgstr "" -#: ../../mod/admin.php:134 +#: mod/admin.php:134 msgid "User registrations waiting for confirmation" msgstr "Gebruikersregistraties wachten op bevestiging" -#: ../../mod/admin.php:193 ../../mod/admin.php:952 +#: mod/admin.php:193 mod/admin.php:961 msgid "Normal Account" msgstr "Normaal account" -#: ../../mod/admin.php:194 ../../mod/admin.php:953 +#: mod/admin.php:194 mod/admin.php:962 msgid "Soapbox Account" msgstr "Zeepkist-account" -#: ../../mod/admin.php:195 ../../mod/admin.php:954 +#: mod/admin.php:195 mod/admin.php:963 msgid "Community/Celebrity Account" msgstr "Account voor een groep/forum of beroemdheid" -#: ../../mod/admin.php:196 ../../mod/admin.php:955 +#: mod/admin.php:196 mod/admin.php:964 msgid "Automatic Friend Account" msgstr "Automatisch Vriendschapsaccount" -#: ../../mod/admin.php:197 +#: mod/admin.php:197 msgid "Blog Account" msgstr "Blog Account" -#: ../../mod/admin.php:198 +#: mod/admin.php:198 msgid "Private Forum" msgstr "Privéforum/-groep" -#: ../../mod/admin.php:217 +#: mod/admin.php:217 msgid "Message queues" msgstr "Bericht-wachtrijen" -#: ../../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 +#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111 +#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453 msgid "Administration" msgstr "Beheer" -#: ../../mod/admin.php:223 +#: mod/admin.php:223 msgid "Summary" msgstr "Samenvatting" -#: ../../mod/admin.php:225 +#: mod/admin.php:225 msgid "Registered users" msgstr "Geregistreerde gebruikers" -#: ../../mod/admin.php:227 +#: mod/admin.php:227 msgid "Pending registrations" msgstr "Registraties die in de wacht staan" -#: ../../mod/admin.php:228 +#: mod/admin.php:228 msgid "Version" msgstr "Versie" -#: ../../mod/admin.php:232 +#: mod/admin.php:232 msgid "Active plugins" msgstr "Actieve plug-ins" -#: ../../mod/admin.php:255 +#: mod/admin.php:255 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: ../../mod/admin.php:516 +#: mod/admin.php:524 msgid "Site settings updated." msgstr "Site instellingen gewijzigd." -#: ../../mod/admin.php:562 +#: mod/admin.php:553 mod/settings.php:853 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: mod/admin.php:570 msgid "No community page" msgstr "" -#: ../../mod/admin.php:563 +#: mod/admin.php:571 msgid "Public postings from users of this site" msgstr "" -#: ../../mod/admin.php:564 +#: mod/admin.php:572 msgid "Global community page" msgstr "" -#: ../../mod/admin.php:570 +#: mod/admin.php:577 mod/contacts.php:498 +msgid "Never" +msgstr "Nooit" + +#: mod/admin.php:578 msgid "At post arrival" msgstr "" -#: ../../mod/admin.php:579 +#: mod/admin.php:579 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequent" + +#: mod/admin.php:580 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "elk uur" + +#: mod/admin.php:581 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: mod/admin.php:582 include/contact_selectors.php:59 +msgid "Daily" +msgstr "dagelijks" + +#: mod/admin.php:587 msgid "Multi user instance" msgstr "Server voor meerdere gebruikers" -#: ../../mod/admin.php:602 +#: mod/admin.php:610 msgid "Closed" msgstr "Gesloten" -#: ../../mod/admin.php:603 +#: mod/admin.php:611 msgid "Requires approval" msgstr "Toestemming vereist" -#: ../../mod/admin.php:604 +#: mod/admin.php:612 msgid "Open" msgstr "Open" -#: ../../mod/admin.php:608 +#: mod/admin.php:616 msgid "No SSL policy, links will track page SSL state" msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" -#: ../../mod/admin.php:609 +#: mod/admin.php:617 msgid "Force all links to use SSL" msgstr "Verplicht alle links om SSL te gebruiken" -#: ../../mod/admin.php:610 +#: mod/admin.php:618 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" -#: ../../mod/admin.php:622 +#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 +#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 +#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1137 +msgid "Save Settings" +msgstr "Instellingen opslaan" + +#: mod/admin.php:629 mod/register.php:260 +msgid "Registration" +msgstr "Registratie" + +#: mod/admin.php:630 msgid "File upload" msgstr "Uploaden bestand" -#: ../../mod/admin.php:623 +#: mod/admin.php:631 msgid "Policies" msgstr "Beleid" -#: ../../mod/admin.php:624 +#: mod/admin.php:632 msgid "Advanced" msgstr "Geavanceerd" -#: ../../mod/admin.php:625 +#: mod/admin.php:633 msgid "Performance" msgstr "Performantie" -#: ../../mod/admin.php:626 +#: mod/admin.php:634 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/admin.php:629 +#: mod/admin.php:637 msgid "Site name" msgstr "Site naam" -#: ../../mod/admin.php:630 +#: mod/admin.php:638 msgid "Host name" msgstr "" -#: ../../mod/admin.php:631 +#: mod/admin.php:639 msgid "Sender Email" msgstr "" -#: ../../mod/admin.php:632 +#: mod/admin.php:640 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:633 +#: mod/admin.php:641 msgid "Shortcut icon" msgstr "" -#: ../../mod/admin.php:634 +#: mod/admin.php:642 msgid "Touch icon" msgstr "" -#: ../../mod/admin.php:635 +#: mod/admin.php:643 msgid "Additional Info" msgstr "" -#: ../../mod/admin.php:635 +#: mod/admin.php:643 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/admin.php:636 +#: mod/admin.php:644 msgid "System language" msgstr "Systeemtaal" -#: ../../mod/admin.php:637 +#: mod/admin.php:645 msgid "System theme" msgstr "Systeem thema" -#: ../../mod/admin.php:637 +#: mod/admin.php:645 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" -#: ../../mod/admin.php:638 +#: mod/admin.php:646 msgid "Mobile system theme" msgstr "Mobiel systeem thema" -#: ../../mod/admin.php:638 +#: mod/admin.php:646 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: ../../mod/admin.php:639 +#: mod/admin.php:647 msgid "SSL link policy" msgstr "Beleid SSL-links" -#: ../../mod/admin.php:639 +#: mod/admin.php:647 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" -#: ../../mod/admin.php:640 +#: mod/admin.php:648 msgid "Force SSL" msgstr "" -#: ../../mod/admin.php:640 +#: mod/admin.php:648 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: ../../mod/admin.php:641 +#: mod/admin.php:649 msgid "Old style 'Share'" msgstr "" -#: ../../mod/admin.php:641 +#: mod/admin.php:649 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/admin.php:642 +#: mod/admin.php:650 msgid "Hide help entry from navigation menu" msgstr "Verberg de 'help' uit het navigatiemenu" -#: ../../mod/admin.php:642 +#: mod/admin.php:650 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." -#: ../../mod/admin.php:643 +#: mod/admin.php:651 msgid "Single user instance" msgstr "Server voor één gebruiker" -#: ../../mod/admin.php:643 +#: mod/admin.php:651 msgid "Make this instance multi-user or single-user for the named user" msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." -#: ../../mod/admin.php:644 +#: mod/admin.php:652 msgid "Maximum image size" msgstr "Maximum afbeeldingsgrootte" -#: ../../mod/admin.php:644 +#: mod/admin.php:652 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." -#: ../../mod/admin.php:645 +#: mod/admin.php:653 msgid "Maximum image length" msgstr "Maximum afbeeldingslengte" -#: ../../mod/admin.php:645 +#: mod/admin.php:653 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." -#: ../../mod/admin.php:646 +#: mod/admin.php:654 msgid "JPEG image quality" msgstr "JPEG afbeeldingskwaliteit" -#: ../../mod/admin.php:646 +#: mod/admin.php:654 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." -#: ../../mod/admin.php:648 +#: mod/admin.php:656 msgid "Register policy" msgstr "Registratiebeleid" -#: ../../mod/admin.php:649 +#: mod/admin.php:657 msgid "Maximum Daily Registrations" msgstr "Maximum aantal registraties per dag" -#: ../../mod/admin.php:649 +#: mod/admin.php:657 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 "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." -#: ../../mod/admin.php:650 +#: mod/admin.php:658 msgid "Register text" msgstr "Registratietekst" -#: ../../mod/admin.php:650 +#: mod/admin.php:658 msgid "Will be displayed prominently on the registration page." msgstr "Dit zal prominent op de registratiepagina getoond worden." -#: ../../mod/admin.php:651 +#: mod/admin.php:659 msgid "Accounts abandoned after x days" msgstr "Verlaten accounts na x dagen" -#: ../../mod/admin.php:651 +#: mod/admin.php:659 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." -#: ../../mod/admin.php:652 +#: mod/admin.php:660 msgid "Allowed friend domains" msgstr "Toegelaten vriend domeinen" -#: ../../mod/admin.php:652 +#: mod/admin.php:660 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." -#: ../../mod/admin.php:653 +#: mod/admin.php:661 msgid "Allowed email domains" msgstr "Toegelaten e-mail domeinen" -#: ../../mod/admin.php:653 +#: mod/admin.php:661 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 "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." -#: ../../mod/admin.php:654 +#: mod/admin.php:662 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: ../../mod/admin.php:654 +#: mod/admin.php:662 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." -#: ../../mod/admin.php:655 +#: mod/admin.php:663 msgid "Force publish" msgstr "Dwing publiceren af" -#: ../../mod/admin.php:655 +#: mod/admin.php:663 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." -#: ../../mod/admin.php:656 +#: mod/admin.php:664 msgid "Global directory update URL" msgstr "Update-adres van de globale gids" -#: ../../mod/admin.php:656 +#: mod/admin.php:664 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing." -#: ../../mod/admin.php:657 +#: mod/admin.php:665 msgid "Allow threaded items" msgstr "Sta threads in conversaties toe" -#: ../../mod/admin.php:657 +#: mod/admin.php:665 msgid "Allow infinite level threading for items on this site." msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." -#: ../../mod/admin.php:658 +#: mod/admin.php:666 msgid "Private posts by default for new users" msgstr "Privéberichten als standaard voor nieuwe gebruikers" -#: ../../mod/admin.php:658 +#: mod/admin.php:666 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." -#: ../../mod/admin.php:659 +#: mod/admin.php:667 msgid "Don't include post content in email notifications" msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" -#: ../../mod/admin.php:659 +#: mod/admin.php:667 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 "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." -#: ../../mod/admin.php:660 +#: mod/admin.php:668 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: ../../mod/admin.php:660 +#: mod/admin.php:668 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: ../../mod/admin.php:661 +#: mod/admin.php:669 msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/admin.php:661 +#: mod/admin.php:669 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 " @@ -5373,319 +2389,335 @@ msgid "" "while." msgstr "" -#: ../../mod/admin.php:662 +#: mod/admin.php:670 msgid "Allow Users to set remote_self" msgstr "" -#: ../../mod/admin.php:662 +#: mod/admin.php:670 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: ../../mod/admin.php:663 +#: mod/admin.php:671 msgid "Block multiple registrations" msgstr "Blokkeer meerdere registraties" -#: ../../mod/admin.php:663 +#: mod/admin.php:671 msgid "Disallow users to register additional accounts for use as pages." msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." -#: ../../mod/admin.php:664 +#: mod/admin.php:672 msgid "OpenID support" msgstr "OpenID ondersteuning" -#: ../../mod/admin.php:664 +#: mod/admin.php:672 msgid "OpenID support for registration and logins." msgstr "OpenID ondersteuning voor registraties en logins." -#: ../../mod/admin.php:665 +#: mod/admin.php:673 msgid "Fullname check" msgstr "Controleer volledige naam" -#: ../../mod/admin.php:665 +#: mod/admin.php:673 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" -#: ../../mod/admin.php:666 +#: mod/admin.php:674 msgid "UTF-8 Regular expressions" msgstr "UTF-8 reguliere uitdrukkingen" -#: ../../mod/admin.php:666 +#: mod/admin.php:674 msgid "Use PHP UTF8 regular expressions" msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" -#: ../../mod/admin.php:667 +#: mod/admin.php:675 msgid "Community Page Style" msgstr "" -#: ../../mod/admin.php:667 +#: mod/admin.php:675 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:676 msgid "Posts per user on community page" msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:676 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: ../../mod/admin.php:669 +#: mod/admin.php:677 msgid "Enable OStatus support" msgstr "Activeer OStatus ondersteuning" -#: ../../mod/admin.php:669 +#: mod/admin.php:677 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: ../../mod/admin.php:670 +#: mod/admin.php:678 msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/admin.php:670 +#: mod/admin.php:678 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: ../../mod/admin.php:671 +#: mod/admin.php:679 msgid "Enable Diaspora support" msgstr "Activeer Diaspora ondersteuning" -#: ../../mod/admin.php:671 +#: mod/admin.php:679 msgid "Provide built-in Diaspora network compatibility." msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." -#: ../../mod/admin.php:672 +#: mod/admin.php:680 msgid "Only allow Friendica contacts" msgstr "Laat alleen Friendica contacten toe" -#: ../../mod/admin.php:672 +#: mod/admin.php:680 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." -#: ../../mod/admin.php:673 +#: mod/admin.php:681 msgid "Verify SSL" msgstr "Controleer SSL" -#: ../../mod/admin.php:673 +#: mod/admin.php:681 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 "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." -#: ../../mod/admin.php:674 +#: mod/admin.php:682 msgid "Proxy user" msgstr "Proxy-gebruiker" -#: ../../mod/admin.php:675 +#: mod/admin.php:683 msgid "Proxy URL" msgstr "Proxy-URL" -#: ../../mod/admin.php:676 +#: mod/admin.php:684 msgid "Network timeout" msgstr "Netwerk timeout" -#: ../../mod/admin.php:676 +#: mod/admin.php:684 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." -#: ../../mod/admin.php:677 +#: mod/admin.php:685 msgid "Delivery interval" msgstr "Afleverinterval" -#: ../../mod/admin.php:677 +#: mod/admin.php:685 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 "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." -#: ../../mod/admin.php:678 +#: mod/admin.php:686 msgid "Poll interval" msgstr "Poll-interval" -#: ../../mod/admin.php:678 +#: mod/admin.php:686 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." -#: ../../mod/admin.php:679 +#: mod/admin.php:687 msgid "Maximum Load Average" msgstr "Maximum gemiddelde belasting" -#: ../../mod/admin.php:679 +#: mod/admin.php:687 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." -#: ../../mod/admin.php:681 +#: mod/admin.php:688 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:688 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:690 msgid "Use MySQL full text engine" msgstr "Gebruik de tekst-zoekfunctie van MySQL" -#: ../../mod/admin.php:681 +#: mod/admin.php:690 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." -#: ../../mod/admin.php:682 +#: mod/admin.php:691 msgid "Suppress Language" msgstr "" -#: ../../mod/admin.php:682 +#: mod/admin.php:691 msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/admin.php:683 +#: mod/admin.php:692 msgid "Suppress Tags" msgstr "" -#: ../../mod/admin.php:683 +#: mod/admin.php:692 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: ../../mod/admin.php:684 +#: mod/admin.php:693 msgid "Path to item cache" msgstr "Pad naar cache voor items" -#: ../../mod/admin.php:685 +#: mod/admin.php:694 msgid "Cache duration in seconds" msgstr "Cache tijdsduur in seconden" -#: ../../mod/admin.php:685 +#: mod/admin.php:694 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "" -#: ../../mod/admin.php:686 +#: mod/admin.php:695 msgid "Maximum numbers of comments per post" msgstr "" -#: ../../mod/admin.php:686 +#: mod/admin.php:695 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: ../../mod/admin.php:687 +#: mod/admin.php:696 msgid "Path for lock file" msgstr "Pad voor lock bestand" -#: ../../mod/admin.php:688 +#: mod/admin.php:697 msgid "Temp path" msgstr "Tijdelijk pad" -#: ../../mod/admin.php:689 +#: mod/admin.php:698 msgid "Base path to installation" msgstr "Basispad voor installatie" -#: ../../mod/admin.php:690 +#: mod/admin.php:699 msgid "Disable picture proxy" msgstr "" -#: ../../mod/admin.php:690 +#: mod/admin.php:699 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "" -#: ../../mod/admin.php:691 +#: mod/admin.php:700 msgid "Enable old style pager" msgstr "" -#: ../../mod/admin.php:691 +#: mod/admin.php:700 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:701 msgid "Only search in tags" msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:701 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: ../../mod/admin.php:694 +#: mod/admin.php:703 msgid "New base url" msgstr "" -#: ../../mod/admin.php:711 +#: mod/admin.php:705 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:705 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:723 msgid "Update has been marked successful" msgstr "Wijziging succesvol gemarkeerd " -#: ../../mod/admin.php:719 +#: mod/admin.php:731 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:722 +#: mod/admin.php:734 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: ../../mod/admin.php:734 +#: mod/admin.php:746 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: ../../mod/admin.php:737 +#: mod/admin.php:749 #, php-format msgid "Update %s was successfully applied." msgstr "Wijziging %s geslaagd." -#: ../../mod/admin.php:741 +#: mod/admin.php:753 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." -#: ../../mod/admin.php:743 +#: mod/admin.php:755 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: ../../mod/admin.php:762 +#: mod/admin.php:774 msgid "No failed updates." msgstr "Geen misluke wijzigingen" -#: ../../mod/admin.php:763 +#: mod/admin.php:775 msgid "Check database structure" msgstr "" -#: ../../mod/admin.php:768 +#: mod/admin.php:780 msgid "Failed Updates" msgstr "Misluke wijzigingen" -#: ../../mod/admin.php:769 +#: mod/admin.php:781 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." -#: ../../mod/admin.php:770 +#: mod/admin.php:782 msgid "Mark success (if update was manually applied)" msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" -#: ../../mod/admin.php:771 +#: mod/admin.php:783 msgid "Attempt to execute this update step automatically" msgstr "Probeer deze stap automatisch uit te voeren" -#: ../../mod/admin.php:803 +#: mod/admin.php:815 #, php-format msgid "" "\n" @@ -5693,7 +2725,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: ../../mod/admin.php:806 +#: mod/admin.php:818 #, php-format msgid "" "\n" @@ -5723,293 +2755,1635 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: ../../mod/admin.php:850 +#: mod/admin.php:850 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Registratie details voor %s" + +#: mod/admin.php:862 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" -#: ../../mod/admin.php:857 +#: mod/admin.php:869 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s gebruiker verwijderd" msgstr[1] "%s gebruikers verwijderd" -#: ../../mod/admin.php:896 +#: mod/admin.php:908 #, php-format msgid "User '%s' deleted" msgstr "Gebruiker '%s' verwijderd" -#: ../../mod/admin.php:904 +#: mod/admin.php:916 #, php-format msgid "User '%s' unblocked" msgstr "Gebruiker '%s' niet meer geblokkeerd" -#: ../../mod/admin.php:904 +#: mod/admin.php:916 #, php-format msgid "User '%s' blocked" msgstr "Gebruiker '%s' geblokkeerd" -#: ../../mod/admin.php:999 +#: mod/admin.php:1009 msgid "Add User" msgstr "Gebruiker toevoegen" -#: ../../mod/admin.php:1000 +#: mod/admin.php:1010 msgid "select all" msgstr "Alles selecteren" -#: ../../mod/admin.php:1001 +#: mod/admin.php:1011 msgid "User registrations waiting for confirm" msgstr "Gebruikersregistraties wachten op een bevestiging" -#: ../../mod/admin.php:1002 +#: mod/admin.php:1012 msgid "User waiting for permanent deletion" msgstr "" -#: ../../mod/admin.php:1003 +#: mod/admin.php:1013 msgid "Request date" msgstr "Registratiedatum" -#: ../../mod/admin.php:1004 +#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 +#: mod/crepair.php:170 mod/settings.php:623 mod/settings.php:649 +msgid "Name" +msgstr "Naam" + +#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" + +#: mod/admin.php:1014 msgid "No registrations." msgstr "Geen registraties." -#: ../../mod/admin.php:1006 +#: mod/admin.php:1016 msgid "Deny" msgstr "Weiger" -#: ../../mod/admin.php:1010 +#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590 +#: mod/contacts.php:757 +msgid "Block" +msgstr "Blokkeren" + +#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590 +#: mod/contacts.php:757 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: mod/admin.php:1020 msgid "Site admin" msgstr "Sitebeheerder" -#: ../../mod/admin.php:1011 +#: mod/admin.php:1021 msgid "Account expired" msgstr "Account verlopen" -#: ../../mod/admin.php:1014 +#: mod/admin.php:1024 msgid "New User" msgstr "Nieuwe gebruiker" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1025 mod/admin.php:1026 msgid "Register date" msgstr "Registratiedatum" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1025 mod/admin.php:1026 msgid "Last login" msgstr "Laatste login" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1025 mod/admin.php:1026 msgid "Last item" msgstr "Laatste item" -#: ../../mod/admin.php:1015 +#: mod/admin.php:1025 msgid "Deleted since" msgstr "Verwijderd sinds" -#: ../../mod/admin.php:1018 +#: mod/admin.php:1026 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1028 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" -#: ../../mod/admin.php:1019 +#: mod/admin.php:1029 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 "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" -#: ../../mod/admin.php:1029 +#: mod/admin.php:1039 msgid "Name of the new user." msgstr "Naam van nieuwe gebruiker" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1040 msgid "Nickname" msgstr "Bijnaam" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1040 msgid "Nickname of the new user." msgstr "Bijnaam van nieuwe gebruiker" -#: ../../mod/admin.php:1031 +#: mod/admin.php:1041 msgid "Email address of the new user." msgstr "E-mailadres van nieuwe gebruiker" -#: ../../mod/admin.php:1064 +#: mod/admin.php:1074 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s uitgeschakeld." -#: ../../mod/admin.php:1068 +#: mod/admin.php:1078 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s ingeschakeld." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: mod/admin.php:1088 mod/admin.php:1304 msgid "Disable" msgstr "Uitschakelen" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: mod/admin.php:1090 mod/admin.php:1306 msgid "Enable" msgstr "Inschakelen" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: mod/admin.php:1113 mod/admin.php:1334 msgid "Toggle" msgstr "Schakelaar" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: mod/admin.php:1121 mod/admin.php:1344 msgid "Author: " msgstr "Auteur:" -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: mod/admin.php:1122 mod/admin.php:1345 msgid "Maintainer: " msgstr "Onderhoud:" -#: ../../mod/admin.php:1254 +#: mod/admin.php:1264 msgid "No themes found." msgstr "Geen thema's gevonden." -#: ../../mod/admin.php:1316 +#: mod/admin.php:1326 msgid "Screenshot" msgstr "Schermafdruk" -#: ../../mod/admin.php:1362 +#: mod/admin.php:1372 msgid "[Experimental]" msgstr "[Experimenteel]" -#: ../../mod/admin.php:1363 +#: mod/admin.php:1373 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: ../../mod/admin.php:1390 +#: mod/admin.php:1400 msgid "Log settings updated." msgstr "Log instellingen gewijzigd" -#: ../../mod/admin.php:1446 +#: mod/admin.php:1456 msgid "Clear" msgstr "Wis" -#: ../../mod/admin.php:1452 +#: mod/admin.php:1462 msgid "Enable Debugging" msgstr "" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1463 msgid "Log file" msgstr "Logbestand" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1463 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." -#: ../../mod/admin.php:1454 +#: mod/admin.php:1464 msgid "Log level" msgstr "Log niveau" -#: ../../mod/admin.php:1504 +#: mod/admin.php:1513 mod/contacts.php:587 +msgid "Update now" +msgstr "Wijzig nu" + +#: mod/admin.php:1514 include/acl_selectors.php:347 msgid "Close" msgstr "Afsluiten" -#: ../../mod/admin.php:1510 +#: mod/admin.php:1520 msgid "FTP Host" msgstr "FTP Server" -#: ../../mod/admin.php:1511 +#: mod/admin.php:1521 msgid "FTP Path" msgstr "FTP Pad" -#: ../../mod/admin.php:1512 +#: mod/admin.php:1522 msgid "FTP User" msgstr "FTP Gebruiker" -#: ../../mod/admin.php:1513 +#: mod/admin.php:1523 msgid "FTP Password" msgstr "FTP wachtwoord" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#: mod/allfriends.php:37 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Afbeelding is groter dan de toegestane %d" +msgid "Friends of %s" +msgstr "Vrienden van %s" -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Geen vrienden om te laten zien." -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Gedeelde Vrienden" -#: ../../mod/home.php:35 +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Geen gedeelde contacten." + +#: mod/contacts.php:114 #, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protocol fout. Geen ID Gevonden." +#: mod/contacts.php:145 mod/contacts.php:340 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de contactgegevens" -#: ../../mod/openid.php:53 +#: mod/contacts.php:159 +msgid "Could not locate selected profile." +msgstr "Kon het geselecteerde profiel niet vinden." + +#: mod/contacts.php:192 +msgid "Contact updated." +msgstr "Contact bijgewerkt." + +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." + +#: mod/contacts.php:361 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" + +#: mod/contacts.php:361 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" + +#: mod/contacts.php:372 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" + +#: mod/contacts.php:372 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" + +#: mod/contacts.php:384 +msgid "Contact has been archived" +msgstr "Contact is gearchiveerd" + +#: mod/contacts.php:384 +msgid "Contact has been unarchived" +msgstr "Contact is niet meer gearchiveerd" + +#: mod/contacts.php:411 mod/contacts.php:754 +msgid "Do you really want to delete this contact?" +msgstr "Wil je echt dit contact verwijderen?" + +#: mod/contacts.php:428 +msgid "Contact has been removed." +msgstr "Contact is verwijderd." + +#: mod/contacts.php:466 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: mod/contacts.php:470 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: mod/contacts.php:475 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: mod/contacts.php:495 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: mod/contacts.php:502 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: mod/contacts.php:502 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: mod/contacts.php:504 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: mod/contacts.php:508 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: mod/contacts.php:511 include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gedeeld contact" +msgstr[1] "%d gedeelde contacten" + +#: mod/contacts.php:516 +msgid "View all contacts" +msgstr "Alle contacten zien" + +#: mod/contacts.php:524 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: mod/contacts.php:530 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: mod/contacts.php:534 mod/contacts.php:759 +msgid "Unarchive" +msgstr "Archiveer niet meer" + +#: mod/contacts.php:534 mod/contacts.php:759 +msgid "Archive" +msgstr "Archiveer" + +#: mod/contacts.php:537 +msgid "Toggle Archive status" +msgstr "Schakel archiveringsstatus" + +#: mod/contacts.php:540 +msgid "Repair" +msgstr "Herstellen" + +#: mod/contacts.php:543 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: mod/contacts.php:549 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: mod/contacts.php:552 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:553 +msgid "Disabled" +msgstr "" + +#: mod/contacts.php:553 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:553 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:562 +msgid "Contact Editor" +msgstr "Contactbewerker" + +#: mod/contacts.php:565 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: mod/contacts.php:566 +#, php-format msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: mod/contacts.php:567 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" -#: ../../mod/network.php:185 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: mod/contacts.php:568 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" -#: ../../mod/network.php:356 +#: mod/contacts.php:574 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" + +#: mod/contacts.php:575 +msgid "Ignore contact" +msgstr "Negeer contact" + +#: mod/contacts.php:576 +msgid "Repair URL settings" +msgstr "Repareer URL-instellingen" + +#: mod/contacts.php:577 +msgid "View conversations" +msgstr "Toon conversaties" + +#: mod/contacts.php:579 +msgid "Delete contact" +msgstr "Verwijder contact" + +#: mod/contacts.php:583 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: mod/contacts.php:585 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: mod/contacts.php:594 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: mod/contacts.php:595 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: mod/contacts.php:596 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: mod/contacts.php:597 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" + +#: mod/contacts.php:598 +msgid "Notification for new posts" +msgstr "Meldingen voor nieuwe berichten" + +#: mod/contacts.php:598 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:601 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:601 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:652 +msgid "Suggestions" +msgstr "Voorstellen" + +#: mod/contacts.php:655 +msgid "Suggest potential friends" +msgstr "Stel vrienden voor" + +#: mod/contacts.php:658 mod/group.php:192 +msgid "All Contacts" +msgstr "Alle Contacten" + +#: mod/contacts.php:661 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: mod/contacts.php:664 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: mod/contacts.php:667 +msgid "Only show unblocked contacts" +msgstr "Toon alleen niet-geblokkeerde contacten" + +#: mod/contacts.php:671 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: mod/contacts.php:674 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: mod/contacts.php:678 +msgid "Ignored" +msgstr "Genegeerd" + +#: mod/contacts.php:681 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: mod/contacts.php:685 +msgid "Archived" +msgstr "Gearchiveerd" + +#: mod/contacts.php:688 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: mod/contacts.php:692 +msgid "Hidden" +msgstr "Verborgen" + +#: mod/contacts.php:695 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: mod/contacts.php:749 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: mod/contacts.php:750 mod/directory.php:63 +msgid "Finding: " +msgstr "Gevonden:" + +#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34 +msgid "Find" +msgstr "Zoek" + +#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647 +msgid "Update" +msgstr "Wijzigen" + +#: mod/contacts.php:773 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: mod/contacts.php:777 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: mod/contacts.php:781 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: mod/content.php:119 mod/network.php:526 +msgid "No such group" +msgstr "Zo'n groep bestaat niet" + +#: mod/content.php:130 mod/network.php:543 +msgid "Group is empty" +msgstr "De groep is leeg" + +#: mod/content.php:135 mod/network.php:554 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "In context bekijken" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Contactinstellingen toegepast." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Aanpassen van contact mislukt." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Contactinstellingen herstellen" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Ga terug naar contactbewerker" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Bijnaam account" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL account" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL vriendschapsverzoek" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL vriendschapsbevestiging" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "URL poll/feed" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nieuwe foto van deze URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:626 +msgid "Profile not found." +msgstr "Profiel niet gevonden" + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwoord van de website op afstand werd niet begrepen." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Onverwacht antwoord van website op afstand:" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bevestiging werd correct voltooid." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Website op afstand berichtte: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Verzoek mislukt of herroepen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Ik kan geen contact foto instellen." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:622 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is nu bevriend met %2$s" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Geen gebruiker gevonden voor '%s'" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "We vonden op onze webstek geen contactrecord voor jou." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 +msgid "[Name Withheld]" +msgstr "[Naam achtergehouden]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s is toegetreden tot %2$s" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Verzoek is al goedgekeurd" + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiel is ongeldig of bevat geen informatie" + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Waarschuwing: Profieladres heeft geen profielfoto." + +#: 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] "De %d vereiste parameter is niet op het gegeven adres gevonden" +msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Verzoek voltooid." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Onherstelbare protocolfout. " + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s heeft te veel verzoeken gehad vandaag." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Geen geldig e-mailadres" + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Je hebt jezelf hier al voorgesteld." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Blijkbaar bent u al bevriend met %s." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ongeldig profiel adres." + +#: mod/dfrn_request.php:507 include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Je verzoek is verzonden." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Log in om je verzoek te bevestigen." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bevestig" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberg dit contact" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Welkom terug %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" + +#: mod/dfrn_request.php:839 +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 "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." + +#: mod/dfrn_request.php:842 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" + +#: mod/dfrn_request.php:843 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:844 mod/follow.php:56 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: mod/dfrn_request.php:845 mod/follow.php:57 +#, php-format +msgid "Does %s know you?" +msgstr "Kent %s jou?" + +#: mod/dfrn_request.php:849 mod/follow.php:58 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" + +#: mod/dfrn_request.php:851 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:852 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Gefedereerde Sociale Web" + +#: mod/dfrn_request.php:853 mod/settings.php:761 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." + +#: mod/dfrn_request.php:855 mod/follow.php:64 +msgid "Your Identity Address:" +msgstr "Adres van uw identiteit:" + +#: mod/dfrn_request.php:858 mod/follow.php:67 +msgid "Submit Request" +msgstr "Aanvraag indienen" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Op deze website zoeken" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Websitegids" + +#: mod/directory.php:129 mod/profiles.php:746 +msgid "Age: " +msgstr "Leeftijd:" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Geslacht:" + +#: mod/directory.php:152 mod/events.php:503 include/bb2diaspora.php:161 +#: include/event.php:42 include/identity.php:268 +msgid "Location:" +msgstr "Plaats:" + +#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 +msgid "Gender:" +msgstr "Geslacht:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +msgid "Status:" +msgstr "Tijdlijn:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +msgid "Homepage:" +msgstr "Website:" + +#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 +msgid "About:" +msgstr "Over:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." + +#: mod/dirfind.php:27 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:62 mod/match.php:73 +msgid "No matches" +msgstr "Geen resultaten" + +#: mod/display.php:343 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "Item is verwijderd." + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "Foto uploaden" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Bestand bijvoegen" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "bestand bijvoegen" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "webadres" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "video adres" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "audio adres" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Stel uw locatie in" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "Stel uw locatie in" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Instellingen van rechten" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Openbare post" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Titel plaatsen" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (komma-gescheiden lijst)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van de gebeurtenis zijn vereist." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: mod/events.php:361 include/text.php:1679 include/text.php:1689 +msgid "link to source" +msgstr "Verwijzing naar bron" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Maak een nieuwe gebeurtenis" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Vorige" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Volgende" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Gebeurtenis details" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Gebeurtenis begint:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Vereist" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/tijd is niet gekend of niet relevant" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Gebeurtenis eindigt:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Pas aan aan de tijdzone van de gebruiker" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Beschrijving:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: mod/follow.php:24 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:106 +msgid "Contact added" +msgstr "Contact toegevoegd" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Groep aangemaakt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Kon de groep niet aanmaken." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Groep niet gevonden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Groepsnaam gewijzigd." + +#: mod/group.php:72 mod/profperm.php:19 index.php:381 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Maak een groep contacten/vrienden aan." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Groepsnaam:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Groep verwijderd." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Niet in staat om groep te verwijderen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Groepsbewerker" + +#: mod/group.php:190 +msgid "Members" +msgstr "Leden" + +#: mod/group.php:222 mod/profperm.php:106 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "Kon geen toegang krijgen tot de database." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Kon tabel niet aanmaken." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "De database van je Friendica-website is geïnstalleerd." + +#: mod/install.php:140 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." + +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Zie het bestand \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:205 +msgid "System check" +msgstr "Systeemcontrole" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Controleer opnieuw" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Verbinding met database" + +#: mod/install.php:230 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." + +#: mod/install.php:231 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " + +#: mod/install.php:232 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." + +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Servernaam database" + +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Gebruikersnaam database" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Wachtwoord database" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Naam database" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "E-mailadres van de websitebeheerder" + +#: mod/install.php:240 mod/install.php:279 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." + +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Selecteer een standaard tijdzone voor uw website" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Website-instellingen" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." + +#: mod/install.php:324 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'" + +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "PATH van het PHP commando" + +#: mod/install.php:328 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." + +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "PHP-opdrachtregel" + +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Gevonden PHP versie:" + +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." + +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "mysqli PHP module" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: mod/install.php:399 mod/install.php:401 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:399 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." + +#: mod/install.php:407 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." + +#: mod/install.php:411 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." + +#: mod/install.php:415 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." + +#: mod/install.php:419 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." + +#: mod/install.php:423 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." + +#: mod/install.php:440 +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 "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." + +#: mod/install.php:441 +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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." + +#: mod/install.php:442 +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 "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." + +#: mod/install.php:443 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." + +#: mod/install.php:446 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is schrijfbaar" + +#: mod/install.php:456 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." + +#: mod/install.php:457 +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 "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." + +#: mod/install.php:458 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." + +#: mod/install.php:459 +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 "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." + +#: mod/install.php:462 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 is schrijfbaar" + +#: mod/install.php:478 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:480 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:489 +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 "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver." + +#: mod/install.php:528 +msgid "

    What next

    " +msgstr "

    Wat nu

    " + +#: mod/install.php:529 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Ik kan de originele post niet meer vinden." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." + +#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178 +#: mod/wall_upload.php:185 include/message.php:144 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "" + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Systeemfout. Post niet bewaard." + +#: mod/item.php:989 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." + +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Je kunt ze online bezoeken op %s" + +#: mod/item.php:992 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." + +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s heeft een wijziging geplaatst." + +#: mod/match.php:13 +msgid "Profile Match" +msgstr "Profielmatch" + +#: mod/match.php:22 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." + +#: mod/match.php:64 +msgid "is interested in:" +msgstr "Is geïnteresseerd in:" + +#: mod/match.php:65 mod/suggest.php:92 include/contact_widgets.php:10 +#: include/identity.php:188 +msgid "Connect" +msgstr "Verbinden" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "toevoegen" + +#: mod/network.php:358 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../mod/network.php:359 +#: mod/network.php:361 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../mod/network.php:362 +#: mod/network.php:364 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../mod/network.php:365 +#: mod/network.php:367 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../mod/network.php:374 +#: mod/network.php:376 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" -#: ../../mod/network.php:380 +#: mod/network.php:382 msgid "New" msgstr "Nieuw" -#: ../../mod/network.php:383 +#: mod/network.php:385 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../mod/network.php:389 +#: mod/network.php:391 msgid "Shared Links" msgstr "Gedeelde links" -#: ../../mod/network.php:392 +#: mod/network.php:394 msgid "Interesting Links" msgstr "Interessante links" -#: ../../mod/network.php:398 +#: mod/network.php:400 msgid "Starred" msgstr "Met ster" -#: ../../mod/network.php:401 +#: mod/network.php:403 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../mod/network.php:463 +#: mod/network.php:460 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -6017,1913 +4391,3570 @@ msgid_plural "" msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk." msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk." -#: ../../mod/network.php:466 +#: mod/network.php:463 msgid "Private messages to this group are at risk of public disclosure." msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden." -#: ../../mod/network.php:520 ../../mod/content.php:119 -msgid "No such group" -msgstr "Zo'n groep bestaat niet" +#: mod/network.php:572 +#, php-format +msgid "Contact: %s" +msgstr "" -#: ../../mod/network.php:537 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "De groep is leeg" - -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Groep:" - -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Contact: " - -#: ../../mod/network.php:556 +#: mod/network.php:576 msgid "Private messages to this person are at risk of public disclosure." msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." -#: ../../mod/network.php:561 +#: mod/network.php:581 msgid "Invalid contact." msgstr "Ongeldig contact." -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- Kies -" +#: mod/notes.php:44 include/identity.php:670 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" -#: ../../mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dit is Friendica, versie" +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" -#: ../../mod/friendica.php:60 -msgid "running at web location" -msgstr "draaiend op web-adres" +#: mod/photos.php:84 include/identity.php:649 +msgid "Photo Albums" +msgstr "Fotoalbums" -#: ../../mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Recente foto's" -#: ../../mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" - -#: ../../mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" - -#: ../../mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Geïnstalleerde plugins/toepassingen:" - -#: ../../mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Geen plugins of toepassingen geïnstalleerd" - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Toepassingen" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" -#: ../../mod/photos.php:144 +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "iedereen" + +#: mod/photos.php:166 msgid "Contact information unavailable" msgstr "Contactinformatie niet beschikbaar" -#: ../../mod/photos.php:165 +#: mod/photos.php:187 msgid "Album not found." msgstr "Album niet gevonden" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 msgid "Delete Album" msgstr "Verwijder album" -#: ../../mod/photos.php:198 +#: mod/photos.php:220 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 msgid "Delete Photo" msgstr "Verwijder foto" -#: ../../mod/photos.php:287 +#: mod/photos.php:309 msgid "Do you really want to delete this photo?" msgstr "Wil je echt deze foto verwijderen?" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s is gelabeld in %2$s door %3$s" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 msgid "a photo" msgstr "een foto" -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Afbeelding is groter dan de maximale afmeting van" +#: mod/photos.php:789 mod/profile_photo.php:144 mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" -#: ../../mod/photos.php:775 +#: mod/photos.php:797 msgid "Image file is empty." msgstr "Afbeeldingsbestand is leeg." -#: ../../mod/photos.php:930 +#: mod/photos.php:829 mod/profile_photo.php:153 mod/wall_upload.php:144 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" + +#: mod/photos.php:856 mod/profile_photo.php:301 mod/wall_upload.php:172 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." + +#: mod/photos.php:952 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: ../../mod/photos.php:1094 +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: mod/photos.php:1114 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." -#: ../../mod/photos.php:1129 +#: mod/photos.php:1149 msgid "Upload Photos" msgstr "Upload foto's" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +#: mod/photos.php:1153 mod/photos.php:1219 msgid "New album name: " msgstr "Nieuwe albumnaam: " -#: ../../mod/photos.php:1134 +#: mod/photos.php:1154 msgid "or existing album name: " msgstr "of bestaande albumnaam: " -#: ../../mod/photos.php:1135 +#: mod/photos.php:1155 msgid "Do not show a status post for this upload" msgstr "Toon geen bericht op je tijdlijn van deze upload" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 msgid "Permissions" msgstr "Rechten" -#: ../../mod/photos.php:1148 +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1172 +msgid "Show to Groups" +msgstr "Tonen aan groepen" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1173 +msgid "Show to Contacts" +msgstr "Tonen aan contacten" + +#: mod/photos.php:1168 msgid "Private Photo" msgstr "Privé foto" -#: ../../mod/photos.php:1149 +#: mod/photos.php:1169 msgid "Public Photo" msgstr "Publieke foto" -#: ../../mod/photos.php:1212 +#: mod/photos.php:1232 msgid "Edit Album" msgstr "Album wijzigen" -#: ../../mod/photos.php:1218 +#: mod/photos.php:1238 msgid "Show Newest First" msgstr "Toon niewste eerst" -#: ../../mod/photos.php:1220 +#: mod/photos.php:1240 msgid "Show Oldest First" msgstr "Toon oudste eerst" -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +#: mod/photos.php:1268 mod/photos.php:1821 msgid "View Photo" msgstr "Bekijk foto" -#: ../../mod/photos.php:1294 +#: mod/photos.php:1314 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." -#: ../../mod/photos.php:1296 +#: mod/photos.php:1316 msgid "Photo not available" msgstr "Foto is niet beschikbaar" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "View photo" msgstr "Bekijk foto" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "Edit photo" msgstr "Bewerk foto" -#: ../../mod/photos.php:1353 +#: mod/photos.php:1373 msgid "Use as profile photo" msgstr "Gebruik als profielfoto" -#: ../../mod/photos.php:1378 +#: mod/photos.php:1398 msgid "View Full Size" msgstr "Bekijk in volledig formaat" -#: ../../mod/photos.php:1457 +#: mod/photos.php:1477 msgid "Tags: " msgstr "Labels: " -#: ../../mod/photos.php:1460 +#: mod/photos.php:1480 msgid "[Remove any tag]" msgstr "[Alle labels verwijderen]" -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: ../../mod/photos.php:1503 +#: mod/photos.php:1520 msgid "New album name" msgstr "Nieuwe albumnaam" -#: ../../mod/photos.php:1506 +#: mod/photos.php:1521 msgid "Caption" msgstr "Onderschrift" -#: ../../mod/photos.php:1508 +#: mod/photos.php:1522 msgid "Add a Tag" msgstr "Een label toevoegen" -#: ../../mod/photos.php:1512 +#: mod/photos.php:1522 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " -#: ../../mod/photos.php:1521 +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: mod/photos.php:1540 msgid "Private photo" msgstr "Privé foto" -#: ../../mod/photos.php:1522 +#: mod/photos.php:1541 msgid "Public photo" msgstr "Publieke foto" -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Recente foto's" +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Delen" -#: ../../mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Album bekijken" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact toegevoegd" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account verplaatsen" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Je kunt een account van een andere Friendica server importeren." - -#: ../../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 "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." - -#: ../../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 "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Account bestand" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Totale uitnodigingslimiet overschreden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Geen geldig e-mailadres." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Kom bij ons op Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Aflevering van bericht mislukt." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Je kunt geen uitnodigingen meer sturen" - -#: ../../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 "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." - -#: ../../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 servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Verstuur uitnodigingen" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Vul e-mailadressen in, één per lijn:" - -#: ../../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 "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" - -#: ../../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 "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Toegang geweigerd" - -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." - -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." - -#: ../../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/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 "" - -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" - -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." - -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." - -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Je nieuwe wachtwoord is" - -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" - -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "klik hier om in te loggen" - -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." - -#: ../../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/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 "" - -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Je wachtwoord is veranderd op %s" - -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." - -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Bijnaam of e-mail:" - -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Opnieuw" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Bron (bbcode) tekst:" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Bron ingave:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (ruwe HTML):" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Bron ingave (Diaspora formaat):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Label verwijderd" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Verwijder label van item" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecteer een label om te verwijderen: " - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Verwijder mijn account" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Voer je wachtwoord in voor verificatie:" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificatie." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle contacten (met veilige profieltoegang)" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profielmatch" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "Is geïnteresseerd in:" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van de gebeurtenis zijn vereist." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Vorige" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Volgende" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "uur:minuut" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Gebeurtenis details" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formaat is %s %s. Begindatum en titel zijn vereist." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Gebeurtenis begint:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Vereist" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/tijd is niet gekend of niet relevant" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Gebeurtenis eindigt:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Pas aan aan de tijdzone van de gebruiker" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Beschrijving:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/ping.php:240 +#: mod/ping.php:233 msgid "{0} wants to be your friend" msgstr "{0} wilt je vriend worden" -#: ../../mod/ping.php:245 +#: mod/ping.php:248 msgid "{0} sent you a message" msgstr "{0} stuurde jou een bericht" -#: ../../mod/ping.php:250 +#: mod/ping.php:263 msgid "{0} requested registration" msgstr "{0} vroeg om zich te registreren" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} gaf een reactie op het bericht van %s" +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Gevraagde profiel is niet beschikbaar." -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} vond het bericht van %s leuk" +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} vond het bericht van %s niet leuk" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} is nu bevriend met %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} plaatste" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} labelde %s's bericht met #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} vermeldde je in een bericht" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stemming" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Stel je huidige stemming in, en vertel het je vrienden" - -#: ../../mod/search.php:174 ../../mod/community.php:62 -#: ../../mod/community.php:71 -msgid "No results." -msgstr "Geen resultaten." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Ik kan geen contact informatie vinden." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Gesprek verwijderd." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Geen berichten." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Onbekende afzender - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Jij en %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s en jij" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Verwijder gesprek" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d bericht" -msgstr[1] "%d berichten" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Bericht niet beschikbaar." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Verwijder bericht" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Verstuur Antwoord" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:179 ../../mod/profiles.php:630 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profiel niet gevonden" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profiel verwijderd" - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profiel-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen." - -#: ../../mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist." - -#: ../../mod/profiles.php:340 -msgid "Marital Status" -msgstr "Echtelijke staat" - -#: ../../mod/profiles.php:344 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../mod/profiles.php:348 -msgid "Likes" -msgstr "Houdt van" - -#: ../../mod/profiles.php:352 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: ../../mod/profiles.php:356 -msgid "Work/Employment" -msgstr "Werk" - -#: ../../mod/profiles.php:359 -msgid "Religion" -msgstr "Godsdienst" - -#: ../../mod/profiles.php:363 -msgid "Political Views" -msgstr "Politieke standpunten" - -#: ../../mod/profiles.php:367 -msgid "Gender" -msgstr "Geslacht" - -#: ../../mod/profiles.php:371 -msgid "Sexual Preference" -msgstr "Seksuele Voorkeur" - -#: ../../mod/profiles.php:375 -msgid "Homepage" -msgstr "Tijdlijn" - -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:383 -msgid "Address" -msgstr "Adres" - -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 -msgid "Location" -msgstr "Plaats" - -#: ../../mod/profiles.php:473 -msgid "Profile updated." -msgstr "Profiel bijgewerkt." - -#: ../../mod/profiles.php:568 -msgid " and " -msgstr "en" - -#: ../../mod/profiles.php:576 -msgid "public profile" -msgstr "publiek profiel" - -#: ../../mod/profiles.php:579 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: ../../mod/profiles.php:580 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Bezoek %2$s van %1$s" - -#: ../../mod/profiles.php:583 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." - -#: ../../mod/profiles.php:658 -msgid "Hide contacts and friends:" -msgstr "" - -#: ../../mod/profiles.php:663 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" - -#: ../../mod/profiles.php:685 -msgid "Edit Profile Details" -msgstr "Profieldetails bewerken" - -#: ../../mod/profiles.php:687 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Dit profiel bekijken" - -#: ../../mod/profiles.php:689 -msgid "Create a new profile using these settings" -msgstr "Nieuw profiel aanmaken met deze instellingen" - -#: ../../mod/profiles.php:690 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: ../../mod/profiles.php:691 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: ../../mod/profiles.php:692 -msgid "Basic information" -msgstr "" - -#: ../../mod/profiles.php:693 -msgid "Profile picture" -msgstr "" - -#: ../../mod/profiles.php:695 -msgid "Preferences" -msgstr "" - -#: ../../mod/profiles.php:696 -msgid "Status information" -msgstr "" - -#: ../../mod/profiles.php:697 -msgid "Additional information" -msgstr "" - -#: ../../mod/profiles.php:699 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Profiel Naam:" - -#: ../../mod/profiles.php:701 -msgid "Your Full Name:" -msgstr "Je volledige naam:" - -#: ../../mod/profiles.php:702 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: ../../mod/profiles.php:703 -msgid "Your Gender:" -msgstr "Je Geslacht:" - -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Geboortedatum (%s):" - -#: ../../mod/profiles.php:705 -msgid "Street Address:" -msgstr "Postadres:" - -#: ../../mod/profiles.php:706 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: ../../mod/profiles.php:707 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: ../../mod/profiles.php:708 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:709 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: ../../mod/profiles.php:710 -msgid " Marital Status:" -msgstr " Echtelijke Staat:" - -#: ../../mod/profiles.php:711 -msgid "Who: (if applicable)" -msgstr "Wie: (indien toepasbaar)" - -#: ../../mod/profiles.php:712 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" - -#: ../../mod/profiles.php:713 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: ../../mod/profiles.php:715 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: ../../mod/profiles.php:718 -msgid "Religious Views:" -msgstr "Geloof:" - -#: ../../mod/profiles.php:719 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: ../../mod/profiles.php:720 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: ../../mod/profiles.php:723 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: vissen fotografie software" - -#: ../../mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" - -#: ../../mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: ../../mod/profiles.php:726 -msgid "Tell us about yourself..." -msgstr "Vertel iets over jezelf..." - -#: ../../mod/profiles.php:727 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: ../../mod/profiles.php:728 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../mod/profiles.php:729 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: ../../mod/profiles.php:730 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: ../../mod/profiles.php:731 -msgid "Television" -msgstr "Televisie" - -#: ../../mod/profiles.php:732 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: ../../mod/profiles.php:733 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: ../../mod/profiles.php:734 -msgid "Work/employment" -msgstr "Werk" - -#: ../../mod/profiles.php:735 -msgid "School/education" -msgstr "School/opleiding" - -#: ../../mod/profiles.php:740 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." - -#: ../../mod/profiles.php:750 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../mod/profiles.php:803 -msgid "Edit/Manage Profiles" -msgstr "Wijzig/Beheer Profielen" - -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Kon geen toegang krijgen tot de database." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Kon tabel niet aanmaken." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "De database van je Friendica-website is geïnstalleerd." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Zie het bestand \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Systeemcontrole" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Controleer opnieuw" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Verbinding met database" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Servernaam database" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Gebruikersnaam database" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Wachtwoord database" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Naam database" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "E-mailadres van de websitebeheerder" - -#: ../../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 "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Selecteer een standaard tijdzone voor uw website" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Website-instellingen" - -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." - -#: ../../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 "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'" - -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "PATH van het PHP commando" - -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." - -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "PHP-opdrachtregel" - -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Gevonden PHP versie:" - -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "" - -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." - -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP module" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" - -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." - -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." - -#: ../../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 "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." - -#: ../../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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." - -#: ../../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 "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." - -#: ../../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 "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." - -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is schrijfbaar" - -#: ../../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 gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." - -#: ../../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 "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." - -#: ../../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 "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." - -#: ../../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 "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." - -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 is schrijfbaar" - -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/install.php:484 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver." - -#: ../../mod/install.php:523 -msgid "

    What next

    " -msgstr "

    Wat nu

    " - -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." - -#: ../../mod/help.php:31 -msgid "Help:" -msgstr "Help:" - -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." -msgstr "Contactinstellingen toegepast." - -#: ../../mod/crepair.php:108 -msgid "Contact update failed." -msgstr "Aanpassen van contact mislukt." - -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" -msgstr "Contactinstellingen herstellen" - -#: ../../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/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." - -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" -msgstr "Ga terug naar contactbewerker" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "No mirroring" -msgstr "" - -#: ../../mod/crepair.php:159 -msgid "Mirror as forwarded posting" -msgstr "" - -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 -msgid "Mirror as my own posting" -msgstr "" - -#: ../../mod/crepair.php:166 -msgid "Account Nickname" -msgstr "Bijnaam account" - -#: ../../mod/crepair.php:167 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" - -#: ../../mod/crepair.php:168 -msgid "Account URL" -msgstr "URL account" - -#: ../../mod/crepair.php:169 -msgid "Friend Request URL" -msgstr "URL vriendschapsverzoek" - -#: ../../mod/crepair.php:170 -msgid "Friend Confirm URL" -msgstr "URL vriendschapsbevestiging" - -#: ../../mod/crepair.php:171 -msgid "Notification Endpoint URL" -msgstr "" - -#: ../../mod/crepair.php:172 -msgid "Poll/Feed URL" -msgstr "URL poll/feed" - -#: ../../mod/crepair.php:173 -msgid "New photo from this URL" -msgstr "Nieuwe foto van deze URL" - -#: ../../mod/crepair.php:174 -msgid "Remote Self" -msgstr "" - -#: ../../mod/crepair.php:176 -msgid "Mirror postings from this contact" -msgstr "" - -#: ../../mod/crepair.php:176 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Welkom bij Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checklist voor nieuwe leden" - -#: ../../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 "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Aan de slag" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Doorloop Friendica" - -#: ../../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 "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Ga naar je instellingen" - -#: ../../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 "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web." - -#: ../../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 "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." - -#: ../../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 "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Bewerk je profiel" - -#: ../../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 "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Sleutelwoorden voor dit profiel" - -#: ../../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 "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbinding aan het maken" - -#: ../../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 "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren." - -#: ../../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 "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "E-mails importeren" - -#: ../../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 "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Ga naar je contactenpagina" - -#: ../../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 "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Ga naar de gids van je website" - -#: ../../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 "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Nieuwe mensen vinden" - -#: ../../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 "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Groepeer je contacten" - -#: ../../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 "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. " - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Waarom zijn mijn berichten niet openbaar?" - -#: ../../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 respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hulp krijgen" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Ga naar de help" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "aanstoten, porren of andere dingen met iemand doen" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Ontvanger" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Dit bericht privé maken" - -#: ../../mod/display.php:496 -msgid "Item has been removed." -msgstr "Item is verwijderd." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt %3$s van %2$s" - -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heet %2$s van harte welkom" - -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." - -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwoord van de website op afstand werd niet begrepen." - -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Onverwacht antwoord van website op afstand:" - -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bevestiging werd correct voltooid." - -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Website op afstand berichtte: " - -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." - -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Verzoek mislukt of herroepen." - -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Ik kan geen contact foto instellen." - -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " -msgstr "Geen gebruiker gevonden voor '%s'" - -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." - -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." - -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "We vonden op onze webstek geen contactrecord voor jou." - -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." - -#: ../../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 "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s is toegetreden tot %2$s" - -#: ../../mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Ik kan de originele post niet meer vinden." - -#: ../../mod/item.php:346 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." - -#: ../../mod/item.php:839 -msgid "System error. Post not saved." -msgstr "Systeemfout. Post niet bewaard." - -#: ../../mod/item.php:965 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." - -#: ../../mod/item.php:967 -#, php-format -msgid "You may visit them online at %s" -msgstr "Je kunt ze online bezoeken op %s" - -#: ../../mod/item.php:968 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." - -#: ../../mod/item.php:972 -#, php-format -msgid "%s posted an update." -msgstr "%s heeft een wijziging geplaatst." - -#: ../../mod/profile_photo.php:44 +#: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: 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 "Verkleining van de afbeelding [%s] mislukt." -#: ../../mod/profile_photo.php:118 +#: mod/profile_photo.php:118 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." -#: ../../mod/profile_photo.php:128 +#: mod/profile_photo.php:128 msgid "Unable to process image" msgstr "Ik kan de afbeelding niet verwerken" -#: ../../mod/profile_photo.php:242 +#: mod/profile_photo.php:242 msgid "Upload File:" msgstr "Upload bestand:" -#: ../../mod/profile_photo.php:243 +#: mod/profile_photo.php:243 msgid "Select a profile:" msgstr "Kies een profiel:" -#: ../../mod/profile_photo.php:245 +#: mod/profile_photo.php:245 msgid "Upload" msgstr "Uploaden" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 mod/settings.php:1088 +msgid "or" +msgstr "of" + +#: mod/profile_photo.php:248 msgid "skip this step" msgstr "Deze stap overslaan" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "Kies een foto uit je fotoalbums" -#: ../../mod/profile_photo.php:262 +#: mod/profile_photo.php:262 msgid "Crop Image" msgstr "Afbeelding bijsnijden" -#: ../../mod/profile_photo.php:263 +#: mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." -#: ../../mod/profile_photo.php:265 +#: mod/profile_photo.php:265 msgid "Done Editing" msgstr "Wijzigingen compleet" -#: ../../mod/profile_photo.php:299 +#: mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Uploaden van afbeelding gelukt." -#: ../../mod/allfriends.php:34 +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profiel verwijderd" + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profiel-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Echtelijke staat" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Houdt van" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Werk" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Godsdienst" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Politieke standpunten" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Geslacht" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Seksuele Voorkeur" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Tijdlijn" + +#: mod/profiles.php:375 mod/profiles.php:694 +msgid "Interests" +msgstr "Interesses" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Adres" + +#: mod/profiles.php:386 mod/profiles.php:690 +msgid "Location" +msgstr "Plaats" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profiel bijgewerkt." + +#: mod/profiles.php:564 +msgid " and " +msgstr "en" + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "publiek profiel" + +#: mod/profiles.php:575 #, php-format -msgid "Friends of %s" -msgstr "Vrienden van %s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Geen vrienden om te laten zien." +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Bezoek %2$s van %1$s" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Op deze website zoeken" +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Websitegids" +#: mod/profiles.php:654 +msgid "Hide contacts and friends:" +msgstr "" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Geslacht:" +#: mod/profiles.php:659 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." +#: mod/profiles.php:681 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Tijdsconversie" +#: mod/profiles.php:683 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" -#: ../../mod/localtime.php:26 +#: mod/profiles.php:684 +msgid "View this profile" +msgstr "Dit profiel bekijken" + +#: mod/profiles.php:685 +msgid "Create a new profile using these settings" +msgstr "Nieuw profiel aanmaken met deze instellingen" + +#: mod/profiles.php:686 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: mod/profiles.php:687 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: mod/profiles.php:688 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:689 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:691 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:692 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:693 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:696 +msgid "Profile Name:" +msgstr "Profiel Naam:" + +#: mod/profiles.php:697 +msgid "Your Full Name:" +msgstr "Je volledige naam:" + +#: mod/profiles.php:698 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: mod/profiles.php:699 +msgid "Your Gender:" +msgstr "Je Geslacht:" + +#: mod/profiles.php:700 +msgid "Birthday :" +msgstr "" + +#: mod/profiles.php:701 +msgid "Street Address:" +msgstr "Postadres:" + +#: mod/profiles.php:702 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: mod/profiles.php:703 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: mod/profiles.php:704 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:705 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: mod/profiles.php:706 +msgid " Marital Status:" +msgstr " Echtelijke Staat:" + +#: mod/profiles.php:707 +msgid "Who: (if applicable)" +msgstr "Wie: (indien toepasbaar)" + +#: mod/profiles.php:708 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" + +#: mod/profiles.php:709 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: mod/profiles.php:710 include/identity.php:569 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: mod/profiles.php:711 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: mod/profiles.php:712 include/identity.php:573 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: mod/profiles.php:713 include/identity.php:577 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: mod/profiles.php:714 +msgid "Religious Views:" +msgstr "Geloof:" + +#: mod/profiles.php:715 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: mod/profiles.php:716 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: mod/profiles.php:717 include/identity.php:585 +msgid "Likes:" +msgstr "Houdt van:" + +#: mod/profiles.php:718 include/identity.php:587 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: mod/profiles.php:719 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: vissen fotografie software" + +#: mod/profiles.php:720 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" + +#: mod/profiles.php:721 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: mod/profiles.php:722 +msgid "Tell us about yourself..." +msgstr "Vertel iets over jezelf..." + +#: mod/profiles.php:723 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: mod/profiles.php:724 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: mod/profiles.php:725 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: mod/profiles.php:726 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: mod/profiles.php:727 +msgid "Television" +msgstr "Televisie" + +#: mod/profiles.php:728 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: mod/profiles.php:729 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: mod/profiles.php:730 +msgid "Work/employment" +msgstr "Werk" + +#: mod/profiles.php:731 +msgid "School/education" +msgstr "School/opleiding" + +#: mod/profiles.php:736 msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." -#: ../../mod/localtime.php:30 +#: mod/profiles.php:799 +msgid "Edit/Manage Profiles" +msgstr "Wijzig/Beheer Profielen" + +#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Profiel foto wijzigen" + +#: mod/profiles.php:801 include/identity.php:232 +msgid "Create New Profile" +msgstr "Maak nieuw profiel" + +#: mod/profiles.php:812 include/identity.php:242 +msgid "Profile Image" +msgstr "Profiel afbeelding" + +#: mod/profiles.php:814 include/identity.php:245 +msgid "visible to everybody" +msgstr "zichtbaar voor iedereen" + +#: mod/profiles.php:815 include/identity.php:246 +msgid "Edit visibility" +msgstr "Pas zichtbaarheid aan" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificatie." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle contacten (met veilige profieltoegang)" + +#: mod/search.php:180 #, php-format -msgid "UTC time: %s" -msgstr "UTC tijd: %s" +msgid "Items tagged with: %s" +msgstr "" -#: ../../mod/localtime.php:33 +#: mod/search.php:182 #, php-format -msgid "Current timezone: %s" -msgstr "Huidige Tijdzone: %s" +msgid "Search results for: %s" +msgstr "" -#: ../../mod/localtime.php:36 +#: mod/share.php:38 +msgid "link" +msgstr "link" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Wil je echt dit voorstel verwijderen?" + +#: mod/suggest.php:76 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." + +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Geen video's geselecteerd" + +#: mod/videos.php:373 include/text.php:1429 +msgid "View Video" +msgstr "Bekijk Video" + +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Recente video's" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Nieuwe video's uploaden" + +#: mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:81 #, php-format -msgid "Converted localtime: %s" -msgstr "Omgerekende lokale tijd: %s" +msgid "File exceeds size limit of %s" +msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selecteer je tijdzone:" +#: mod/wall_attach.php:122 mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "Je uitnodigingsid:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Je volledige naam (bijv. Jan Jansens):" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Je email adres:" + +#: mod/register.php:271 mod/settings.php:1144 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:272 mod/settings.php:1145 +msgid "Confirm:" +msgstr "Bevestig:" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: mod/register.php:277 include/nav.php:109 boot.php:1238 +msgid "Register" +msgstr "Registreer" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/settings.php:46 +msgid "Additional features" +msgstr "Extra functies" + +#: mod/settings.php:51 +msgid "Display" +msgstr "Weergave" + +#: mod/settings.php:57 mod/settings.php:805 +msgid "Social Networks" +msgstr "Sociale netwerken" + +#: mod/settings.php:67 include/nav.php:171 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:72 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:82 +msgid "Remove account" +msgstr "Account verwijderen" + +#: mod/settings.php:134 +msgid "Missing some important data!" +msgstr "Een belangrijk gegeven ontbreekt!" + +#: mod/settings.php:245 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." + +#: mod/settings.php:250 +msgid "Email settings updated." +msgstr "E-mail instellingen bijgewerkt.." + +#: mod/settings.php:265 +msgid "Features updated" +msgstr "Functies bijgewerkt" + +#: mod/settings.php:328 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:342 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." + +#: mod/settings.php:347 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." + +#: mod/settings.php:355 +msgid "Wrong password." +msgstr "Verkeerd wachtwoord." + +#: mod/settings.php:366 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." + +#: mod/settings.php:368 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." + +#: mod/settings.php:435 +msgid " Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: mod/settings.php:437 +msgid " Name too short." +msgstr "Naam te kort." + +#: mod/settings.php:446 +msgid "Wrong Password" +msgstr "Verkeerd wachtwoord" + +#: mod/settings.php:451 +msgid " Not valid email." +msgstr "Geen geldig e-mailadres." + +#: mod/settings.php:457 +msgid " Cannot change to that email." +msgstr "Kan niet veranderen naar die e-mail." + +#: mod/settings.php:513 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." + +#: mod/settings.php:517 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." + +#: mod/settings.php:547 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 +msgid "Add application" +msgstr "Toepassing toevoegen" + +#: mod/settings.php:624 mod/settings.php:650 +msgid "Consumer Key" +msgstr "Gebruikerssleutel" + +#: mod/settings.php:625 mod/settings.php:651 +msgid "Consumer Secret" +msgstr "Gebruikersgeheim" + +#: mod/settings.php:626 mod/settings.php:652 +msgid "Redirect" +msgstr "Doorverwijzing" + +#: mod/settings.php:627 mod/settings.php:653 +msgid "Icon url" +msgstr "URL pictogram" + +#: mod/settings.php:638 +msgid "You can't edit this application." +msgstr "Je kunt deze toepassing niet wijzigen." + +#: mod/settings.php:681 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:685 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:686 +msgid "No name" +msgstr "Geen naam" + +#: mod/settings.php:687 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: mod/settings.php:699 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:707 +msgid "Plugin Settings" +msgstr "Plugin Instellingen" + +#: mod/settings.php:721 +msgid "Off" +msgstr "Uit" + +#: mod/settings.php:721 +msgid "On" +msgstr "Aan" + +#: mod/settings.php:729 +msgid "Additional Features" +msgstr "Extra functies" + +#: mod/settings.php:739 mod/settings.php:743 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:749 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:751 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:761 mod/settings.php:762 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" + +#: mod/settings.php:761 mod/settings.php:762 +msgid "enabled" +msgstr "ingeschakeld" + +#: mod/settings.php:761 mod/settings.php:762 +msgid "disabled" +msgstr "uitgeschakeld" + +#: mod/settings.php:762 +msgid "StatusNet" +msgstr "StatusNet" + +#: mod/settings.php:798 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: mod/settings.php:810 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: mod/settings.php:811 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." + +#: mod/settings.php:812 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: mod/settings.php:814 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: mod/settings.php:815 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: mod/settings.php:816 +msgid "Security:" +msgstr "Beveiliging:" + +#: mod/settings.php:816 mod/settings.php:821 +msgid "None" +msgstr "Geen" + +#: mod/settings.php:817 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: mod/settings.php:818 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: mod/settings.php:819 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: mod/settings.php:820 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: mod/settings.php:821 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: mod/settings.php:821 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" + +#: mod/settings.php:821 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: mod/settings.php:822 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: mod/settings.php:903 +msgid "Display Settings" +msgstr "Scherminstellingen" + +#: mod/settings.php:909 mod/settings.php:925 +msgid "Display Theme:" +msgstr "Schermthema:" + +#: mod/settings.php:910 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: mod/settings.php:911 +msgid "Update browser every xx seconds" +msgstr "Browser elke xx seconden verversen" + +#: mod/settings.php:911 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 seconden, geen maximum" + +#: mod/settings.php:912 +msgid "Number of items to display per page:" +msgstr "Aantal items te tonen per pagina:" + +#: mod/settings.php:912 mod/settings.php:913 +msgid "Maximum of 100 items" +msgstr "Maximum 100 items" + +#: mod/settings.php:913 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" + +#: mod/settings.php:914 +msgid "Don't show emoticons" +msgstr "Emoticons niet tonen" + +#: mod/settings.php:915 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:916 +msgid "Infinite scroll" +msgstr "Oneindig scrollen" + +#: mod/settings.php:917 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:995 +msgid "User Types" +msgstr "Gebruikerstypes" + +#: mod/settings.php:996 +msgid "Community Types" +msgstr "Forum/groepstypes" + +#: mod/settings.php:997 +msgid "Normal Account Page" +msgstr "Normale accountpagina" + +#: mod/settings.php:998 +msgid "This account is a normal personal profile" +msgstr "Deze account is een normaal persoonlijk profiel" + +#: mod/settings.php:1001 +msgid "Soapbox Page" +msgstr "Zeepkist-pagina" + +#: mod/settings.php:1002 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." + +#: mod/settings.php:1005 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/groeps- of beroemdheid-account" + +#: mod/settings.php:1006 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." + +#: mod/settings.php:1009 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: mod/settings.php:1010 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." + +#: mod/settings.php:1013 +msgid "Private Forum [Experimental]" +msgstr "Privé-forum [experimenteel]" + +#: mod/settings.php:1014 +msgid "Private forum - approved members only" +msgstr "Privé-forum - enkel voor goedgekeurde leden" + +#: mod/settings.php:1026 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1026 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." + +#: mod/settings.php:1036 +msgid "Publish your default profile in your local site directory?" +msgstr "Je standaardprofiel in je lokale gids publiceren?" + +#: mod/settings.php:1042 +msgid "Publish your default profile in the global social directory?" +msgstr "Je standaardprofiel in de globale sociale gids publiceren?" + +#: mod/settings.php:1050 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" + +#: mod/settings.php:1054 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Je profieldetails verbergen voor onbekende bezoekers?" + +#: mod/settings.php:1054 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1059 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jou profielpagina te posten?" + +#: mod/settings.php:1065 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: mod/settings.php:1071 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" + +#: mod/settings.php:1077 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: mod/settings.php:1085 +msgid "Profile is not published." +msgstr "Profiel is niet gepubliceerd." + +#: mod/settings.php:1093 +msgid "Your Identity Address is" +msgstr "Jouw Identiteitsadres is" + +#: mod/settings.php:1102 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: mod/settings.php:1102 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." + +#: mod/settings.php:1103 +msgid "Advanced expiration settings" +msgstr "Geavanceerde instellingen voor vervallen" + +#: mod/settings.php:1104 +msgid "Advanced Expiration" +msgstr "Geavanceerd Verval:" + +#: mod/settings.php:1105 +msgid "Expire posts:" +msgstr "Laat berichten vervallen:" + +#: mod/settings.php:1106 +msgid "Expire personal notes:" +msgstr "Laat persoonlijke aantekeningen verlopen:" + +#: mod/settings.php:1107 +msgid "Expire starred posts:" +msgstr "Laat berichten met ster verlopen" + +#: mod/settings.php:1108 +msgid "Expire photos:" +msgstr "Laat foto's vervallen:" + +#: mod/settings.php:1109 +msgid "Only expire posts by others:" +msgstr "Laat alleen berichten door anderen vervallen:" + +#: mod/settings.php:1135 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: mod/settings.php:1143 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: mod/settings.php:1145 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: mod/settings.php:1146 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: mod/settings.php:1146 mod/settings.php:1147 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: mod/settings.php:1147 +msgid "Password:" +msgstr "Wachtwoord:" + +#: mod/settings.php:1151 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: mod/settings.php:1152 include/identity.php:538 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: mod/settings.php:1153 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: mod/settings.php:1154 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: mod/settings.php:1155 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: mod/settings.php:1156 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: mod/settings.php:1159 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: mod/settings.php:1161 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: mod/settings.php:1161 mod/settings.php:1191 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: mod/settings.php:1162 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1163 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: mod/settings.php:1174 +msgid "Default Private Post" +msgstr "Standaard Privé Post" + +#: mod/settings.php:1175 +msgid "Default Public Post" +msgstr "Standaard Publieke Post" + +#: mod/settings.php:1179 +msgid "Default Permissions for New Posts" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1191 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: mod/settings.php:1194 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: mod/settings.php:1195 +msgid "By default post a status message when:" +msgstr "Post automatisch een bericht op je tijdlijn wanneer:" + +#: mod/settings.php:1196 +msgid "accepting a friend request" +msgstr "Een vriendschapsverzoek accepteren" + +#: mod/settings.php:1197 +msgid "joining a forum/community" +msgstr "Lid worden van een groep/forum" + +#: mod/settings.php:1198 +msgid "making an interesting profile change" +msgstr "Een interessante verandering aan je profiel" + +#: mod/settings.php:1199 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: mod/settings.php:1200 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: mod/settings.php:1201 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: mod/settings.php:1202 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: mod/settings.php:1203 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: mod/settings.php:1204 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: mod/settings.php:1205 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: mod/settings.php:1206 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: mod/settings.php:1207 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je in een bericht bent aangestoten/gepord/etc." + +#: mod/settings.php:1209 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1209 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1211 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1213 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1215 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1216 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1219 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1220 +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:1221 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/bookmarklet.php:12 include/nav.php:92 boot.php:1263 +msgid "Login" +msgstr "Login" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dit is Friendica, versie" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "draaiend op web-adres" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Geïnstalleerde plugins/toepassingen:" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Geen plugins of toepassingen geïnstalleerd" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Nieuw Contact toevoegen" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Voeg een webadres of -locatie in:" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Zoek mensen" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbind/Volg" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeelden: Jan Peeters, Vissen" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Willekeurig Profiel" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netwerken" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle netwerken" + +#: include/contact_widgets.php:104 include/features.php:60 +msgid "Saved Folders" +msgstr "Bewaarde Mappen" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorieën" + +#: include/plugin.php:455 include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "" + +#: include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Uitgelogd." + +#: include/auth.php:128 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "De foutboodschap was:" + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Gebruiker '%s' bestaat al op deze server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fout bij het aanmaken van de gebruiker" + +#: include/uimport.php:171 +msgid "User profile creation error" +msgstr "Fout bij het aanmaken van het gebruikersprofiel" + +#: include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact werd niet geïmporteerd" +msgstr[1] "%d contacten werden niet geïmporteerd" + +#: include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" + +#: include/message.php:15 include/message.php:172 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Onbekend | Niet " + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Onmiddellijk blokkeren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Onbetrouwbaar, spammer, zelfpromotor" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Bekend, maar geen mening" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, waarschijnlijk onschadelijk" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Gerenommeerd, heeft mijn vertrouwen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "wekelijks" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "maandelijks" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "Linkedln" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "Myspace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora-connector" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" + +#: include/features.php:25 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: include/features.php:30 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: include/features.php:31 +msgid "Richtext Editor" +msgstr "Tekstverwerker met opmaak" + +#: include/features.php:31 +msgid "Enable richtext editor" +msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" + +#: include/features.php:32 +msgid "Post Preview" +msgstr "Voorvertoning bericht" + +#: include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:33 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Zijbalkwidgets op netwerkpagina" + +#: include/features.php:39 +msgid "Search by Date" +msgstr "Zoeken op datum" + +#: include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" + +#: include/features.php:40 +msgid "Group Filter" +msgstr "Groepsfilter" + +#: include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" + +#: include/features.php:41 +msgid "Network Filter" +msgstr "Netwerkfilter" + +#: include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" + +#: include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" + +#: include/features.php:47 +msgid "Network Tabs" +msgstr "Netwerktabs" + +#: include/features.php:48 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" + +#: include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" + +#: include/features.php:49 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" + +#: include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" + +#: include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Bericht-/reactiehulpmiddelen" + +#: include/features.php:56 +msgid "Multiple Deletion" +msgstr "Meervoudige verwijdering" + +#: include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" + +#: include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" + +#: include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Bewerk en corrigeer berichten en reacties na verzending" + +#: include/features.php:58 +msgid "Tagging" +msgstr "Labelen" + +#: include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" + +#: include/features.php:59 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: include/features.php:59 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen te bewaren" + +#: include/features.php:61 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" + +#: include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" + +#: include/features.php:62 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:63 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Man" + +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Vrouw" + +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel mannelijk" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouwelijk" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Meestal mannelijk" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Meestal vrouwelijk" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet-specifiek" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Anders" + +#: include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Onbeslist" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Mannen" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Vrouwen" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Homo" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbienne" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Geen voorkeur" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Biseksueel" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autoseksueel" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Onthouder" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Maagd" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Afwijkend" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetisj" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Veel" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Niet seksueel" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Alleenstaand" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Eenzaam" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Beschikbaar" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Onbeschikbaar" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Verliefd" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Smoorverliefd" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "Aan het daten" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Ontrouw" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Seksverslaafd" + +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 +msgid "Friends" +msgstr "Vrienden" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ongebonden/vluchtig" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Verloofd" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Getrouwd" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Samenwonend" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "getrouwd voor-de-wet" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Blij" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Niet op zoek" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Bedrogen" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Uit elkaar" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Onstabiel" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Gescheiden" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Onzeker" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Het is gecompliceerd" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Kan me niet schelen" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Vraag me" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "" + +#: include/Contact.php:232 include/conversation.php:881 +msgid "Poke" +msgstr "Aanstoten" + +#: include/Contact.php:233 include/conversation.php:875 +msgid "View Status" +msgstr "Bekijk status" + +#: include/Contact.php:234 include/conversation.php:876 +msgid "View Profile" +msgstr "Bekijk profiel" + +#: include/Contact.php:235 include/conversation.php:877 +msgid "View Photos" +msgstr "Bekijk foto's" + +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 +msgid "Network Posts" +msgstr "Netwerkberichten" + +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 +msgid "Edit Contact" +msgstr "Bewerk contact" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Verwijder contact" + +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 +msgid "Send PM" +msgstr "Stuur een privébericht" + +#: include/Scrape.php:608 +msgid " on Last.fm" +msgstr " op Last.fm" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Verzenden per e-mail" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/api.php:310 include/api.php:321 include/api.php:430 +#: include/api.php:1133 include/api.php:1135 +msgid "User not found." +msgstr "Gebruiker niet gevonden" + +#: include/api.php:784 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:803 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:822 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1342 +msgid "There is no status with this id." +msgstr "Er is geen status met dit kenmerk" + +#: include/api.php:1416 +msgid "There is no conversation with this id." +msgstr "" + +#: include/api.php:1686 +msgid "Invalid request." +msgstr "" + +#: include/api.php:1697 +msgid "Invalid item." +msgstr "" + +#: include/api.php:1707 +msgid "Invalid action. " +msgstr "" + +#: include/api.php:1715 +msgid "DB error" +msgstr "" + +#: include/bb2diaspora.php:145 include/event.php:22 +msgid "Starts:" +msgstr "Begint:" + +#: include/bb2diaspora.php:153 include/event.php:32 +msgid "Finishes:" +msgstr "Eindigt:" + +#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: include/bbcode.php:549 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:583 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1065 include/bbcode.php:1085 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: include/bbcode.php:1110 include/bbcode.php:1111 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stootte %2$s aan" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "bericht/item" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s markeerde %2$s's %3$s als favoriet" + +#: include/conversation.php:771 +msgid "remove" +msgstr "verwijder" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Geselecteerde items verwijderen" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d mensen vinden dit leuk" + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people vinden dit niet leuk" + +#: include/conversation.php:965 +msgid "and" +msgstr "en" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr ", en %d andere mensen" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s vindt dit leuk." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s vindt dit niet leuk." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Label:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Waar ben je nu?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Item(s) verwijderen?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "rechten" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Verzenden naar Groepen" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Verzenden naar Contacten" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Privé verzending" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:256 +msgid "never" +msgstr "nooit" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: include/datetime.php:272 +msgid "year" +msgstr "jaar" + +#: include/datetime.php:272 +msgid "years" +msgstr "jaren" + +#: include/datetime.php:273 +msgid "month" +msgstr "maand" + +#: include/datetime.php:273 +msgid "months" +msgstr "maanden" + +#: include/datetime.php:274 +msgid "week" +msgstr "week" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "weken" + +#: include/datetime.php:275 +msgid "day" +msgstr "dag" + +#: include/datetime.php:275 +msgid "days" +msgstr "dagen" + +#: include/datetime.php:276 +msgid "hour" +msgstr "uur" + +#: include/datetime.php:276 +msgid "hours" +msgstr "uren" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minuut" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minuten" + +#: include/datetime.php:278 +msgid "second" +msgstr "seconde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "secondes" + +#: include/datetime.php:287 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: include/datetime.php:459 include/items.php:2431 +#, php-format +msgid "%s's birthday" +msgstr "%s's verjaardag" + +#: include/datetime.php:460 include/items.php:2432 +#, php-format +msgid "Happy Birthday %s" +msgstr "Gefeliciteerd %s" + +#: 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 "" + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." + +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/delivery.php:456 include/notifier.php:825 +msgid "(no subject)" +msgstr "(geen onderwerp)" + +#: include/delivery.php:467 include/enotify.php:33 include/notifier.php:835 +msgid "noreply" +msgstr "geen reactie" + +#: include/diaspora.php:705 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: include/diaspora.php:2539 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica Notificatie" + +#: include/enotify.php:21 +msgid "Thank You," +msgstr "Bedankt" + +#: include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "%s Beheerder" + +#: include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:78 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" + +#: include/enotify.php:80 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s sent you a new private message at %2$s." + +#: include/enotify.php:81 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s stuurde jou %2$s." + +#: include/enotify.php:81 +msgid "a private message" +msgstr "een prive bericht" + +#: include/enotify.php:82 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." + +#: include/enotify.php:134 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" + +#: include/enotify.php:141 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" + +#: include/enotify.php:149 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" + +#: include/enotify.php:159 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:160 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." + +#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 +#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." + +#: include/enotify.php:170 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:172 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificatie] %s heeft jou genoemd" + +#: include/enotify.php:186 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s heeft jou in %2$s genoemd" + +#: include/enotify.php:187 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." + +#: include/enotify.php:198 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:199 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:200 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:212 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" + +#: include/enotify.php:213 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s heeft jou aangestoten op %2$s" + +#: include/enotify.php:214 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:229 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" + +#: include/enotify.php:230 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s heeft jouw bericht gelabeld in %2$s" + +#: include/enotify.php:231 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" + +#: include/enotify.php:242 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" + +#: include/enotify.php:243 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" + +#: include/enotify.php:244 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." + +#: include/enotify.php:247 include/enotify.php:289 +#, php-format +msgid "You may visit their profile at %s" +msgstr "U kunt hun profiel bezoeken op %s" + +#: include/enotify.php:249 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bezoek %s om het verzoek goed of af te keuren." + +#: include/enotify.php:257 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:258 include/enotify.php:259 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:265 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:266 include/enotify.php:267 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:280 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:281 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:282 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:287 +msgid "Name:" +msgstr "Naam:" + +#: include/enotify.php:288 +msgid "Photo:" +msgstr "Foto: " + +#: include/enotify.php:291 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: include/enotify.php:299 include/enotify.php:312 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:300 include/enotify.php:313 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:301 include/enotify.php:314 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:304 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "" + +#: include/enotify.php:307 include/enotify.php:321 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:317 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" + +#: include/enotify.php:319 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" + +#: include/enotify.php:332 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:333 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:334 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:337 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:340 +#, php-format +msgid "Please visit %s to approve or reject the request." +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 "Deze website is niet geconfigureerd voor communicatie met andere netwerken." + +#: include/follow.php:60 include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." + +#: 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 "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." + +#: include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." + +#: include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/follow.php:258 +msgid "following" +msgstr "volgend" + +#: 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 "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " + +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:226 +msgid "Everybody" +msgstr "Iedereen" + +#: include/group.php:249 +msgid "edit" +msgstr "verander" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Verander groep" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Maak nieuwe groep" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Gevraagde account is niet beschikbaar." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "Bewerk profiel" + +#: include/identity.php:220 +msgid "Message" +msgstr "Bericht" + +#: include/identity.php:226 include/nav.php:176 +msgid "Profiles" +msgstr "Profielen" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Beheer/wijzig profielen" + +#: include/identity.php:341 +msgid "Network:" +msgstr "" + +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "G l j F" + +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "d F" + +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "[vandaag]" + +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: include/identity.php:493 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "Gebeurtenisherinneringen" + +#: include/identity.php:518 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: include/identity.php:545 +msgid "j F, Y" +msgstr "F j Y" + +#: include/identity.php:546 +msgid "j F" +msgstr "F j" + +#: include/identity.php:553 +msgid "Birthday:" +msgstr "Verjaardag:" + +#: include/identity.php:557 +msgid "Age:" +msgstr "Leeftijd:" + +#: include/identity.php:566 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: include/identity.php:575 +msgid "Tags:" +msgstr "Labels:" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "Religie:" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "Hobby:" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "Muzikale interesse " + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: include/identity.php:596 +msgid "Television:" +msgstr "Televisie" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/cultuur/ontspanning:" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "Liefde/romance:" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "School/opleiding:" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "Tijdlijn" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "Berichten op jouw tijdlijn" + +#: include/identity.php:642 +msgid "Profile Details" +msgstr "Profieldetails" + +#: include/identity.php:653 include/identity.php:656 include/nav.php:79 +msgid "Videos" +msgstr "Video's" + +#: include/identity.php:666 +msgid "Events and Calendar" +msgstr "Gebeurtenissen en kalender" + +#: include/identity.php:673 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" + +#: include/items.php:4852 +msgid "Do you really want to delete this item?" +msgstr "Wil je echt dit item verwijderen?" + +#: include/items.php:5127 +msgid "Archives" +msgstr "Archieven" + +#: include/nav.php:73 boot.php:1262 +msgid "Logout" +msgstr "Uitloggen" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Deze sessie beëindigen" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Inloggen" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Jouw tijdlijn" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Maak een accoount" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Extra toepassingen, hulpmiddelen of spelletjes" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Doorzoek de inhoud van de website" + +#: include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversaties op deze website" + +#: include/nav.php:131 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:133 +msgid "Directory" +msgstr "Gids" + +#: include/nav.php:133 +msgid "People directory" +msgstr "Personengids" + +#: include/nav.php:135 +msgid "Information" +msgstr "Informatie" + +#: include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Conversaties van je vrienden" + +#: include/nav.php:146 +msgid "Network Reset" +msgstr "Netwerkpagina opnieuw instellen" + +#: include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Laad de netwerkpagina zonder filters" + +#: include/nav.php:153 +msgid "Friend Requests" +msgstr "Vriendschapsverzoeken" + +#: include/nav.php:157 +msgid "See all notifications" +msgstr "Toon alle notificaties" + +#: include/nav.php:158 +msgid "Mark all system notifications seen" +msgstr "Alle systeemnotificaties als gelezen markeren" + +#: include/nav.php:162 +msgid "Private mail" +msgstr "Privéberichten" + +#: include/nav.php:163 +msgid "Inbox" +msgstr "Inbox" + +#: include/nav.php:164 +msgid "Outbox" +msgstr "Verzonden berichten" + +#: include/nav.php:168 +msgid "Manage" +msgstr "Beheren" + +#: include/nav.php:168 +msgid "Manage other pages" +msgstr "Andere pagina's beheren" + +#: include/nav.php:173 +msgid "Account settings" +msgstr "Account instellingen" + +#: include/nav.php:176 +msgid "Manage/Edit Profiles" +msgstr "Beheer/Wijzig Profielen" + +#: include/nav.php:178 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: include/nav.php:185 +msgid "Site setup and configuration" +msgstr "Website opzetten en configureren" + +#: include/nav.php:189 +msgid "Navigation" +msgstr "Navigatie" + +#: include/nav.php:189 +msgid "Site map" +msgstr "Sitemap" + +#: include/network.php:959 +msgid "view full size" +msgstr "Volledig formaat" + +#: include/oembed.php:224 +msgid "Embedded content" +msgstr "Ingebedde inhoud" + +#: include/oembed.php:233 +msgid "Embedding disabled" +msgstr "Inbedden uitgeschakeld" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Welkom" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Upload een profielfoto." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Welkom terug " + +#: include/security.php:375 +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/text.php:299 +msgid "newer" +msgstr "nieuwere berichten" + +#: include/text.php:301 +msgid "older" +msgstr "oudere berichten" + +#: include/text.php:306 +msgid "prev" +msgstr "vorige" + +#: include/text.php:308 +msgid "first" +msgstr "eerste" + +#: include/text.php:340 +msgid "last" +msgstr "laatste" + +#: include/text.php:343 +msgid "next" +msgstr "volgende" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:399 +msgid "The end" +msgstr "" + +#: include/text.php:878 +msgid "No contacts" +msgstr "Geen contacten" + +#: include/text.php:887 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" + +#: include/text.php:1027 +msgid "poke" +msgstr "aanstoten" + +#: include/text.php:1027 +msgid "poked" +msgstr "aangestoten" + +#: include/text.php:1028 +msgid "ping" +msgstr "ping" + +#: include/text.php:1028 +msgid "pinged" +msgstr "gepingd" + +#: include/text.php:1029 +msgid "prod" +msgstr "porren" + +#: include/text.php:1029 +msgid "prodded" +msgstr "gepord" + +#: include/text.php:1030 +msgid "slap" +msgstr "slaan" + +#: include/text.php:1030 +msgid "slapped" +msgstr "geslagen" + +#: include/text.php:1031 +msgid "finger" +msgstr "finger" + +#: include/text.php:1031 +msgid "fingered" +msgstr "gerfingerd" + +#: include/text.php:1032 +msgid "rebuff" +msgstr "afpoeieren" + +#: include/text.php:1032 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: include/text.php:1046 +msgid "happy" +msgstr "Blij" + +#: include/text.php:1047 +msgid "sad" +msgstr "Verdrietig" + +#: include/text.php:1048 +msgid "mellow" +msgstr "mellow" + +#: include/text.php:1049 +msgid "tired" +msgstr "vermoeid" + +#: include/text.php:1050 +msgid "perky" +msgstr "parmantig" + +#: include/text.php:1051 +msgid "angry" +msgstr "boos" + +#: include/text.php:1052 +msgid "stupified" +msgstr "verbijsterd" + +#: include/text.php:1053 +msgid "puzzled" +msgstr "onzeker" + +#: include/text.php:1054 +msgid "interested" +msgstr "Geïnteresseerd" + +#: include/text.php:1055 +msgid "bitter" +msgstr "bitter" + +#: include/text.php:1056 +msgid "cheerful" +msgstr "vrolijk" + +#: include/text.php:1057 +msgid "alive" +msgstr "levend" + +#: include/text.php:1058 +msgid "annoyed" +msgstr "verveeld" + +#: include/text.php:1059 +msgid "anxious" +msgstr "bezorgd" + +#: include/text.php:1060 +msgid "cranky" +msgstr "humeurig " + +#: include/text.php:1061 +msgid "disturbed" +msgstr "verontrust" + +#: include/text.php:1062 +msgid "frustrated" +msgstr "gefrustreerd" + +#: include/text.php:1063 +msgid "motivated" +msgstr "gemotiveerd" + +#: include/text.php:1064 +msgid "relaxed" +msgstr "ontspannen" + +#: include/text.php:1065 +msgid "surprised" +msgstr "verbaasd" + +#: include/text.php:1235 +msgid "Monday" +msgstr "Maandag" + +#: include/text.php:1235 +msgid "Tuesday" +msgstr "Dinsdag" + +#: include/text.php:1235 +msgid "Wednesday" +msgstr "Woensdag" + +#: include/text.php:1235 +msgid "Thursday" +msgstr "Donderdag" + +#: include/text.php:1235 +msgid "Friday" +msgstr "Vrijdag" + +#: include/text.php:1235 +msgid "Saturday" +msgstr "Zaterdag" + +#: include/text.php:1235 +msgid "Sunday" +msgstr "Zondag" + +#: include/text.php:1239 +msgid "January" +msgstr "Januari" + +#: include/text.php:1239 +msgid "February" +msgstr "Februari" + +#: include/text.php:1239 +msgid "March" +msgstr "Maart" + +#: include/text.php:1239 +msgid "April" +msgstr "April" + +#: include/text.php:1239 +msgid "May" +msgstr "Mei" + +#: include/text.php:1239 +msgid "June" +msgstr "Juni" + +#: include/text.php:1239 +msgid "July" +msgstr "Juli" + +#: include/text.php:1239 +msgid "August" +msgstr "Augustus" + +#: include/text.php:1239 +msgid "September" +msgstr "September" + +#: include/text.php:1239 +msgid "October" +msgstr "Oktober" + +#: include/text.php:1239 +msgid "November" +msgstr "November" + +#: include/text.php:1239 +msgid "December" +msgstr "December" + +#: include/text.php:1461 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1493 include/text.php:1505 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: include/text.php:1746 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: include/text.php:2002 +msgid "activity" +msgstr "activiteit" + +#: include/text.php:2005 +msgid "post" +msgstr "bericht" + +#: include/text.php:2173 +msgid "Item filed" +msgstr "Item bewaard" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ongeldige OpenID url" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "gebruik een kortere naam" + +#: include/user.php:98 +msgid "Name too short." +msgstr "Naam te kort" + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Je e-maildomein is op deze website niet toegestaan." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Ik kan die e-mail niet gebruiken." + +#: include/user.php:140 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Bijnaam is al geregistreerd. Kies een andere." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "" + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" + +#: index.php:441 +msgid "toggle mobile" +msgstr "mobiel thema omwisselen" + +#: boot.php:753 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: boot.php:756 +msgid "show fewer" +msgstr "Minder tonen" + +#: boot.php:1130 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." + +#: boot.php:1237 +msgid "Create a New Account" +msgstr "Nieuwe account aanmaken" + +#: boot.php:1265 +msgid "Nickname or Email address: " +msgstr "Bijnaam of e-mailadres:" + +#: boot.php:1266 +msgid "Password: " +msgstr "Wachtwoord:" + +#: boot.php:1267 +msgid "Remember me" +msgstr "Onthou me" + +#: boot.php:1270 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" + +#: boot.php:1276 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: boot.php:1279 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" + +#: boot.php:1280 +msgid "terms of service" +msgstr "servicevoorwaarden" + +#: boot.php:1282 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" + +#: boot.php:1283 +msgid "privacy policy" +msgstr "privacybeleid" diff --git a/view/nl/strings.php b/view/nl/strings.php index 1e5f5687f..66937c644 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -5,23 +5,79 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; +$a->strings["This entry was edited"] = ""; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["Edit"] = "Bewerken"; +$a->strings["Select"] = "Kies"; +$a->strings["Delete"] = "Verwijder"; +$a->strings["save to folder"] = "Bewaren in map"; +$a->strings["add star"] = "ster toevoegen"; +$a->strings["remove star"] = "ster verwijderen"; +$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["ignored"] = ""; +$a->strings["add tag"] = "label toevoegen"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["like"] = "leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["dislike"] = "niet leuk"; +$a->strings["Share this"] = "Delen"; +$a->strings["share"] = "Delen"; +$a->strings["Categories:"] = "Categorieën:"; +$a->strings["Filed under:"] = "Bewaard onder:"; +$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +$a->strings["to"] = "aan"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; +$a->strings["%s from %s"] = "%s van %s"; +$a->strings["Comment"] = "Reacties"; +$a->strings["Please wait"] = "Even geduld"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties", +); +$a->strings["comment"] = array( + 0 => "reactie", + 1 => "reacties", +); +$a->strings["show more"] = "toon meer"; +$a->strings["This is you"] = "Dit ben jij"; $a->strings["Submit"] = "Opslaan"; -$a->strings["Theme settings"] = "Thema-instellingen"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; -$a->strings["Set theme width"] = "Stel breedte van het thema in"; -$a->strings["Color scheme"] = "Kleurschema"; -$a->strings["Set style"] = ""; -$a->strings["default"] = "standaard"; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Clone this project:"] = ""; +$a->strings["Click here to download"] = ""; +$a->strings["This project is empty!"] = ""; +$a->strings["Projects"] = ""; +$a->strings["add new"] = ""; +$a->strings["delete"] = ""; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; +$a->strings["Home"] = "Tijdlijn"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Profile"] = "Profiel"; +$a->strings["Your profile page"] = "Jouw profiel pagina"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Events"] = "Gebeurtenissen"; +$a->strings["Your events"] = "Jouw gebeurtenissen"; +$a->strings["Personal notes"] = "Persoonlijke nota's"; +$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; +$a->strings["Community"] = "Website"; $a->strings["don't show"] = "niet tonen"; $a->strings["show"] = "tonen"; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; $a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in"; $a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. "; $a->strings["Set color scheme"] = "Stel kleurenschema in"; @@ -37,19 +93,8 @@ $a->strings["Find Friends"] = "Zoek vrienden"; $a->strings["Last users"] = "Laatste gebruikers"; $a->strings["Last photos"] = "Laatste foto's"; $a->strings["Last likes"] = "Recent leuk gevonden"; -$a->strings["Home"] = "Tijdlijn"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Your profile page"] = "Jouw profiel pagina"; $a->strings["Contacts"] = "Contacten"; $a->strings["Your contacts"] = "Jouw contacten"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Events"] = "Gebeurtenissen"; -$a->strings["Your events"] = "Jouw gebeurtenissen"; -$a->strings["Personal notes"] = "Persoonlijke nota's"; -$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; -$a->strings["Community"] = "Website"; $a->strings["event"] = "gebeurtenis"; $a->strings["status"] = "status"; $a->strings["photo"] = "foto"; @@ -67,660 +112,65 @@ $a->strings["Show/hide boxes at right-hand column:"] = ""; $a->strings["Alignment"] = "Uitlijning"; $a->strings["Left"] = "Links"; $a->strings["Center"] = "Gecentreerd"; +$a->strings["Color scheme"] = "Kleurschema"; $a->strings["Posts font size"] = "Lettergrootte berichten"; $a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set theme width"] = "Stel breedte van het thema in"; $a->strings["Set colour scheme"] = "Stel kleurschema in"; -$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Page not found."] = "Pagina niet gevonden"; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["toggle mobile"] = "mobiel thema omwisselen"; -$a->strings["Do you wish to confirm your identity (%s) with %s"] = ""; -$a->strings["Confirm"] = "Bevestig"; -$a->strings["Do not confirm"] = "Bevestig niet"; -$a->strings["Trust This Site"] = "Vertrouw deze website"; -$a->strings["No Identifier Sent"] = ""; -$a->strings["Requested identity don't match logged in user."] = ""; -$a->strings["Please wait; you are being redirected to <%s>"] = ""; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["Comment"] = "Reacties"; -$a->strings["show more"] = "toon meer"; -$a->strings["show fewer"] = "Minder tonen"; -$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; -$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; -$a->strings["Register"] = "Registreer"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["Login"] = "Login"; -$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; -$a->strings["Password: "] = "Wachtwoord:"; -$a->strings["Remember me"] = "Onthou me"; -$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; -$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; -$a->strings["terms of service"] = "servicevoorwaarden"; -$a->strings["Website Privacy Policy"] = "Privacybeleid website"; -$a->strings["privacy policy"] = "privacybeleid"; -$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; -$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; -$a->strings["Edit profile"] = "Bewerk profiel"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Message"] = "Bericht"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Change profile photo"] = "Profiel foto wijzigen"; -$a->strings["Create New Profile"] = "Maak nieuw profiel"; -$a->strings["Profile Image"] = "Profiel afbeelding"; -$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; -$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; -$a->strings["Location:"] = "Plaats:"; -$a->strings["Gender:"] = "Geslacht:"; -$a->strings["Status:"] = "Tijdlijn:"; -$a->strings["Homepage:"] = "Website:"; -$a->strings["About:"] = "Over:"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "G l j F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen omschrijving]"; -$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["Status"] = "Tijdlijn"; -$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; -$a->strings["Profile Details"] = "Profieldetails"; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Videos"] = "Video's"; -$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; -$a->strings["Personal Notes"] = "Persoonlijke Nota's"; -$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; -$a->strings["General Features"] = "Algemene functies"; -$a->strings["Multiple Profiles"] = "Meerdere profielen"; -$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -$a->strings["Richtext Editor"] = "Tekstverwerker met opmaak"; -$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; -$a->strings["Post Preview"] = "Voorvertoning bericht"; -$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"] = "Zijbalkwidgets op netwerkpagina"; -$a->strings["Search by Date"] = "Zoeken op datum"; -$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; -$a->strings["Group Filter"] = "Groepsfilter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"; -$a->strings["Network Filter"] = "Netwerkfilter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -$a->strings["Network Tabs"] = "Netwerktabs"; -$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -$a->strings["Network New Tab"] = "Nieuwe netwerktab"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; -$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; -$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; -$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; -$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; -$a->strings["Tagging"] = "Labelen"; -$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; -$a->strings["Post Categories"] = "Categorieën berichten"; -$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -$a->strings["Saved Folders"] = "Bewaarde Mappen"; -$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; -$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; -$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; -$a->strings["Star Posts"] = "Geef berichten een ster"; -$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["%s's birthday"] = "%s's verjaardag"; -$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; -$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Cancel"] = "Annuleren"; -$a->strings["Archives"] = "Archieven"; -$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."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["edit"] = "verander"; -$a->strings["Groups"] = "Groepen"; -$a->strings["Edit group"] = "Verander groep"; -$a->strings["Create a new group"] = "Maak nieuwe groep"; -$a->strings["Contacts not in any group"] = ""; -$a->strings["add"] = "toevoegen"; -$a->strings["Wall Photos"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; -$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; -$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -$a->strings["Find People"] = "Zoek mensen"; -$a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbind/Volg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; -$a->strings["Find"] = "Zoek"; -$a->strings["Random Profile"] = "Willekeurig Profiel"; -$a->strings["Networks"] = "Netwerken"; -$a->strings["All Networks"] = "Alle netwerken"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Categorieën"; -$a->strings["%d contact in common"] = array( - 0 => "%d gedeeld contact", - 1 => "%d gedeelde contacten", -); -$a->strings["Friendica Notification"] = "Friendica Notificatie"; -$a->strings["Thank You,"] = "Bedankt"; -$a->strings["%s Administrator"] = "%s Beheerder"; -$a->strings["noreply"] = "geen reactie"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s."; -$a->strings["a private message"] = "een prive bericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %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."] = "%s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; -$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"] = "[Friendica:Notificatie] %s heeft jou genoemd"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/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"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s."; -$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren."; -$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:"] = "Naam:"; -$a->strings["Photo:"] = "Foto: "; -$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["User not found."] = "Gebruiker niet gevonden"; -$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."] = "Er is geen status met dit kenmerk"; -$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["view full size"] = "Volledig formaat"; -$a->strings[" on Last.fm"] = " op Last.fm"; -$a->strings["Full Name:"] = "Volledige Naam:"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Verjaardag:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; -$a->strings["Hometown:"] = "Woonplaats:"; -$a->strings["Tags:"] = "Labels:"; -$a->strings["Political Views:"] = "Politieke standpunten:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["Hobbies/Interests:"] = "Hobby:"; -$a->strings["Likes:"] = "Houdt van:"; -$a->strings["Dislikes:"] = "Houdt niet van:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["Musical interests:"] = "Muzikale interesse "; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; -$a->strings["Love/Romance:"] = "Liefde/romance:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Clear notifications"] = "Notificaties verwijderen"; -$a->strings["End this session"] = "Deze sessie beëindigen"; -$a->strings["Your videos"] = ""; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["Home Page"] = "Jouw tijdlijn"; -$a->strings["Create an account"] = "Maak een accoount"; -$a->strings["Help"] = "Help"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; -$a->strings["Search"] = "Zoeken"; -$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; -$a->strings["Conversations on this site"] = "Conversaties op deze website"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Gids"; -$a->strings["People directory"] = "Personengids"; -$a->strings["Information"] = "Informatie"; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Network"] = "Netwerk"; -$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; -$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; -$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; -$a->strings["Introductions"] = "Verzoeken"; -$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; -$a->strings["Notifications"] = "Notificaties"; -$a->strings["See all notifications"] = "Toon alle notificaties"; -$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; -$a->strings["Messages"] = "Privéberichten"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Verzonden berichten"; -$a->strings["New Message"] = "Nieuw Bericht"; -$a->strings["Manage"] = "Beheren"; -$a->strings["Manage other pages"] = "Andere pagina's beheren"; -$a->strings["Delegations"] = ""; -$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; -$a->strings["Account settings"] = "Account instellingen"; -$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; -$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; -$a->strings["Admin"] = "Beheer"; -$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; -$a->strings["Navigation"] = "Navigatie"; -$a->strings["Site map"] = "Sitemap"; -$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["Disallowed profile URL."] = "Niet toegelaten profiel adres."; -$a->strings["Connect URL missing."] = ""; -$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; -$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."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; -$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; -$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"] = "volgend"; -$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!"] = "Gebruiker '%s' bestaat al op deze server!"; -$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; -$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contact werd niet geïmporteerd", - 1 => "%d contacten werden niet geïmporteerd", -); -$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Begint:"; -$a->strings["Finishes:"] = "Eindigt:"; -$a->strings["stopped following"] = ""; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["View Status"] = "Bekijk status"; -$a->strings["View Profile"] = "Bekijk profiel"; -$a->strings["View Photos"] = "Bekijk foto's"; -$a->strings["Network Posts"] = "Netwerkberichten"; -$a->strings["Edit Contact"] = "Bewerk contact"; -$a->strings["Drop Contact"] = "Verwijder contact"; -$a->strings["Send PM"] = "Stuur een privébericht"; -$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."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["year"] = "jaar"; -$a->strings["month"] = "maand"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["years"] = "jaren"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["(no subject)"] = "(geen onderwerp)"; -$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; -$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; -$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; -$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; -$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; -$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; -$a->strings["Frequently"] = "Frequent"; -$a->strings["Hourly"] = "elk uur"; -$a->strings["Twice daily"] = "Twee keer per dag"; -$a->strings["Daily"] = "dagelijks"; -$a->strings["Weekly"] = "wekelijks"; -$a->strings["Monthly"] = "maandelijks"; -$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"] = "Linkedln"; -$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-connector"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = ""; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; -$a->strings["Sharing notification from Diaspora network"] = ""; -$a->strings["Attachments:"] = "Bijlagen:"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; +$a->strings["default"] = "standaard"; +$a->strings["Midnight"] = ""; +$a->strings["Zenburn"] = ""; +$a->strings["Bootstrap"] = ""; +$a->strings["Shades of Pink"] = ""; +$a->strings["Lime and Orange"] = ""; +$a->strings["GeoCities Retro"] = ""; +$a->strings["Background Image"] = ""; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; +$a->strings["Background Color"] = "achtergrondkleur"; +$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["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; +$a->strings["Set style"] = ""; $a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; -$a->strings["post/item"] = "bericht/item"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; -$a->strings["Select"] = "Kies"; -$a->strings["Delete"] = "Verwijder"; -$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -$a->strings["Categories:"] = "Categorieën:"; -$a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings["%s from %s"] = "%s van %s"; -$a->strings["View in context"] = "In context bekijken"; -$a->strings["Please wait"] = "Even geduld"; -$a->strings["remove"] = "verwijder"; -$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["%s likes this."] = "%s vindt dit leuk."; -$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; -$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = ", en %d andere mensen"; -$a->strings["%s like this."] = "%s vindt dit leuk."; -$a->strings["%s don't like this."] = "%s vindt dit niet leuk."; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Label:"; -$a->strings["Save to Folder:"] = "Bewaren in map:"; -$a->strings["Where are you right now?"] = "Waar ben je nu?"; -$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; -$a->strings["Post to Email"] = "Verzenden per e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; -$a->strings["Share"] = "Delen"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["upload photo"] = "Foto uploaden"; -$a->strings["Attach file"] = "Bestand bijvoegen"; -$a->strings["attach file"] = "bestand bijvoegen"; -$a->strings["Insert web link"] = "Voeg een webadres in"; -$a->strings["web link"] = "webadres"; -$a->strings["Insert video link"] = "Voeg video toe"; -$a->strings["video link"] = "video adres"; -$a->strings["Insert audio link"] = "Voeg audio adres toe"; -$a->strings["audio link"] = "audio adres"; -$a->strings["Set your location"] = "Stel uw locatie in"; -$a->strings["set location"] = "Stel uw locatie in"; -$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["Set title"] = "Titel plaatsen"; -$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; -$a->strings["Permission settings"] = "Instellingen van rechten"; -$a->strings["permissions"] = "rechten"; -$a->strings["CC: email addresses"] = "CC: e-mailadressen"; -$a->strings["Public post"] = "Openbare post"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Post to Groups"] = "Verzenden naar Groepen"; -$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; -$a->strings["Private post"] = "Privé verzending"; -$a->strings["newer"] = "nieuwere berichten"; -$a->strings["older"] = "oudere berichten"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "eerste"; -$a->strings["last"] = "laatste"; -$a->strings["next"] = "volgende"; -$a->strings["Loading more entries..."] = ""; -$a->strings["The end"] = ""; -$a->strings["No contacts"] = "Geen contacten"; -$a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacten", -); -$a->strings["View Contacts"] = "Bekijk contacten"; -$a->strings["Save"] = "Bewaren"; -$a->strings["poke"] = "aanstoten"; -$a->strings["poked"] = "aangestoten"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "gepingd"; -$a->strings["prod"] = "porren"; -$a->strings["prodded"] = "gepord"; -$a->strings["slap"] = "slaan"; -$a->strings["slapped"] = "geslagen"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "gerfingerd"; -$a->strings["rebuff"] = "afpoeieren"; -$a->strings["rebuffed"] = "afgepoeierd"; -$a->strings["happy"] = "Blij"; -$a->strings["sad"] = "Verdrietig"; -$a->strings["mellow"] = "mellow"; -$a->strings["tired"] = "vermoeid"; -$a->strings["perky"] = "parmantig"; -$a->strings["angry"] = "boos"; -$a->strings["stupified"] = "verbijsterd"; -$a->strings["puzzled"] = "onzeker"; -$a->strings["interested"] = "Geïnteresseerd"; -$a->strings["bitter"] = "bitter"; -$a->strings["cheerful"] = "vrolijk"; -$a->strings["alive"] = "levend"; -$a->strings["annoyed"] = "verveeld"; -$a->strings["anxious"] = "bezorgd"; -$a->strings["cranky"] = "humeurig "; -$a->strings["disturbed"] = "verontrust"; -$a->strings["frustrated"] = "gefrustreerd"; -$a->strings["motivated"] = "gemotiveerd"; -$a->strings["relaxed"] = "ontspannen"; -$a->strings["surprised"] = "verbaasd"; -$a->strings["Monday"] = "Maandag"; -$a->strings["Tuesday"] = "Dinsdag"; -$a->strings["Wednesday"] = "Woensdag"; -$a->strings["Thursday"] = "Donderdag"; -$a->strings["Friday"] = "Vrijdag"; -$a->strings["Saturday"] = "Zaterdag"; -$a->strings["Sunday"] = "Zondag"; -$a->strings["January"] = "Januari"; -$a->strings["February"] = "Februari"; -$a->strings["March"] = "Maart"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mei"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "Augustus"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "December"; -$a->strings["View Video"] = "Bekijk Video"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "klik om te openen/sluiten"; -$a->strings["link to source"] = "Verwijzing naar bron"; -$a->strings["Select an alternate language"] = "Kies een andere taal"; -$a->strings["activity"] = "activiteit"; -$a->strings["comment"] = array( - 0 => "reactie", - 1 => "reacties", -); -$a->strings["post"] = "bericht"; -$a->strings["Item filed"] = "Item bewaard"; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["Login failed."] = "Login mislukt."; -$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:"] = "De foutboodschap was:"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["Welcome "] = "Welkom"; -$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; -$a->strings["Welcome back "] = "Welkom terug "; -$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["Embedded content"] = "Ingebedde inhoud"; -$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; -$a->strings["Male"] = "Man"; -$a->strings["Female"] = "Vrouw"; -$a->strings["Currently Male"] = "Momenteel mannelijk"; -$a->strings["Currently Female"] = "Momenteel vrouwelijk"; -$a->strings["Mostly Male"] = "Meestal mannelijk"; -$a->strings["Mostly Female"] = "Meestal vrouwelijk"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Interseksueel"; -$a->strings["Transsexual"] = "Transseksueel"; -$a->strings["Hermaphrodite"] = "Hermafrodiet"; -$a->strings["Neuter"] = "Genderneutraal"; -$a->strings["Non-specific"] = "Niet-specifiek"; -$a->strings["Other"] = "Anders"; -$a->strings["Undecided"] = "Onbeslist"; -$a->strings["Males"] = "Manen"; -$a->strings["Females"] = "Vrouwen"; -$a->strings["Gay"] = "Homo"; -$a->strings["Lesbian"] = "Lesbie"; -$a->strings["No Preference"] = "Geen voorkeur"; -$a->strings["Bisexual"] = "Biseksueel"; -$a->strings["Autosexual"] = "Autoseksueel"; -$a->strings["Abstinent"] = "Onthouder"; -$a->strings["Virgin"] = "Maagd"; -$a->strings["Deviant"] = "Afwijkend"; -$a->strings["Fetish"] = "Fetisj"; -$a->strings["Oodles"] = "Veel"; -$a->strings["Nonsexual"] = "Niet seksueel"; -$a->strings["Single"] = "Alleenstaand"; -$a->strings["Lonely"] = "Eenzaam"; -$a->strings["Available"] = "Beschikbaar"; -$a->strings["Unavailable"] = "Onbeschikbaar"; -$a->strings["Has crush"] = "Verliefd"; -$a->strings["Infatuated"] = "Smoorverliefd"; -$a->strings["Dating"] = "Aan het daten"; -$a->strings["Unfaithful"] = "Ontrouw"; -$a->strings["Sex Addict"] = "Seksverslaafd"; -$a->strings["Friends"] = "Vrienden"; -$a->strings["Friends/Benefits"] = "Vriendschap plus"; -$a->strings["Casual"] = "Ongebonden/vluchtig"; -$a->strings["Engaged"] = "Verloofd"; -$a->strings["Married"] = "Getrouwd"; -$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Samenwonend"; -$a->strings["Common law"] = "Common-law-huwelijk"; -$a->strings["Happy"] = "Blij"; -$a->strings["Not looking"] = ""; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Bedrogen"; -$a->strings["Separated"] = "Uit elkaar"; -$a->strings["Unstable"] = "Onstabiel"; -$a->strings["Divorced"] = "Gescheiden"; -$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -$a->strings["Widowed"] = "Weduwnaar/weduwe"; -$a->strings["Uncertain"] = "Onzeker"; -$a->strings["It's complicated"] = "Het is gecompliceerd"; -$a->strings["Don't care"] = "Kan me niet schelen"; -$a->strings["Ask me"] = "Vraag me"; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; -$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; -$a->strings["Name too short."] = "Naam te kort"; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; -$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; -$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; -$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; -$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; -$a->strings["An error occurred during registration. Please try again."] = ""; -$a->strings["An error occurred creating your default profile. Please try again."] = ""; -$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["Registration details for %s"] = "Registratie details voor %s"; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["This entry was edited"] = ""; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["Edit"] = "Bewerken"; -$a->strings["save to folder"] = "Bewaren in map"; -$a->strings["add star"] = "ster toevoegen"; -$a->strings["remove star"] = "ster verwijderen"; -$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["add tag"] = "label toevoegen"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["like"] = "leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["dislike"] = "niet leuk"; -$a->strings["Share this"] = "Delen"; -$a->strings["share"] = "Delen"; -$a->strings["to"] = "aan"; -$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 reactie", - 1 => "%d reacties", -); -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Bold"] = "Vet"; -$a->strings["Italic"] = "Cursief"; -$a->strings["Underline"] = "Onderstrepen"; -$a->strings["Quote"] = "Citeren"; -$a->strings["Code"] = "Broncode"; -$a->strings["Image"] = "Afbeelding"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Item not available."] = "Item niet beschikbaar"; -$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["Permission denied."] = "Toegang geweigerd"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; +$a->strings["Access denied."] = "Toegang geweigerd"; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; +$a->strings["Authorize application connection"] = ""; +$a->strings["Return to your app and insert this Securty Code:"] = ""; +$a->strings["Please login to continue."] = "Log in om verder te gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; +$a->strings["Yes"] = "Ja"; +$a->strings["No"] = "Nee"; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; +$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"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; +$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; +$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; +$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; +$a->strings["click here to login"] = "klik hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; +$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\tBeste %1\$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\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"] = "Je wachtwoord is veranderd op %s"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; +$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; +$a->strings["Reset"] = "Opnieuw"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; $a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; $a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; @@ -728,37 +178,198 @@ $a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden." $a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; $a->strings["Message sent."] = "Bericht verzonden."; $a->strings["No recipient."] = "Geen ontvanger."; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; $a->strings["Send Private Message"] = "Verstuur privébericht"; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; $a->strings["To:"] = "Aan:"; $a->strings["Subject:"] = "Onderwerp:"; $a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Group created."] = "Groep aangemaakt."; -$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; -$a->strings["Group not found."] = "Groep niet gevonden."; -$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; -$a->strings["Group Name: "] = "Groepsnaam:"; -$a->strings["Group removed."] = "Groep verwijderd."; -$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; -$a->strings["Group Editor"] = "Groepsbewerker"; -$a->strings["Members"] = "Leden"; -$a->strings["All Contacts"] = "Alle Contacten"; -$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["Insert web link"] = "Voeg een webadres in"; +$a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; +$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; +$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; +$a->strings["Getting Started"] = "Aan de slag"; +$a->strings["Friendica Walk-Through"] = "Doorloop 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."] = "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."; +$a->strings["Go to Your Settings"] = "Ga naar je instellingen"; +$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."] = "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale 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."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; +$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; +$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."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."; +$a->strings["Edit Your Profile"] = "Bewerk je profiel"; +$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."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; +$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel"; +$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."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."; +$a->strings["Connecting"] = "Verbinding aan het maken"; +$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."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."; +$a->strings["Importing Emails"] = "E-mails importeren"; +$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"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"; +$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina"; +$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."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog."; +$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website"; +$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."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."; +$a->strings["Finding New People"] = "Nieuwe mensen vinden"; +$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."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."; +$a->strings["Groups"] = "Groepen"; +$a->strings["Group Your Contacts"] = "Groepeer je contacten"; +$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."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "; +$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; +$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 respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; +$a->strings["Getting Help"] = "Hulp krijgen"; +$a->strings["Go to the Help Section"] = "Ga naar de help"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["Public access denied."] = "Niet vrij toegankelijk"; +$a->strings["Search"] = "Zoeken"; +$a->strings["No results."] = "Geen resultaten."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; +$a->strings["Item not available."] = "Item niet beschikbaar"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["Account approved."] = "Account goedgekeurd."; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; +$a->strings["Import"] = "Importeren"; +$a->strings["Move account"] = "Account verplaatsen"; +$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; +$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."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; +$a->strings["Account file"] = "Account bestand"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$a->strings["No profile"] = "Geen profiel"; +$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; +$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; +$a->strings["Source input: "] = "Bron ingave:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe 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): "] = "Bron ingave (Diaspora formaat):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; +$a->strings["Post successful."] = "Bericht succesvol geplaatst."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Tijdsconversie"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; +$a->strings["UTC time: %s"] = "UTC tijd: %s"; +$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; +$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; +$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; +$a->strings["Save to Folder:"] = "Bewaren in map:"; +$a->strings["- select -"] = "- Kies -"; +$a->strings["Save"] = "Bewaren"; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Dit bericht privé maken"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; +$a->strings["Export account"] = "Account exporteren"; +$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."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; +$a->strings["Export all"] = "Alles exporteren"; +$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)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; +$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; +$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; +$a->strings["Applications"] = "Toepassingen"; +$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Clear notifications"] = "Notificaties verwijderen"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Tag removed"] = "Label verwijderd"; +$a->strings["Remove Item Tag"] = "Verwijder label van item"; +$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; +$a->strings["Remove"] = "Verwijderen"; $a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; +$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; $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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; $a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; $a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; $a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; -$a->strings["Remove"] = "Verwijderen"; $a->strings["Add"] = "Toevoegen"; $a->strings["No entries."] = "Geen gegevens."; +$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; +$a->strings["Edit contact"] = "Contact bewerken"; +$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; +$a->strings["Files"] = "Bestanden"; +$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; +$a->strings["Remove My Account"] = "Verwijder mijn account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; +$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; +$a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; +$a->strings["Suggest Friends"] = "Stel vrienden voor"; +$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; +$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; +$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; +$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; +$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; +$a->strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; +$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."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke 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 servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; +$a->strings["Send invitations"] = "Verstuur uitnodigingen"; +$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; +$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; +$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["New Message"] = "Nieuw Bericht"; +$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; +$a->strings["Messages"] = "Privéberichten"; +$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Conversation removed."] = "Gesprek verwijderd."; +$a->strings["No messages."] = "Geen berichten."; +$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; +$a->strings["You and %s"] = "Jij en %s"; +$a->strings["%s and You"] = "%s en jij"; +$a->strings["Delete conversation"] = "Verwijder gesprek"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d bericht", + 1 => "%d berichten", +); +$a->strings["Message not available."] = "Bericht niet beschikbaar."; +$a->strings["Delete message"] = "Verwijder bericht"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; +$a->strings["Send Reply"] = "Verstuur Antwoord"; +$a->strings["No contacts."] = "Geen contacten."; +$a->strings["View Contacts"] = "Bekijk contacten"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; +$a->strings["Login failed."] = "Login mislukt."; +$a->strings["Not available."] = "Niet beschikbaar"; +$a->strings["Help:"] = "Help:"; +$a->strings["Help"] = "Help"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Page not found."] = "Pagina niet gevonden"; $a->strings["Invalid request identifier."] = "Ongeldige request identifier."; $a->strings["Discard"] = "Verwerpen"; $a->strings["Ignore"] = "Negeren"; $a->strings["System"] = "Systeem"; +$a->strings["Network"] = "Netwerk"; $a->strings["Personal"] = "Persoonlijk"; +$a->strings["Introductions"] = "Verzoeken"; $a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; $a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; $a->strings["Notification type: "] = "Notificatiesoort:"; @@ -779,6 +390,7 @@ $a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; $a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; $a->strings["New Follower"] = "Nieuwe Volger"; $a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; +$a->strings["Notifications"] = "Notificaties"; $a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; $a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk"; $a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s"; @@ -792,359 +404,16 @@ $a->strings["No more personal notifications."] = "Geen persoonlijke notificaties $a->strings["Personal Notifications"] = "Persoonlijke notificaties"; $a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer"; $a->strings["Home Notifications"] = "Tijdlijn-notificaties"; -$a->strings["No profile"] = "Geen profiel"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Account"] = "Account"; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Display"] = "Weergave"; -$a->strings["Social Networks"] = "Sociale netwerken"; -$a->strings["Plugins"] = "Plugins"; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; -$a->strings["Remove account"] = "Account verwijderen"; -$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; -$a->strings["Update"] = "Wijzigen"; -$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; -$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; -$a->strings["Features updated"] = "Functies bijgewerkt"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; -$a->strings["Wrong password."] = "Verkeerd wachtwoord."; -$a->strings["Password changed."] = "Wachtwoord gewijzigd."; -$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; -$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; -$a->strings[" Name too short."] = "Naam te kort."; -$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; -$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; -$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; -$a->strings["Settings updated."] = "Instellingen bijgewerkt."; -$a->strings["Add application"] = "Toepassing toevoegen"; -$a->strings["Save Settings"] = "Instellingen opslaan"; -$a->strings["Name"] = "Naam"; -$a->strings["Consumer Key"] = "Gebruikerssleutel"; -$a->strings["Consumer Secret"] = "Gebruikersgeheim"; -$a->strings["Redirect"] = "Doorverwijzing"; -$a->strings["Icon url"] = "URL pictogram"; -$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; -$a->strings["Connected Apps"] = "Verbonden applicaties"; -$a->strings["Client key starts with"] = ""; -$a->strings["No name"] = "Geen naam"; -$a->strings["Remove authorization"] = "Verwijder authorisatie"; -$a->strings["No Plugin settings configured"] = ""; -$a->strings["Plugin Settings"] = "Plugin Instellingen"; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; -$a->strings["Additional Features"] = "Extra functies"; -$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; -$a->strings["enabled"] = "ingeschakeld"; -$a->strings["disabled"] = "uitgeschakeld"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; -$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; -$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; -$a->strings["IMAP server name:"] = "IMAP server naam:"; -$a->strings["IMAP port:"] = "IMAP poort:"; -$a->strings["Security:"] = "Beveiliging:"; -$a->strings["None"] = "Geen"; -$a->strings["Email login name:"] = "E-mail login naam:"; -$a->strings["Email password:"] = "E-mail wachtwoord:"; -$a->strings["Reply-to address:"] = "Antwoord adres:"; -$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; -$a->strings["Action after import:"] = "Actie na importeren:"; -$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; -$a->strings["Move to folder"] = "Naar map verplaatsen"; -$a->strings["Move to folder:"] = "Verplaatsen naar map:"; -$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -$a->strings["Display Settings"] = "Scherminstellingen"; -$a->strings["Display Theme:"] = "Schermthema:"; -$a->strings["Mobile Theme:"] = "Mobiel thema:"; -$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; -$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; -$a->strings["Maximum of 100 items"] = "Maximum 100 items"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; -$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = "Oneindig scrollen"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = "Gebruikerstypes"; -$a->strings["Community Types"] = "Forum/groepstypes"; -$a->strings["Normal Account Page"] = "Normale accountpagina"; -$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; -$a->strings["Soapbox Page"] = "Zeepkist-pagina"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; -$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; -$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; -$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; -$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; -$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; -$a->strings["No"] = "Nee"; -$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; -$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?"] = "Vrienden toestaan om op jou profielpagina te posten?"; -$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; -$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; -$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; -$a->strings["or"] = "of"; -$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is"; -$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; -$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; -$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; -$a->strings["Expire posts:"] = "Laat berichten vervallen:"; -$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; -$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; -$a->strings["Expire photos:"] = "Laat foto's vervallen:"; -$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; -$a->strings["Account Settings"] = "Account Instellingen"; -$a->strings["Password Settings"] = "Wachtwoord Instellingen"; -$a->strings["New Password:"] = "Nieuw Wachtwoord:"; -$a->strings["Confirm:"] = "Bevestig:"; -$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; -$a->strings["Current Password:"] = "Huidig wachtwoord:"; -$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; -$a->strings["Password:"] = "Wachtwoord:"; -$a->strings["Basic Settings"] = "Basis Instellingen"; -$a->strings["Email Address:"] = "E-mailadres:"; -$a->strings["Your Timezone:"] = "Je Tijdzone:"; -$a->strings["Default Post Location:"] = "Standaard locatie:"; -$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; -$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; -$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; -$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Show to Groups"] = "Tonen aan groepen"; -$a->strings["Show to Contacts"] = "Tonen aan contacten"; -$a->strings["Default Private Post"] = "Standaard Privé Post"; -$a->strings["Default Public Post"] = "Standaard Publieke Post"; -$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -$a->strings["Notification Settings"] = "Notificatie Instellingen"; -$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; -$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; -$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; -$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; -$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; -$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; -$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; -$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; -$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; -$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["Common Friends"] = "Gedeelde Vrienden"; -$a->strings["No contacts in common."] = "Geen gedeelde contacten."; -$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", -); -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; -$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden."; -$a->strings["Contact updated."] = "Contact bijgewerkt."; -$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; -$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; -$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; -$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; -$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; -$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; -$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; -$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; -$a->strings["Contact has been removed."] = "Contact is verwijderd."; -$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; -$a->strings["You are sharing with %s"] = "Je deelt met %s"; -$a->strings["%s is sharing with you"] = "%s deelt met jou"; -$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; -$a->strings["Never"] = "Nooit"; -$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; -$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; -$a->strings["Suggest friends"] = "Stel vrienden voor"; -$a->strings["Network type: %s"] = "Netwerk type: %s"; -$a->strings["View all contacts"] = "Alle contacten zien"; -$a->strings["Unblock"] = "Blokkering opheffen"; -$a->strings["Block"] = "Blokkeren"; -$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; -$a->strings["Unignore"] = "Negeer niet meer"; -$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; -$a->strings["Unarchive"] = "Archiveer niet meer"; -$a->strings["Archive"] = "Archiveer"; -$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; -$a->strings["Repair"] = "Herstellen"; -$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; -$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = ""; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Contact Editor"] = "Contactbewerker"; -$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; -$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; -$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; -$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; -$a->strings["Ignore contact"] = "Negeer contact"; -$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; -$a->strings["View conversations"] = "Toon conversaties"; -$a->strings["Delete contact"] = "Verwijder contact"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare posts aanpassen"; -$a->strings["Update now"] = "Wijzig nu"; -$a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; -$a->strings["Currently ignored"] = "Op dit moment genegeerd"; -$a->strings["Currently archived"] = "Op dit moment gearchiveerd"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; -$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten"; -$a->strings["Send a notification of every new post of this contact"] = ""; -$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"] = "Voorstellen"; -$a->strings["Suggest potential friends"] = "Stel vrienden voor"; -$a->strings["Show all contacts"] = "Toon alle contacten"; -$a->strings["Unblocked"] = "Niet geblokkeerd"; -$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; -$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; -$a->strings["is a fan of yours"] = "Is een fan van jou"; -$a->strings["you are a fan of"] = "Jij bent een fan van"; -$a->strings["Edit contact"] = "Contact bewerken"; -$a->strings["Search your contacts"] = "Doorzoek je contacten"; -$a->strings["Finding: "] = "Gevonden:"; -$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"] = "Bestand is groter dan de toegelaten %d"; -$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; -$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; -$a->strings["Export account"] = "Account exporteren"; -$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."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; -$a->strings["Export all"] = "Alles exporteren"; -$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)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; -$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."] = "Je registratie kan niet verwerkt worden."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; -$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; -$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; -$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; -$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; -$a->strings["Registration"] = "Registratie"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; -$a->strings["Your Email Address: "] = "Je email adres:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; -$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; -$a->strings["Import"] = "Importeren"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["Post successful."] = "Bericht succesvol geplaatst."; -$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; -$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; -$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; -$a->strings["Public access denied."] = "Niet vrij toegankelijk"; -$a->strings["No videos selected"] = "Geen video's geselecteerd"; -$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["View Album"] = "Album bekijken"; -$a->strings["Recent Videos"] = "Recente video's"; -$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; -$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; -$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["People Search"] = "Mensen Zoeken"; -$a->strings["No matches"] = "Geen resultaten"; -$a->strings["Account approved."] = "Account goedgekeurd."; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; -$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; -$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "De %d vereiste parameter is niet op het gegeven adres gevonden", - 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", -); -$a->strings["Introduction complete."] = "Verzoek voltooid."; -$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; -$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; -$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag."; -$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."; -$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler"; -$a->strings["Invalid email address."] = "Geen geldig e-mailadres"; -$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."; -$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden."; -$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; -$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; -$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; -$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; -$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log met dit profiel in."; -$a->strings["Hide this contact"] = "Verberg dit contact"; -$a->strings["Welcome home %s."] = "Welkom terug %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; -$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."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; -$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; -$a->strings["Does %s know you?"] = "Kent %s jou?"; -$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."; -$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; -$a->strings["Submit Request"] = "Aanvraag indienen"; -$a->strings["Files"] = "Bestanden"; -$a->strings["Authorize application connection"] = ""; -$a->strings["Return to your app and insert this Securty Code:"] = ""; -$a->strings["Please login to continue."] = "Log in om verder te gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; -$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; -$a->strings["Contact not found."] = "Contact niet gevonden"; -$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; -$a->strings["Suggest Friends"] = "Stel vrienden voor"; -$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; -$a->strings["link"] = "link"; -$a->strings["No contacts."] = "Geen contacten."; $a->strings["Theme settings updated."] = "Thema-instellingen aangepast."; $a->strings["Site"] = "Website"; $a->strings["Users"] = "Gebruiker"; +$a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Thema's"; $a->strings["DB updates"] = "DB aanpassingen"; $a->strings["Logs"] = "Logs"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; +$a->strings["Admin"] = "Beheer"; $a->strings["Plugin Features"] = "Plugin Functies"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging"; @@ -1163,10 +432,16 @@ $a->strings["Version"] = "Versie"; $a->strings["Active plugins"] = "Actieve plug-ins"; $a->strings["Can not parse base url. Must have at least ://"] = ""; $a->strings["Site settings updated."] = "Site instellingen gewijzigd."; +$a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; +$a->strings["Never"] = "Nooit"; $a->strings["At post arrival"] = ""; +$a->strings["Frequently"] = "Frequent"; +$a->strings["Hourly"] = "elk uur"; +$a->strings["Twice daily"] = "Twee keer per dag"; +$a->strings["Daily"] = "dagelijks"; $a->strings["Multi user instance"] = "Server voor meerdere gebruikers"; $a->strings["Closed"] = "Gesloten"; $a->strings["Requires approval"] = "Toestemming vereist"; @@ -1174,6 +449,8 @@ $a->strings["Open"] = "Open"; $a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid, links zullen SSL status van pagina volgen"; $a->strings["Force all links to use SSL"] = "Verplicht alle links om SSL te gebruiken"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"; +$a->strings["Save Settings"] = "Instellingen opslaan"; +$a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Uploaden bestand"; $a->strings["Policies"] = "Beleid"; $a->strings["Advanced"] = "Geavanceerd"; @@ -1269,6 +546,8 @@ $a->strings["Poll interval"] = "Poll-interval"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."; $a->strings["Maximum Load Average"] = "Maximum gemiddelde belasting"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; $a->strings["Use MySQL full text engine"] = "Gebruik de tekst-zoekfunctie van MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."; $a->strings["Suppress Language"] = ""; @@ -1290,6 +569,8 @@ $a->strings["The old style pager has page numbers but slows down massively the p $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"] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; $a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd "; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -1305,6 +586,7 @@ $a->strings["Mark success (if update was manually applied)"] = "Markeren als suc $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren"; $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"] = "Registratie details voor %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s gebruiker geblokkeerd/niet geblokkeerd", 1 => "%s gebruikers geblokkeerd/niet geblokkeerd", @@ -1321,8 +603,12 @@ $a->strings["select all"] = "Alles selecteren"; $a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging"; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = "Registratiedatum"; +$a->strings["Name"] = "Naam"; +$a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Geen registraties."; $a->strings["Deny"] = "Weiger"; +$a->strings["Block"] = "Blokkeren"; +$a->strings["Unblock"] = "Blokkering opheffen"; $a->strings["Site admin"] = "Sitebeheerder"; $a->strings["Account expired"] = "Account verlopen"; $a->strings["New User"] = "Nieuwe gebruiker"; @@ -1330,6 +616,7 @@ $a->strings["Register date"] = "Registratiedatum"; $a->strings["Last login"] = "Laatste login"; $a->strings["Last item"] = "Laatste item"; $a->strings["Deleted since"] = "Verwijderd sinds"; +$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?"] = "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; $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?"] = "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"; $a->strings["Name of the new user."] = "Naam van nieuwe gebruiker"; @@ -1353,173 +640,230 @@ $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = "Logbestand"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."; $a->strings["Log level"] = "Log niveau"; +$a->strings["Update now"] = "Wijzig nu"; $a->strings["Close"] = "Afsluiten"; $a->strings["FTP Host"] = "FTP Server"; $a->strings["FTP Path"] = "FTP Pad"; $a->strings["FTP User"] = "FTP Gebruiker"; $a->strings["FTP Password"] = "FTP wachtwoord"; -$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d"; -$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; -$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; -$a->strings["Search Results For:"] = "Zoekresultaten voor:"; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; -$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; -$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; -$a->strings["New"] = "Nieuw"; -$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -$a->strings["Shared Links"] = "Gedeelde links"; -$a->strings["Interesting Links"] = "Interessante links"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", - 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", +$a->strings["Friends of %s"] = "Vrienden van %s"; +$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; +$a->strings["Common Friends"] = "Gedeelde Vrienden"; +$a->strings["No contacts in common."] = "Geen gedeelde contacten."; +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; +$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden."; +$a->strings["Contact updated."] = "Contact bijgewerkt."; +$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; +$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; +$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; +$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; +$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; +$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; +$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; +$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; +$a->strings["Contact has been removed."] = "Contact is verwijderd."; +$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; +$a->strings["You are sharing with %s"] = "Je deelt met %s"; +$a->strings["%s is sharing with you"] = "%s deelt met jou"; +$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; +$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; +$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; +$a->strings["Suggest friends"] = "Stel vrienden voor"; +$a->strings["Network type: %s"] = "Netwerk type: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d gedeeld contact", + 1 => "%d gedeelde contacten", +); +$a->strings["View all contacts"] = "Alle contacten zien"; +$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; +$a->strings["Unignore"] = "Negeer niet meer"; +$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; +$a->strings["Unarchive"] = "Archiveer niet meer"; +$a->strings["Archive"] = "Archiveer"; +$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; +$a->strings["Repair"] = "Herstellen"; +$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; +$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact Editor"] = "Contactbewerker"; +$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; +$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; +$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; +$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; +$a->strings["Ignore contact"] = "Negeer contact"; +$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; +$a->strings["View conversations"] = "Toon conversaties"; +$a->strings["Delete contact"] = "Verwijder contact"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare posts aanpassen"; +$a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; +$a->strings["Currently ignored"] = "Op dit moment genegeerd"; +$a->strings["Currently archived"] = "Op dit moment gearchiveerd"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; +$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten"; +$a->strings["Send a notification of every new post of this contact"] = ""; +$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"] = "Voorstellen"; +$a->strings["Suggest potential friends"] = "Stel vrienden voor"; +$a->strings["All Contacts"] = "Alle Contacten"; +$a->strings["Show all contacts"] = "Toon alle contacten"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; +$a->strings["Search your contacts"] = "Doorzoek je contacten"; +$a->strings["Finding: "] = "Gevonden:"; +$a->strings["Find"] = "Zoek"; +$a->strings["Update"] = "Wijzigen"; +$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; +$a->strings["is a fan of yours"] = "Is een fan van jou"; +$a->strings["you are a fan of"] = "Jij bent een fan van"; $a->strings["No such group"] = "Zo'n groep bestaat niet"; $a->strings["Group is empty"] = "De groep is leeg"; -$a->strings["Group: "] = "Groep:"; -$a->strings["Contact: "] = "Contact: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; -$a->strings["Invalid contact."] = "Ongeldig contact."; -$a->strings["- select -"] = "- Kies -"; -$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; -$a->strings["running at web location"] = "draaiend op web-adres"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; -$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; -$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; -$a->strings["Applications"] = "Toepassingen"; -$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; -$a->strings["Album not found."] = "Album niet gevonden"; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; -$a->strings["a photo"] = "een foto"; -$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van"; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; -$a->strings["Upload Photos"] = "Upload foto's"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or existing album name: "] = "of bestaande albumnaam: "; -$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; -$a->strings["Permissions"] = "Rechten"; -$a->strings["Private Photo"] = "Privé foto"; -$a->strings["Public Photo"] = "Publieke foto"; -$a->strings["Edit Album"] = "Album wijzigen"; -$a->strings["Show Newest First"] = "Toon niewste eerst"; -$a->strings["Show Oldest First"] = "Toon oudste eerst"; -$a->strings["View Photo"] = "Bekijk foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; -$a->strings["Photo not available"] = "Foto is niet beschikbaar"; -$a->strings["View photo"] = "Bekijk foto"; -$a->strings["Edit photo"] = "Bewerk foto"; -$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; -$a->strings["View Full Size"] = "Bekijk in volledig formaat"; -$a->strings["Tags: "] = "Labels: "; -$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; -$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; -$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; -$a->strings["New album name"] = "Nieuwe albumnaam"; -$a->strings["Caption"] = "Onderschrift"; -$a->strings["Add a Tag"] = "Een label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; -$a->strings["Private photo"] = "Privé foto"; -$a->strings["Public photo"] = "Publieke foto"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["The post was created"] = ""; -$a->strings["Contact added"] = "Contact toegevoegd"; -$a->strings["Move account"] = "Account verplaatsen"; -$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; -$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."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; -$a->strings["Account file"] = "Account bestand"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; -$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; -$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; -$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; -$a->strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", +$a->strings["Group: %s"] = ""; +$a->strings["View in context"] = "In context bekijken"; +$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; +$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; +$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; +$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."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; +$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Refetch contact data"] = ""; +$a->strings["Account Nickname"] = "Bijnaam account"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; +$a->strings["Account URL"] = "URL account"; +$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; +$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; +$a->strings["Notification Endpoint URL"] = ""; +$a->strings["Poll/Feed URL"] = "URL poll/feed"; +$a->strings["New photo from this URL"] = "Nieuwe foto van deze 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["Profile not found."] = "Profiel niet gevonden"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; +$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; +$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; +$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; +$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; +$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; +$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; +$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; +$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; +$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; +$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; +$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; +$a->strings["Unable to update your contact profile details on our system"] = ""; +$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; +$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; +$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; +$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "De %d vereiste parameter is niet op het gegeven adres gevonden", + 1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden", ); -$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; -$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."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke 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 servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; -$a->strings["Send invitations"] = "Verstuur uitnodigingen"; -$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; -$a->strings["Access denied."] = "Toegang geweigerd"; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; -$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"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; -$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; -$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; -$a->strings["click here to login"] = "klik hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; -$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"] = "Je wachtwoord is veranderd op %s"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; -$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; -$a->strings["Reset"] = "Opnieuw"; -$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; -$a->strings["Source input: "] = "Bron ingave:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe 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): "] = "Bron ingave (Diaspora formaat):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Tag removed"] = "Label verwijderd"; -$a->strings["Remove Item Tag"] = "Verwijder label van item"; -$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; -$a->strings["Remove My Account"] = "Verwijder mijn account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; -$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; -$a->strings["Profile Match"] = "Profielmatch"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; -$a->strings["is interested in:"] = "Is geïnteresseerd in:"; +$a->strings["Introduction complete."] = "Verzoek voltooid."; +$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. "; +$a->strings["Profile unavailable."] = "Profiel onbeschikbaar"; +$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag."; +$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."; +$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler"; +$a->strings["Invalid email address."] = "Geen geldig e-mailadres"; +$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."; +$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden."; +$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld."; +$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s."; +$a->strings["Invalid profile URL."] = "Ongeldig profiel adres."; +$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres."; +$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden."; +$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Je huidige identiteit is niet de juiste. Log met dit profiel in."; +$a->strings["Confirm"] = "Bevestig"; +$a->strings["Hide this contact"] = "Verberg dit contact"; +$a->strings["Welcome home %s."] = "Welkom terug %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; +$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."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; +$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; +$a->strings["Does %s know you?"] = "Kent %s jou?"; +$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."; +$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; +$a->strings["Submit Request"] = "Aanvraag indienen"; +$a->strings["Find on this site"] = "Op deze website zoeken"; +$a->strings["Site Directory"] = "Websitegids"; +$a->strings["Age: "] = "Leeftijd:"; +$a->strings["Gender: "] = "Geslacht:"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["Gender:"] = "Geslacht:"; +$a->strings["Status:"] = "Tijdlijn:"; +$a->strings["Homepage:"] = "Website:"; +$a->strings["About:"] = "Over:"; +$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; +$a->strings["People Search - %s"] = ""; +$a->strings["No matches"] = "Geen resultaten"; +$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; +$a->strings["Item has been removed."] = "Item is verwijderd."; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["upload photo"] = "Foto uploaden"; +$a->strings["Attach file"] = "Bestand bijvoegen"; +$a->strings["attach file"] = "bestand bijvoegen"; +$a->strings["web link"] = "webadres"; +$a->strings["Insert video link"] = "Voeg video toe"; +$a->strings["video link"] = "video adres"; +$a->strings["Insert audio link"] = "Voeg audio adres toe"; +$a->strings["audio link"] = "audio adres"; +$a->strings["Set your location"] = "Stel uw locatie in"; +$a->strings["set location"] = "Stel uw locatie in"; +$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["Permission settings"] = "Instellingen van rechten"; +$a->strings["CC: email addresses"] = "CC: e-mailadressen"; +$a->strings["Public post"] = "Openbare post"; +$a->strings["Set title"] = "Titel plaatsen"; +$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; +$a->strings["Event can not end before it has started."] = ""; $a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; $a->strings["l, F j"] = "l j F"; $a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["link to source"] = "Verwijzing naar bron"; $a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; $a->strings["Previous"] = "Vorige"; $a->strings["Next"] = "Volgende"; -$a->strings["hour:minute"] = "uur:minuut"; $a->strings["Event details"] = "Gebeurtenis details"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist."; +$a->strings["Starting date and Title are required."] = ""; $a->strings["Event Starts:"] = "Gebeurtenis begint:"; $a->strings["Required"] = "Vereist"; $a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; @@ -1528,117 +872,28 @@ $a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebr $a->strings["Description:"] = "Beschrijving:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; -$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; -$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; -$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s"; -$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk"; -$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk"; -$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s"; -$a->strings["{0} posted"] = "{0} plaatste"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; -$a->strings["No results."] = "Geen resultaten."; -$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; -$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Conversation removed."] = "Gesprek verwijderd."; -$a->strings["No messages."] = "Geen berichten."; -$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; -$a->strings["You and %s"] = "Jij en %s"; -$a->strings["%s and You"] = "%s en jij"; -$a->strings["Delete conversation"] = "Verwijder gesprek"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d bericht", - 1 => "%d berichten", -); -$a->strings["Message not available."] = "Bericht niet beschikbaar."; -$a->strings["Delete message"] = "Verwijder bericht"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; -$a->strings["Send Reply"] = "Verstuur Antwoord"; -$a->strings["Not available."] = "Niet beschikbaar"; -$a->strings["Profile not found."] = "Profiel niet gevonden"; -$a->strings["Profile deleted."] = "Profiel verwijderd"; -$a->strings["Profile-"] = "Profiel-"; -$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; -$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen."; -$a->strings["Profile Name is required."] = "Profielnaam is vereist."; -$a->strings["Marital Status"] = "Echtelijke staat"; -$a->strings["Romantic Partner"] = "Romantische Partner"; -$a->strings["Likes"] = "Houdt van"; -$a->strings["Dislikes"] = "Houdt niet van"; -$a->strings["Work/Employment"] = "Werk"; -$a->strings["Religion"] = "Godsdienst"; -$a->strings["Political Views"] = "Politieke standpunten"; -$a->strings["Gender"] = "Geslacht"; -$a->strings["Sexual Preference"] = "Seksuele Voorkeur"; -$a->strings["Homepage"] = "Tijdlijn"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Address"] = "Adres"; -$a->strings["Location"] = "Plaats"; -$a->strings["Profile updated."] = "Profiel bijgewerkt."; -$a->strings[" and "] = "en"; -$a->strings["public profile"] = "publiek profiel"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; -$a->strings["Hide contacts and friends:"] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; -$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; -$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; -$a->strings["View this profile"] = "Dit profiel bekijken"; -$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen"; -$a->strings["Clone this profile"] = "Dit profiel klonen"; -$a->strings["Delete this profile"] = "Dit profiel verwijderen"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Upload Profile Photo"] = "Profielfoto uploaden"; -$a->strings["Profile Name:"] = "Profiel Naam:"; -$a->strings["Your Full Name:"] = "Je volledige naam:"; -$a->strings["Title/Description:"] = "Titel/Beschrijving:"; -$a->strings["Your Gender:"] = "Je Geslacht:"; -$a->strings["Birthday (%s):"] = "Geboortedatum (%s):"; -$a->strings["Street Address:"] = "Postadres:"; -$a->strings["Locality/City:"] = "Gemeente/Stad:"; -$a->strings["Postal/Zip Code:"] = "Postcode:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Regio/Staat:"; -$a->strings[" Marital Status:"] = " Echtelijke Staat:"; -$a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"; -$a->strings["Since [date]:"] = "Sinds [datum]:"; -$a->strings["Homepage URL:"] = "Adres tijdlijn:"; -$a->strings["Religious Views:"] = "Geloof:"; -$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; -$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; -$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; -$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf..."; -$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; -$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; -$a->strings["Musical interests"] = "Muzikale interesses"; -$a->strings["Books, literature"] = "Boeken, literatuur"; -$a->strings["Television"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; -$a->strings["Love/romance"] = "Liefde/romance"; -$a->strings["Work/employment"] = "Werk"; -$a->strings["School/education"] = "School/opleiding"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet."; -$a->strings["Age: "] = "Leeftijd:"; -$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; +$a->strings["You already added this contact."] = ""; +$a->strings["Contact added"] = "Contact toegevoegd"; +$a->strings["Group created."] = "Groep aangemaakt."; +$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; +$a->strings["Group not found."] = "Groep niet gevonden."; +$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; +$a->strings["Group Name: "] = "Groepsnaam:"; +$a->strings["Group removed."] = "Groep verwijderd."; +$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; +$a->strings["Group Editor"] = "Groepsbewerker"; +$a->strings["Members"] = "Leden"; +$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; $a->strings["Friendica Communications Server - Setup"] = ""; $a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database."; $a->strings["Could not create table."] = "Kon tabel niet aanmaken."; $a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; $a->strings["System check"] = "Systeemcontrole"; $a->strings["Check again"] = "Controleer opnieuw"; $a->strings["Database connection"] = "Verbinding met database"; @@ -1694,91 +949,97 @@ $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."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."; $a->strings["

    What next

    "] = "

    Wat nu

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."; -$a->strings["Help:"] = "Help:"; -$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; -$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; -$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; -$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."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; -$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Account Nickname"] = "Bijnaam account"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; -$a->strings["Account URL"] = "URL account"; -$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; -$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = "URL poll/feed"; -$a->strings["New photo from this URL"] = "Nieuwe foto van deze 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["Welcome to Friendica"] = "Welkom bij Friendica"; -$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; -$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."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; -$a->strings["Getting Started"] = "Aan de slag"; -$a->strings["Friendica Walk-Through"] = "Doorloop 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."] = "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."; -$a->strings["Go to Your Settings"] = "Ga naar je instellingen"; -$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."] = "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale 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."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; -$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."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."; -$a->strings["Edit Your Profile"] = "Bewerk je profiel"; -$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."] = "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."; -$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel"; -$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."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."; -$a->strings["Connecting"] = "Verbinding aan het maken"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Als dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."; -$a->strings["Importing Emails"] = "E-mails importeren"; -$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"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"; -$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina"; -$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."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog."; -$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website"; -$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."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."; -$a->strings["Finding New People"] = "Nieuwe mensen vinden"; -$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."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."; -$a->strings["Group Your Contacts"] = "Groepeer je contacten"; -$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."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "; -$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?"; -$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 respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."; -$a->strings["Getting Help"] = "Hulp krijgen"; -$a->strings["Go to the Help Section"] = "Ga naar de help"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Dit bericht privé maken"; -$a->strings["Item has been removed."] = "Item is verwijderd."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; -$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; -$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; -$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; -$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; -$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; -$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; -$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; -$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; -$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; -$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; -$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; -$a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; $a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden."; $a->strings["Empty post discarded."] = "Lege post weggegooid."; +$a->strings["Wall Photos"] = ""; $a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard."; $a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; $a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."; $a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst."; +$a->strings["Profile Match"] = "Profielmatch"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; +$a->strings["is interested in:"] = "Is geïnteresseerd in:"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Search Results For: %s"] = ""; +$a->strings["add"] = "toevoegen"; +$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; +$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; +$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; +$a->strings["New"] = "Nieuw"; +$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +$a->strings["Shared Links"] = "Gedeelde links"; +$a->strings["Interesting Links"] = "Interessante links"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", + 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; +$a->strings["Contact: %s"] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; +$a->strings["Invalid contact."] = "Ongeldig contact."; +$a->strings["Personal Notes"] = "Persoonlijke Nota's"; +$a->strings["Not Extended"] = ""; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["everybody"] = "iedereen"; +$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; +$a->strings["Album not found."] = "Album niet gevonden"; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; +$a->strings["a photo"] = "een foto"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; +$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; +$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; +$a->strings["Upload Photos"] = "Upload foto's"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or existing album name: "] = "of bestaande albumnaam: "; +$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; +$a->strings["Permissions"] = "Rechten"; +$a->strings["Show to Groups"] = "Tonen aan groepen"; +$a->strings["Show to Contacts"] = "Tonen aan contacten"; +$a->strings["Private Photo"] = "Privé foto"; +$a->strings["Public Photo"] = "Publieke foto"; +$a->strings["Edit Album"] = "Album wijzigen"; +$a->strings["Show Newest First"] = "Toon niewste eerst"; +$a->strings["Show Oldest First"] = "Toon oudste eerst"; +$a->strings["View Photo"] = "Bekijk foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; +$a->strings["Photo not available"] = "Foto is niet beschikbaar"; +$a->strings["View photo"] = "Bekijk foto"; +$a->strings["Edit photo"] = "Bewerk foto"; +$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; +$a->strings["View Full Size"] = "Bekijk in volledig formaat"; +$a->strings["Tags: "] = "Labels: "; +$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; +$a->strings["New album name"] = "Nieuwe albumnaam"; +$a->strings["Caption"] = "Onderschrift"; +$a->strings["Add a Tag"] = "Een label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; +$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; +$a->strings["Private photo"] = "Privé foto"; +$a->strings["Public photo"] = "Publieke foto"; +$a->strings["Share"] = "Delen"; +$a->strings["View Album"] = "Album bekijken"; +$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; +$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; +$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; +$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; +$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; $a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt."; $a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."; @@ -1786,21 +1047,786 @@ $a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; $a->strings["Upload File:"] = "Upload bestand:"; $a->strings["Select a profile:"] = "Kies een profiel:"; $a->strings["Upload"] = "Uploaden"; +$a->strings["or"] = "of"; $a->strings["skip this step"] = "Deze stap overslaan"; $a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; $a->strings["Crop Image"] = "Afbeelding bijsnijden"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat."; $a->strings["Done Editing"] = "Wijzigingen compleet"; $a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; -$a->strings["Friends of %s"] = "Vrienden van %s"; -$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; -$a->strings["Find on this site"] = "Op deze website zoeken"; -$a->strings["Site Directory"] = "Websitegids"; -$a->strings["Gender: "] = "Geslacht:"; -$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; -$a->strings["Time Conversion"] = "Tijdsconversie"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; -$a->strings["UTC time: %s"] = "UTC tijd: %s"; -$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; -$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; -$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; +$a->strings["Profile deleted."] = "Profiel verwijderd"; +$a->strings["Profile-"] = "Profiel-"; +$a->strings["New profile created."] = "Nieuw profiel aangemaakt."; +$a->strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen."; +$a->strings["Profile Name is required."] = "Profielnaam is vereist."; +$a->strings["Marital Status"] = "Echtelijke staat"; +$a->strings["Romantic Partner"] = "Romantische Partner"; +$a->strings["Likes"] = "Houdt van"; +$a->strings["Dislikes"] = "Houdt niet van"; +$a->strings["Work/Employment"] = "Werk"; +$a->strings["Religion"] = "Godsdienst"; +$a->strings["Political Views"] = "Politieke standpunten"; +$a->strings["Gender"] = "Geslacht"; +$a->strings["Sexual Preference"] = "Seksuele Voorkeur"; +$a->strings["Homepage"] = "Tijdlijn"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Address"] = "Adres"; +$a->strings["Location"] = "Plaats"; +$a->strings["Profile updated."] = "Profiel bijgewerkt."; +$a->strings[" and "] = "en"; +$a->strings["public profile"] = "publiek profiel"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; +$a->strings["Hide contacts and friends:"] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; +$a->strings["Edit Profile Details"] = "Profieldetails bewerken"; +$a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; +$a->strings["View this profile"] = "Dit profiel bekijken"; +$a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen"; +$a->strings["Clone this profile"] = "Dit profiel klonen"; +$a->strings["Delete this profile"] = "Dit profiel verwijderen"; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; +$a->strings["Profile Name:"] = "Profiel Naam:"; +$a->strings["Your Full Name:"] = "Je volledige naam:"; +$a->strings["Title/Description:"] = "Titel/Beschrijving:"; +$a->strings["Your Gender:"] = "Je Geslacht:"; +$a->strings["Birthday :"] = ""; +$a->strings["Street Address:"] = "Postadres:"; +$a->strings["Locality/City:"] = "Gemeente/Stad:"; +$a->strings["Postal/Zip Code:"] = "Postcode:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Regio/Staat:"; +$a->strings[" Marital Status:"] = " Echtelijke Staat:"; +$a->strings["Who: (if applicable)"] = "Wie: (indien toepasbaar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"; +$a->strings["Since [date]:"] = "Sinds [datum]:"; +$a->strings["Sexual Preference:"] = "Seksuele Voorkeur:"; +$a->strings["Homepage URL:"] = "Adres tijdlijn:"; +$a->strings["Hometown:"] = "Woonplaats:"; +$a->strings["Political Views:"] = "Politieke standpunten:"; +$a->strings["Religious Views:"] = "Geloof:"; +$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:"; +$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:"; +$a->strings["Likes:"] = "Houdt van:"; +$a->strings["Dislikes:"] = "Houdt niet van:"; +$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"; +$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf..."; +$a->strings["Hobbies/Interests"] = "Hobby's/Interesses"; +$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken"; +$a->strings["Musical interests"] = "Muzikale interesses"; +$a->strings["Books, literature"] = "Boeken, literatuur"; +$a->strings["Television"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning"; +$a->strings["Love/romance"] = "Liefde/romance"; +$a->strings["Work/employment"] = "Werk"; +$a->strings["School/education"] = "School/opleiding"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet."; +$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen"; +$a->strings["Change profile photo"] = "Profiel foto wijzigen"; +$a->strings["Create New Profile"] = "Maak nieuw profiel"; +$a->strings["Profile Image"] = "Profiel afbeelding"; +$a->strings["visible to everybody"] = "zichtbaar voor iedereen"; +$a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; +$a->strings["Profile Visibility Editor"] = ""; +$a->strings["Visible To"] = "Zichtbaar voor"; +$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Search results for: %s"] = ""; +$a->strings["link"] = "link"; +$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; +$a->strings["No videos selected"] = "Geen video's geselecteerd"; +$a->strings["View Video"] = "Bekijk Video"; +$a->strings["Recent Videos"] = "Recente video's"; +$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; +$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 %s"] = ""; +$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; +$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."] = "Je registratie kan niet verwerkt worden."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; +$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; +$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; +$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; +$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; +$a->strings["Your Email Address: "] = "Je email adres:"; +$a->strings["New Password:"] = "Nieuw Wachtwoord:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Confirm:"] = "Bevestig:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; +$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; +$a->strings["Register"] = "Registreer"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Display"] = "Weergave"; +$a->strings["Social Networks"] = "Sociale netwerken"; +$a->strings["Delegations"] = ""; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Remove account"] = "Account verwijderen"; +$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; +$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; +$a->strings["Features updated"] = "Functies bijgewerkt"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; +$a->strings["Wrong password."] = "Verkeerd wachtwoord."; +$a->strings["Password changed."] = "Wachtwoord gewijzigd."; +$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; +$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; +$a->strings[" Name too short."] = "Naam te kort."; +$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; +$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; +$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; +$a->strings["Settings updated."] = "Instellingen bijgewerkt."; +$a->strings["Add application"] = "Toepassing toevoegen"; +$a->strings["Consumer Key"] = "Gebruikerssleutel"; +$a->strings["Consumer Secret"] = "Gebruikersgeheim"; +$a->strings["Redirect"] = "Doorverwijzing"; +$a->strings["Icon url"] = "URL pictogram"; +$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; +$a->strings["Connected Apps"] = "Verbonden applicaties"; +$a->strings["Client key starts with"] = ""; +$a->strings["No name"] = "Geen naam"; +$a->strings["Remove authorization"] = "Verwijder authorisatie"; +$a->strings["No Plugin settings configured"] = ""; +$a->strings["Plugin Settings"] = "Plugin Instellingen"; +$a->strings["Off"] = "Uit"; +$a->strings["On"] = "Aan"; +$a->strings["Additional Features"] = "Extra functies"; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; +$a->strings["enabled"] = "ingeschakeld"; +$a->strings["disabled"] = "uitgeschakeld"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; +$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; +$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; +$a->strings["IMAP server name:"] = "IMAP server naam:"; +$a->strings["IMAP port:"] = "IMAP poort:"; +$a->strings["Security:"] = "Beveiliging:"; +$a->strings["None"] = "Geen"; +$a->strings["Email login name:"] = "E-mail login naam:"; +$a->strings["Email password:"] = "E-mail wachtwoord:"; +$a->strings["Reply-to address:"] = "Antwoord adres:"; +$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; +$a->strings["Action after import:"] = "Actie na importeren:"; +$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; +$a->strings["Move to folder"] = "Naar map verplaatsen"; +$a->strings["Move to folder:"] = "Verplaatsen naar map:"; +$a->strings["Display Settings"] = "Scherminstellingen"; +$a->strings["Display Theme:"] = "Schermthema:"; +$a->strings["Mobile Theme:"] = "Mobiel thema:"; +$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; +$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; +$a->strings["Maximum of 100 items"] = "Maximum 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; +$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = "Oneindig scrollen"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["User Types"] = "Gebruikerstypes"; +$a->strings["Community Types"] = "Forum/groepstypes"; +$a->strings["Normal Account Page"] = "Normale accountpagina"; +$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; +$a->strings["Soapbox Page"] = "Zeepkist-pagina"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; +$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; +$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; +$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; +$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; +$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; +$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; +$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?"] = "Vrienden toestaan om op jou profielpagina te posten?"; +$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; +$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; +$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; +$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is"; +$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; +$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; +$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; +$a->strings["Expire posts:"] = "Laat berichten vervallen:"; +$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; +$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; +$a->strings["Expire photos:"] = "Laat foto's vervallen:"; +$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; +$a->strings["Account Settings"] = "Account Instellingen"; +$a->strings["Password Settings"] = "Wachtwoord Instellingen"; +$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; +$a->strings["Current Password:"] = "Huidig wachtwoord:"; +$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; +$a->strings["Password:"] = "Wachtwoord:"; +$a->strings["Basic Settings"] = "Basis Instellingen"; +$a->strings["Full Name:"] = "Volledige Naam:"; +$a->strings["Email Address:"] = "E-mailadres:"; +$a->strings["Your Timezone:"] = "Je Tijdzone:"; +$a->strings["Default Post Location:"] = "Standaard locatie:"; +$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; +$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; +$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; +$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +$a->strings["Default Private Post"] = "Standaard Privé Post"; +$a->strings["Default Public Post"] = "Standaard Publieke Post"; +$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +$a->strings["Notification Settings"] = "Notificatie Instellingen"; +$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; +$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; +$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; +$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; +$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; +$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; +$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["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["Login"] = "Login"; +$a->strings["The post was created"] = ""; +$a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; +$a->strings["running at web location"] = "draaiend op web-adres"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; +$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek"; +$a->strings["the bugtracker at github"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; +$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; +$a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; +$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +$a->strings["Find People"] = "Zoek mensen"; +$a->strings["Enter name or interest"] = "Vul naam of interesse in"; +$a->strings["Connect/Follow"] = "Verbind/Volg"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; +$a->strings["Random Profile"] = "Willekeurig Profiel"; +$a->strings["Networks"] = "Netwerken"; +$a->strings["All Networks"] = "Alle netwerken"; +$a->strings["Saved Folders"] = "Bewaarde Mappen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Categorieën"; +$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["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Logged out."] = "Uitgelogd."; +$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:"] = "De foutboodschap was:"; +$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!"] = "Gebruiker '%s' bestaat al op deze server!"; +$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; +$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact werd niet geïmporteerd", + 1 => "%d contacten werden niet geïmporteerd", +); +$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; +$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; +$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; +$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; +$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; +$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; +$a->strings["Weekly"] = "wekelijks"; +$a->strings["Monthly"] = "maandelijks"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "Linkedln"; +$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-connector"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = ""; +$a->strings["General Features"] = "Algemene functies"; +$a->strings["Multiple Profiles"] = "Meerdere profielen"; +$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +$a->strings["Richtext Editor"] = "Tekstverwerker met opmaak"; +$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; +$a->strings["Post Preview"] = "Voorvertoning bericht"; +$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"] = "Zijbalkwidgets op netwerkpagina"; +$a->strings["Search by Date"] = "Zoeken op datum"; +$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik"; +$a->strings["Group Filter"] = "Groepsfilter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"; +$a->strings["Network Filter"] = "Netwerkfilter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"; +$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +$a->strings["Network Tabs"] = "Netwerktabs"; +$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +$a->strings["Network New Tab"] = "Nieuwe netwerktab"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen"; +$a->strings["Multiple Deletion"] = "Meervoudige verwijdering"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer"; +$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten"; +$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending"; +$a->strings["Tagging"] = "Labelen"; +$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen"; +$a->strings["Post Categories"] = "Categorieën berichten"; +$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren"; +$a->strings["Dislike Posts"] = "Vind berichten niet leuk"; +$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden"; +$a->strings["Star Posts"] = "Geef berichten een ster"; +$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["Male"] = "Man"; +$a->strings["Female"] = "Vrouw"; +$a->strings["Currently Male"] = "Momenteel mannelijk"; +$a->strings["Currently Female"] = "Momenteel vrouwelijk"; +$a->strings["Mostly Male"] = "Meestal mannelijk"; +$a->strings["Mostly Female"] = "Meestal vrouwelijk"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Interseksueel"; +$a->strings["Transsexual"] = "Transseksueel"; +$a->strings["Hermaphrodite"] = "Hermafrodiet"; +$a->strings["Neuter"] = "Genderneutraal"; +$a->strings["Non-specific"] = "Niet-specifiek"; +$a->strings["Other"] = "Anders"; +$a->strings["Undecided"] = "Onbeslist"; +$a->strings["Males"] = "Mannen"; +$a->strings["Females"] = "Vrouwen"; +$a->strings["Gay"] = "Homo"; +$a->strings["Lesbian"] = "Lesbienne"; +$a->strings["No Preference"] = "Geen voorkeur"; +$a->strings["Bisexual"] = "Biseksueel"; +$a->strings["Autosexual"] = "Autoseksueel"; +$a->strings["Abstinent"] = "Onthouder"; +$a->strings["Virgin"] = "Maagd"; +$a->strings["Deviant"] = "Afwijkend"; +$a->strings["Fetish"] = "Fetisj"; +$a->strings["Oodles"] = "Veel"; +$a->strings["Nonsexual"] = "Niet seksueel"; +$a->strings["Single"] = "Alleenstaand"; +$a->strings["Lonely"] = "Eenzaam"; +$a->strings["Available"] = "Beschikbaar"; +$a->strings["Unavailable"] = "Onbeschikbaar"; +$a->strings["Has crush"] = "Verliefd"; +$a->strings["Infatuated"] = "Smoorverliefd"; +$a->strings["Dating"] = "Aan het daten"; +$a->strings["Unfaithful"] = "Ontrouw"; +$a->strings["Sex Addict"] = "Seksverslaafd"; +$a->strings["Friends"] = "Vrienden"; +$a->strings["Friends/Benefits"] = "Vriendschap plus"; +$a->strings["Casual"] = "Ongebonden/vluchtig"; +$a->strings["Engaged"] = "Verloofd"; +$a->strings["Married"] = "Getrouwd"; +$a->strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Samenwonend"; +$a->strings["Common law"] = "getrouwd voor-de-wet"; +$a->strings["Happy"] = "Blij"; +$a->strings["Not looking"] = "Niet op zoek"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Bedrogen"; +$a->strings["Separated"] = "Uit elkaar"; +$a->strings["Unstable"] = "Onstabiel"; +$a->strings["Divorced"] = "Gescheiden"; +$a->strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +$a->strings["Widowed"] = "Weduwnaar/weduwe"; +$a->strings["Uncertain"] = "Onzeker"; +$a->strings["It's complicated"] = "Het is gecompliceerd"; +$a->strings["Don't care"] = "Kan me niet schelen"; +$a->strings["Ask me"] = "Vraag me"; +$a->strings["stopped following"] = ""; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["View Status"] = "Bekijk status"; +$a->strings["View Profile"] = "Bekijk profiel"; +$a->strings["View Photos"] = "Bekijk foto's"; +$a->strings["Network Posts"] = "Netwerkberichten"; +$a->strings["Edit Contact"] = "Bewerk contact"; +$a->strings["Drop Contact"] = "Verwijder contact"; +$a->strings["Send PM"] = "Stuur een privébericht"; +$a->strings[" on Last.fm"] = " op Last.fm"; +$a->strings["Post to Email"] = "Verzenden per e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["User not found."] = "Gebruiker niet gevonden"; +$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."] = "Er is geen status met dit kenmerk"; +$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["Starts:"] = "Begint:"; +$a->strings["Finishes:"] = "Eindigt:"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; +$a->strings["post/item"] = "bericht/item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; +$a->strings["remove"] = "verwijder"; +$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["%s likes this."] = "%s vindt dit leuk."; +$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; +$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = ", en %d andere mensen"; +$a->strings["%s like this."] = "%s vindt dit leuk."; +$a->strings["%s don't like this."] = "%s vindt dit niet leuk."; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Label:"; +$a->strings["Where are you right now?"] = "Waar ben je nu?"; +$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; +$a->strings["permissions"] = "rechten"; +$a->strings["Post to Groups"] = "Verzenden naar Groepen"; +$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; +$a->strings["Private post"] = "Privé verzending"; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["month"] = "maand"; +$a->strings["months"] = "maanden"; +$a->strings["week"] = "week"; +$a->strings["weeks"] = "weken"; +$a->strings["day"] = "dag"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["%s's birthday"] = "%s's verjaardag"; +$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; +$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."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["(no subject)"] = "(geen onderwerp)"; +$a->strings["noreply"] = "geen reactie"; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["Friendica Notification"] = "Friendica Notificatie"; +$a->strings["Thank You,"] = "Bedankt"; +$a->strings["%s Administrator"] = "%s Beheerder"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s."; +$a->strings["a private message"] = "een prive bericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %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."] = "%s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."; +$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"] = "[Friendica:Notificatie] %s heeft jou genoemd"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/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"] = "[Friendica:Notify] %1\$s heeft jou aangestoten"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s."; +$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren."; +$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:"] = "Naam:"; +$a->strings["Photo:"] = "Foto: "; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has accepted 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["Connect URL missing."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; +$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."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; +$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; +$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"] = "volgend"; +$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."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["edit"] = "verander"; +$a->strings["Edit group"] = "Verander groep"; +$a->strings["Create a new group"] = "Maak nieuwe groep"; +$a->strings["Contacts not in any group"] = ""; +$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; +$a->strings["Edit profile"] = "Bewerk profiel"; +$a->strings["Message"] = "Bericht"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "G l j F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Verjaardag:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Tags:"] = "Labels:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["Hobbies/Interests:"] = "Hobby:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["Musical interests:"] = "Muzikale interesse "; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; +$a->strings["Love/Romance:"] = "Liefde/romance:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Status"] = "Tijdlijn"; +$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; +$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["Videos"] = "Video's"; +$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; +$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; +$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; +$a->strings["Archives"] = "Archieven"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["End this session"] = "Deze sessie beëindigen"; +$a->strings["Your videos"] = ""; +$a->strings["Your personal notes"] = ""; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["Home Page"] = "Jouw tijdlijn"; +$a->strings["Create an account"] = "Maak een accoount"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; +$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; +$a->strings["Conversations on this site"] = "Conversaties op deze website"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Directory"] = "Gids"; +$a->strings["People directory"] = "Personengids"; +$a->strings["Information"] = "Informatie"; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; +$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; +$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; +$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; +$a->strings["See all notifications"] = "Toon alle notificaties"; +$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Verzonden berichten"; +$a->strings["Manage"] = "Beheren"; +$a->strings["Manage other pages"] = "Andere pagina's beheren"; +$a->strings["Account settings"] = "Account instellingen"; +$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; +$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; +$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; +$a->strings["Navigation"] = "Navigatie"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["view full size"] = "Volledig formaat"; +$a->strings["Embedded content"] = "Ingebedde inhoud"; +$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; +$a->strings["Welcome "] = "Welkom"; +$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; +$a->strings["Welcome back "] = "Welkom terug "; +$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["newer"] = "nieuwere berichten"; +$a->strings["older"] = "oudere berichten"; +$a->strings["prev"] = "vorige"; +$a->strings["first"] = "eerste"; +$a->strings["last"] = "laatste"; +$a->strings["next"] = "volgende"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Geen contacten"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacten", +); +$a->strings["poke"] = "aanstoten"; +$a->strings["poked"] = "aangestoten"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "gepingd"; +$a->strings["prod"] = "porren"; +$a->strings["prodded"] = "gepord"; +$a->strings["slap"] = "slaan"; +$a->strings["slapped"] = "geslagen"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "gerfingerd"; +$a->strings["rebuff"] = "afpoeieren"; +$a->strings["rebuffed"] = "afgepoeierd"; +$a->strings["happy"] = "Blij"; +$a->strings["sad"] = "Verdrietig"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "vermoeid"; +$a->strings["perky"] = "parmantig"; +$a->strings["angry"] = "boos"; +$a->strings["stupified"] = "verbijsterd"; +$a->strings["puzzled"] = "onzeker"; +$a->strings["interested"] = "Geïnteresseerd"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "vrolijk"; +$a->strings["alive"] = "levend"; +$a->strings["annoyed"] = "verveeld"; +$a->strings["anxious"] = "bezorgd"; +$a->strings["cranky"] = "humeurig "; +$a->strings["disturbed"] = "verontrust"; +$a->strings["frustrated"] = "gefrustreerd"; +$a->strings["motivated"] = "gemotiveerd"; +$a->strings["relaxed"] = "ontspannen"; +$a->strings["surprised"] = "verbaasd"; +$a->strings["Monday"] = "Maandag"; +$a->strings["Tuesday"] = "Dinsdag"; +$a->strings["Wednesday"] = "Woensdag"; +$a->strings["Thursday"] = "Donderdag"; +$a->strings["Friday"] = "Vrijdag"; +$a->strings["Saturday"] = "Zaterdag"; +$a->strings["Sunday"] = "Zondag"; +$a->strings["January"] = "Januari"; +$a->strings["February"] = "Februari"; +$a->strings["March"] = "Maart"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mei"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "Augustus"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "December"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "klik om te openen/sluiten"; +$a->strings["Select an alternate language"] = "Kies een andere taal"; +$a->strings["activity"] = "activiteit"; +$a->strings["post"] = "bericht"; +$a->strings["Item filed"] = "Item bewaard"; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; +$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; +$a->strings["Name too short."] = "Naam te kort"; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; +$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; +$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; +$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; +$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; +$a->strings["An error occurred during registration. Please try again."] = ""; +$a->strings["An error occurred creating your default profile. Please try again."] = ""; +$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["toggle mobile"] = "mobiel thema omwisselen"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["show fewer"] = "Minder tonen"; +$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; +$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; +$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; +$a->strings["Password: "] = "Wachtwoord:"; +$a->strings["Remember me"] = "Onthou me"; +$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; +$a->strings["terms of service"] = "servicevoorwaarden"; +$a->strings["Website Privacy Policy"] = "Privacybeleid website"; +$a->strings["privacy policy"] = "privacybeleid"; diff --git a/view/pl/messages.po b/view/pl/messages.po index 0781d120e..2507352a9 100644 --- a/view/pl/messages.po +++ b/view/pl/messages.po @@ -4,7 +4,7 @@ # # Translators: # Adam Jurkiewicz , 2012 -# julia.domagalska , 2013 +# julia.domagalska , 2013,2015 # julia.domagalska , 2012-2013 # Daria Początek , 2012 # Cyryl Sochacki , 2013 @@ -36,17 +36,17 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 08:57+0100\n" -"PO-Revision-Date: 2015-02-09 09:46+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n" +"POT-Creation-Date: 2015-09-01 07:09+0200\n" +"PO-Revision-Date: 2015-09-24 16:15+0000\n" +"Last-Translator: julia.domagalska \n" +"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ../../mod/contacts.php:108 +#: mod/contacts.php:114 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" @@ -54,144 +54,136 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 +#: mod/contacts.php:145 mod/contacts.php:340 msgid "Could not access contact record." msgstr "Nie można uzyskać dostępu do rejestru kontaktów." -#: ../../mod/contacts.php:153 +#: mod/contacts.php:159 msgid "Could not locate selected profile." msgstr "Nie można znaleźć wybranego profilu." -#: ../../mod/contacts.php:186 +#: mod/contacts.php:192 msgid "Contact updated." msgstr "Kontakt zaktualizowany" -#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 +#: mod/contacts.php:194 mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Aktualizacja nagrania kontaktu nie powiodła się." -#: ../../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 +#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 +#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 +#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5023 index.php:382 msgid "Permission denied." msgstr "Brak uprawnień." -#: ../../mod/contacts.php:287 +#: mod/contacts.php:361 msgid "Contact has been blocked" msgstr "Kontakt został zablokowany" -#: ../../mod/contacts.php:287 +#: mod/contacts.php:361 msgid "Contact has been unblocked" msgstr "Kontakt został odblokowany" -#: ../../mod/contacts.php:298 +#: mod/contacts.php:372 msgid "Contact has been ignored" msgstr "Kontakt jest ignorowany" -#: ../../mod/contacts.php:298 +#: mod/contacts.php:372 msgid "Contact has been unignored" msgstr "Kontakt nie jest ignorowany" -#: ../../mod/contacts.php:310 +#: mod/contacts.php:384 msgid "Contact has been archived" msgstr "Kontakt został zarchiwizowany" -#: ../../mod/contacts.php:310 +#: mod/contacts.php:384 msgid "Contact has been unarchived" msgstr "" -#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 +#: mod/contacts.php:411 mod/contacts.php:767 msgid "Do you really want to delete this contact?" msgstr "Czy na pewno chcesz usunąć ten kontakt?" -#: ../../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 +#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 +#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 +#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 +#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 +#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 +#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/api.php:105 include/items.php:4855 msgid "Yes" msgstr "Tak" -#: ../../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 +#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 +#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 +#: include/items.php:4858 msgid "Cancel" msgstr "Anuluj" -#: ../../mod/contacts.php:352 +#: mod/contacts.php:428 msgid "Contact has been removed." msgstr "Kontakt został usunięty." -#: ../../mod/contacts.php:390 +#: mod/contacts.php:466 #, php-format msgid "You are mutual friends with %s" msgstr "Jesteś już znajomym z %s" -#: ../../mod/contacts.php:394 +#: mod/contacts.php:470 #, php-format msgid "You are sharing with %s" msgstr "Współdzielisz z %s" -#: ../../mod/contacts.php:399 +#: mod/contacts.php:475 #, php-format msgid "%s is sharing with you" msgstr "%s współdzieli z tobą" -#: ../../mod/contacts.php:416 +#: mod/contacts.php:495 msgid "Private communications are not available for this contact." msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu" -#: ../../mod/contacts.php:419 ../../mod/admin.php:569 +#: mod/contacts.php:498 mod/admin.php:618 msgid "Never" msgstr "Nigdy" -#: ../../mod/contacts.php:423 +#: mod/contacts.php:502 msgid "(Update was successful)" msgstr "(Aktualizacja przebiegła pomyślnie)" -#: ../../mod/contacts.php:423 +#: mod/contacts.php:502 msgid "(Update was not successful)" msgstr "(Aktualizacja nie powiodła się)" -#: ../../mod/contacts.php:425 +#: mod/contacts.php:504 msgid "Suggest friends" msgstr "Osoby, które możesz znać" -#: ../../mod/contacts.php:429 +#: mod/contacts.php:508 #, php-format msgid "Network type: %s" msgstr "Typ sieci: %s" -#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#: mod/contacts.php:511 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -199,383 +191,376 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../../mod/contacts.php:437 +#: mod/contacts.php:516 msgid "View all contacts" msgstr "Zobacz wszystkie kontakty" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1083 msgid "Unblock" msgstr "Odblokuj" -#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 -#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 +#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 +#: mod/admin.php:1082 msgid "Block" msgstr "Zablokuj" -#: ../../mod/contacts.php:445 +#: mod/contacts.php:524 msgid "Toggle Blocked status" msgstr "" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 msgid "Unignore" msgstr "Odblokuj" -#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 -#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 msgid "Ignore" msgstr "Ignoruj" -#: ../../mod/contacts.php:451 +#: mod/contacts.php:531 msgid "Toggle Ignored status" msgstr "" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Unarchive" msgstr "Przywróć z archiwum" -#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 +#: mod/contacts.php:536 mod/contacts.php:772 msgid "Archive" msgstr "Archiwum" -#: ../../mod/contacts.php:458 +#: mod/contacts.php:539 msgid "Toggle Archive status" msgstr "" -#: ../../mod/contacts.php:461 +#: mod/contacts.php:543 msgid "Repair" msgstr "Napraw" -#: ../../mod/contacts.php:464 +#: mod/contacts.php:546 msgid "Advanced Contact Settings" msgstr "Zaawansowane ustawienia kontaktów" -#: ../../mod/contacts.php:470 +#: mod/contacts.php:553 msgid "Communications lost with this contact!" msgstr "Komunikacja przerwana z tym kontaktem!" -#: ../../mod/contacts.php:473 +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:557 mod/admin.php:627 +msgid "Disabled" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:566 msgid "Contact Editor" msgstr "Edytor kontaktów" -#: ../../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 +#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:511 mod/content.php:712 mod/install.php:250 +#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 +#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 +#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 +#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 +#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "Potwierdź" -#: ../../mod/contacts.php:476 +#: mod/contacts.php:569 msgid "Profile Visibility" msgstr "Widoczność profilu" -#: ../../mod/contacts.php:477 +#: mod/contacts.php:570 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s" -#: ../../mod/contacts.php:478 +#: mod/contacts.php:571 msgid "Contact Information / Notes" msgstr "Informacja o kontakcie / Notka" -#: ../../mod/contacts.php:479 +#: mod/contacts.php:572 msgid "Edit contact notes" msgstr "Edytuj notatki kontaktu" -#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 -#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Obejrzyj %s's profil [%s]" -#: ../../mod/contacts.php:485 +#: mod/contacts.php:578 msgid "Block/Unblock contact" msgstr "Zablokuj/odblokuj kontakt" -#: ../../mod/contacts.php:486 +#: mod/contacts.php:579 msgid "Ignore contact" msgstr "Ignoruj kontakt" -#: ../../mod/contacts.php:487 +#: mod/contacts.php:580 msgid "Repair URL settings" msgstr "Napraw ustawienia adresu" -#: ../../mod/contacts.php:488 +#: mod/contacts.php:581 msgid "View conversations" msgstr "Zobacz rozmowę" -#: ../../mod/contacts.php:490 +#: mod/contacts.php:583 msgid "Delete contact" msgstr "Usuń kontakt" -#: ../../mod/contacts.php:494 +#: mod/contacts.php:587 msgid "Last update:" msgstr "Ostatnia aktualizacja:" -#: ../../mod/contacts.php:496 +#: mod/contacts.php:589 msgid "Update public posts" msgstr "Zaktualizuj publiczne posty" -#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 +#: mod/contacts.php:591 mod/admin.php:1584 msgid "Update now" msgstr "Aktualizuj teraz" -#: ../../mod/contacts.php:505 +#: mod/contacts.php:598 msgid "Currently blocked" msgstr "Obecnie zablokowany" -#: ../../mod/contacts.php:506 +#: mod/contacts.php:599 msgid "Currently ignored" msgstr "Obecnie zignorowany" -#: ../../mod/contacts.php:507 +#: mod/contacts.php:600 msgid "Currently archived" msgstr "Obecnie zarchiwizowany" -#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 +#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 msgid "Hide this contact from others" msgstr "Ukryj ten kontakt przed innymi" -#: ../../mod/contacts.php:508 +#: mod/contacts.php:601 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" -#: ../../mod/contacts.php:509 +#: mod/contacts.php:602 msgid "Notification for new posts" msgstr "" -#: ../../mod/contacts.php:509 +#: mod/contacts.php:602 msgid "Send a notification of every new post of this contact" msgstr "" -#: ../../mod/contacts.php:510 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Disabled" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information" -msgstr "" - -#: ../../mod/contacts.php:511 -msgid "Fetch information and keywords" -msgstr "" - -#: ../../mod/contacts.php:513 +#: mod/contacts.php:605 msgid "Blacklisted keywords" msgstr "" -#: ../../mod/contacts.php:513 +#: mod/contacts.php:605 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: ../../mod/contacts.php:564 +#: mod/contacts.php:612 +msgid "Profile URL" +msgstr "" + +#: mod/contacts.php:658 msgid "Suggestions" msgstr "Sugestie" -#: ../../mod/contacts.php:567 +#: mod/contacts.php:661 msgid "Suggest potential friends" msgstr "Sugerowani znajomi" -#: ../../mod/contacts.php:570 ../../mod/group.php:194 +#: mod/contacts.php:665 mod/group.php:192 msgid "All Contacts" msgstr "Wszystkie kontakty" -#: ../../mod/contacts.php:573 +#: mod/contacts.php:668 msgid "Show all contacts" msgstr "Pokaż wszystkie kontakty" -#: ../../mod/contacts.php:576 +#: mod/contacts.php:672 msgid "Unblocked" msgstr "Odblokowany" -#: ../../mod/contacts.php:579 +#: mod/contacts.php:675 msgid "Only show unblocked contacts" msgstr "Pokaż tylko odblokowane kontakty" -#: ../../mod/contacts.php:583 +#: mod/contacts.php:680 msgid "Blocked" msgstr "Zablokowany" -#: ../../mod/contacts.php:586 +#: mod/contacts.php:683 msgid "Only show blocked contacts" msgstr "Pokaż tylko zablokowane kontakty" -#: ../../mod/contacts.php:590 +#: mod/contacts.php:688 msgid "Ignored" msgstr "Zignorowany" -#: ../../mod/contacts.php:593 +#: mod/contacts.php:691 msgid "Only show ignored contacts" msgstr "Pokaż tylko ignorowane kontakty" -#: ../../mod/contacts.php:597 +#: mod/contacts.php:696 msgid "Archived" msgstr "Zarchiwizowane" -#: ../../mod/contacts.php:600 +#: mod/contacts.php:699 msgid "Only show archived contacts" msgstr "Pokaż tylko zarchiwizowane kontakty" -#: ../../mod/contacts.php:604 +#: mod/contacts.php:704 msgid "Hidden" msgstr "Ukryty" -#: ../../mod/contacts.php:607 +#: mod/contacts.php:707 msgid "Only show hidden contacts" msgstr "Pokaż tylko ukryte kontakty" -#: ../../mod/contacts.php:655 -msgid "Mutual Friendship" -msgstr "Wzajemna przyjaźń" - -#: ../../mod/contacts.php:659 -msgid "is a fan of yours" -msgstr "jest twoim fanem" - -#: ../../mod/contacts.php:663 -msgid "you are a fan of" -msgstr "jesteś fanem" - -#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Edytuj kontakt" - -#: ../../mod/contacts.php:702 ../../include/nav.php:177 -#: ../../view/theme/diabook/theme.php:125 +#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 +#: include/nav.php:186 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Kontakty" -#: ../../mod/contacts.php:706 +#: mod/contacts.php:762 msgid "Search your contacts" msgstr "Wyszukaj w kontaktach" -#: ../../mod/contacts.php:707 ../../mod/directory.php:61 +#: mod/contacts.php:763 mod/directory.php:63 msgid "Finding: " msgstr "Znalezione:" -#: ../../mod/contacts.php:708 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 +#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Znajdź" -#: ../../mod/contacts.php:713 ../../mod/settings.php:132 -#: ../../mod/settings.php:640 +#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Zaktualizuj" -#: ../../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 +#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 +#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 msgid "Delete" msgstr "Usuń" -#: ../../mod/hcard.php:10 +#: mod/contacts.php:786 +msgid "Mutual Friendship" +msgstr "Wzajemna przyjaźń" + +#: mod/contacts.php:790 +msgid "is a fan of yours" +msgstr "jest twoim fanem" + +#: mod/contacts.php:794 +msgid "you are a fan of" +msgstr "jesteś fanem" + +#: mod/contacts.php:811 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Edytuj kontakt" + +#: mod/hcard.php:10 msgid "No profile" msgstr "Brak profilu" -#: ../../mod/manage.php:106 +#: mod/manage.php:106 msgid "Manage Identities and/or Pages" msgstr "Zarządzaj Tożsamościami i/lub Stronami." -#: ../../mod/manage.php:107 +#: 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/manage.php:108 +#: mod/manage.php:108 msgid "Select an identity to manage: " msgstr "Wybierz tożsamość do zarządzania:" -#: ../../mod/oexchange.php:25 +#: mod/oexchange.php:25 msgid "Post successful." msgstr "Post dodany pomyślnie" -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 +#: mod/profperm.php:19 mod/group.php:72 index.php:381 msgid "Permission denied" msgstr "Odmowa dostępu" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +#: mod/profperm.php:25 mod/profperm.php:56 msgid "Invalid profile identifier." msgstr "Nieprawidłowa nazwa użytkownika." -#: ../../mod/profperm.php:101 +#: mod/profperm.php:102 msgid "Profile Visibility Editor" msgstr "Ustawienia widoczności profilu" -#: ../../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 +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 +#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "Profil" -#: ../../mod/profperm.php:105 ../../mod/group.php:224 +#: mod/profperm.php:106 mod/group.php:222 msgid "Click on a contact to add or remove." msgstr "Kliknij na kontakt w celu dodania lub usunięcia." -#: ../../mod/profperm.php:114 +#: mod/profperm.php:115 msgid "Visible To" msgstr "Widoczne dla" -#: ../../mod/profperm.php:130 +#: mod/profperm.php:131 msgid "All Contacts (with secure profile access)" msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" -#: ../../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 +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 +#: mod/notice.php:15 include/items.php:4814 msgid "Item not found." msgstr "Element nie znaleziony." -#: ../../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 +#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/directory.php:35 mod/photos.php:942 msgid "Public access denied." msgstr "Publiczny dostęp zabroniony" -#: ../../mod/display.php:332 ../../mod/profile.php:155 +#: mod/display.php:343 mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "Ograniczony dostęp do tego konta" -#: ../../mod/display.php:496 +#: mod/display.php:505 msgid "Item has been removed." msgstr "Przedmiot został usunięty" -#: ../../mod/newmember.php:6 +#: mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "Witamy na Friendica" -#: ../../mod/newmember.php:8 +#: mod/newmember.php:8 msgid "New Member Checklist" msgstr "Lista nowych członków" -#: ../../mod/newmember.php:12 +#: 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 " @@ -583,40 +568,39 @@ msgid "" "registration and then will quietly disappear." msgstr "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." -#: ../../mod/newmember.php:14 +#: mod/newmember.php:14 msgid "Getting Started" msgstr "Pierwsze kroki" -#: ../../mod/newmember.php:18 +#: mod/newmember.php:18 msgid "Friendica Walk-Through" msgstr "" -#: ../../mod/newmember.php:18 +#: mod/newmember.php:18 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: ../../mod/newmember.php: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 +#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 +#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 msgid "Settings" msgstr "Ustawienia" -#: ../../mod/newmember.php:26 +#: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Idź do swoich ustawień" -#: ../../mod/newmember.php:26 +#: mod/newmember.php:26 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "" -#: ../../mod/newmember.php:28 +#: 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 " @@ -624,99 +608,97 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -#: ../../mod/profiles.php:699 +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 msgid "Upload Profile Photo" msgstr "Wyślij zdjęcie profilowe" -#: ../../mod/newmember.php:36 +#: 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 "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." -#: ../../mod/newmember.php:38 +#: mod/newmember.php:38 msgid "Edit Your Profile" msgstr "Edytuj własny profil" -#: ../../mod/newmember.php:38 +#: 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/newmember.php:40 +#: mod/newmember.php:40 msgid "Profile Keywords" msgstr "Słowa kluczowe profilu" -#: ../../mod/newmember.php:40 +#: 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/newmember.php:44 +#: mod/newmember.php:44 msgid "Connecting" msgstr "Łączę się..." -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 msgid "Facebook" msgstr "Facebook" -#: ../../mod/newmember.php:49 +#: 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/newmember.php:51 +#: mod/newmember.php:51 msgid "" "If this is your own personal server, installing the Facebook addon " "may ease your transition to the free social web." msgstr "" -#: ../../mod/newmember.php:56 +#: mod/newmember.php:56 msgid "Importing Emails" msgstr "Importuję emaile..." -#: ../../mod/newmember.php:56 +#: mod/newmember.php:56 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: ../../mod/newmember.php:58 +#: mod/newmember.php:58 msgid "Go to Your Contacts Page" msgstr "Idź do strony z Twoimi kontaktami" -#: ../../mod/newmember.php:58 +#: mod/newmember.php:58 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "" -#: ../../mod/newmember.php:60 +#: mod/newmember.php:60 msgid "Go to Your Site's Directory" msgstr "Idż do twojej strony" -#: ../../mod/newmember.php:60 +#: 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/newmember.php:62 +#: mod/newmember.php:62 msgid "Finding New People" msgstr "Poszukiwanie Nowych Ludzi" -#: ../../mod/newmember.php:62 +#: 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 " @@ -725,456 +707,493 @@ msgid "" "hours." msgstr "" -#: ../../mod/newmember.php:66 ../../include/group.php:270 +#: mod/newmember.php:66 include/group.php:270 msgid "Groups" msgstr "Grupy" -#: ../../mod/newmember.php:70 +#: mod/newmember.php:70 msgid "Group Your Contacts" msgstr "Grupuj Swoje kontakty" -#: ../../mod/newmember.php:70 +#: 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/newmember.php:73 +#: mod/newmember.php:73 msgid "Why Aren't My Posts Public?" msgstr "Dlaczego moje posty nie są publiczne?" -#: ../../mod/newmember.php:73 +#: mod/newmember.php:73 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: ../../mod/newmember.php:78 +#: mod/newmember.php:78 msgid "Getting Help" msgstr "Otrzymywanie pomocy" -#: ../../mod/newmember.php:82 +#: mod/newmember.php:82 msgid "Go to the Help Section" msgstr "Idź do części o pomocy" -#: ../../mod/newmember.php:82 +#: mod/newmember.php:82 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "" -#: ../../mod/openid.php:24 +#: mod/openid.php:24 msgid "OpenID protocol error. No ID returned." msgstr "błąd OpenID . Brak zwróconego ID. " -#: ../../mod/openid.php:53 +#: mod/openid.php:53 msgid "" "Account not found and OpenID registration is not permitted on this site." msgstr "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie." -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 msgid "Login failed." msgstr "Niepowodzenie logowania" -#: ../../mod/profile_photo.php:44 +#: mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Obrazek załadowany, ale oprawanie powiodła się." -#: ../../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 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 +#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 +#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Zdjęcia profilowe" -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#: 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 "Redukcja rozmiaru obrazka [%s] nie powiodła się." -#: ../../mod/profile_photo.php:118 +#: mod/profile_photo.php:118 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: ../../mod/profile_photo.php:128 +#: mod/profile_photo.php:128 msgid "Unable to process image" msgstr "Nie udało się przetworzyć obrazu." -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Rozmiar obrazka przekracza limit %d" +msgid "Image exceeds size limit of %s" +msgstr "" -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 -#: ../../mod/photos.php:807 +#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 msgid "Unable to process image." msgstr "Przetwarzanie obrazu nie powiodło się." -#: ../../mod/profile_photo.php:242 +#: mod/profile_photo.php:242 msgid "Upload File:" msgstr "Wyślij plik:" -#: ../../mod/profile_photo.php:243 +#: mod/profile_photo.php:243 msgid "Select a profile:" msgstr "Wybierz profil:" -#: ../../mod/profile_photo.php:245 +#: mod/profile_photo.php:245 msgid "Upload" msgstr "Załaduj" -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 +#: mod/profile_photo.php:248 msgid "or" msgstr "lub" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 msgid "skip this step" msgstr "Pomiń ten krok" -#: ../../mod/profile_photo.php:248 +#: mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "wybierz zdjęcie z twojego albumu" -#: ../../mod/profile_photo.php:262 +#: mod/profile_photo.php:262 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: ../../mod/profile_photo.php:263 +#: mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania." -#: ../../mod/profile_photo.php:265 +#: mod/profile_photo.php:265 msgid "Done Editing" msgstr "Zakończ Edycję " -#: ../../mod/profile_photo.php:299 +#: mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Zdjęcie wczytano pomyślnie " -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 -#: ../../mod/photos.php:834 +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 msgid "Image upload failed." msgstr "Przesyłanie obrazu nie powiodło się" -#: ../../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 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2034 include/diaspora.php:2127 +#: view/theme/diabook/theme.php:471 msgid "photo" msgstr "zdjęcie" -#: ../../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 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 msgid "status" msgstr "status" -#: ../../mod/subthread.php:103 +#: mod/subthread.php:103 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/tagrm.php:41 +#: mod/tagrm.php:41 msgid "Tag removed" msgstr "Tag usunięty" -#: ../../mod/tagrm.php:79 +#: mod/tagrm.php:79 msgid "Remove Item Tag" msgstr "Usuń pozycję Tag" -#: ../../mod/tagrm.php:81 +#: mod/tagrm.php:81 msgid "Select a tag to remove: " msgstr "Wybierz tag do usunięcia" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +#: mod/tagrm.php:93 mod/delegate.php:139 msgid "Remove" msgstr "Usuń" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 msgid "Save to Folder:" msgstr "Zapisz w folderze:" -#: ../../mod/filer.php:30 +#: mod/filer.php:30 msgid "- select -" msgstr "- wybierz -" -#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 -#: ../../include/text.php:956 +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 msgid "Save" msgstr "Zapisz" -#: ../../mod/follow.php:27 +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:58 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "Proszę odpowiedzieć na poniższe:" + +#: mod/follow.php:59 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "Czy %s Cię zna?" + +#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 +#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 +#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 +#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "Nie" + +#: mod/follow.php:60 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: mod/follow.php:66 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "Twój zidentyfikowany adres:" + +#: mod/follow.php:69 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" + +#: mod/follow.php:108 msgid "Contact added" msgstr "Kontakt dodany" -#: ../../mod/item.php:113 +#: mod/item.php:115 msgid "Unable to locate original post." msgstr "Nie można zlokalizować oryginalnej wiadomości." -#: ../../mod/item.php:345 +#: mod/item.php:347 msgid "Empty post discarded." msgstr "Pusty wpis wyrzucony." -#: ../../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 +#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 +#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 msgid "Wall Photos" msgstr "Tablica zdjęć" -#: ../../mod/item.php:938 +#: mod/item.php:860 msgid "System error. Post not saved." msgstr "Błąd. Post niezapisany." -#: ../../mod/item.php:964 +#: mod/item.php:989 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica" -#: ../../mod/item.php:966 +#: mod/item.php:991 #, php-format msgid "You may visit them online at %s" msgstr "Możesz ich odwiedzić online u %s" -#: ../../mod/item.php:967 +#: mod/item.php:992 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." -#: ../../mod/item.php:971 +#: mod/item.php:996 #, php-format msgid "%s posted an update." msgstr "%s zaktualizował wpis." -#: ../../mod/group.php:29 +#: mod/group.php:29 msgid "Group created." msgstr "Grupa utworzona." -#: ../../mod/group.php:35 +#: mod/group.php:35 msgid "Could not create group." msgstr "Nie mogę stworzyć grupy" -#: ../../mod/group.php:47 ../../mod/group.php:140 +#: mod/group.php:47 mod/group.php:140 msgid "Group not found." msgstr "Nie znaleziono grupy" -#: ../../mod/group.php:60 +#: mod/group.php:60 msgid "Group name changed." msgstr "Nazwa grupy zmieniona" -#: ../../mod/group.php:87 +#: mod/group.php:87 msgid "Save Group" msgstr "" -#: ../../mod/group.php:93 +#: mod/group.php:93 msgid "Create a group of contacts/friends." msgstr "Stwórz grupę znajomych." -#: ../../mod/group.php:94 ../../mod/group.php:180 +#: mod/group.php:94 mod/group.php:178 include/group.php:273 msgid "Group Name: " msgstr "Nazwa grupy: " -#: ../../mod/group.php:113 +#: mod/group.php:113 msgid "Group removed." msgstr "Grupa usunięta." -#: ../../mod/group.php:115 +#: mod/group.php:115 msgid "Unable to remove group." msgstr "Nie można usunąć grupy." -#: ../../mod/group.php:179 +#: mod/group.php:177 msgid "Group Editor" msgstr "Edytor grupy" -#: ../../mod/group.php:192 +#: mod/group.php:190 msgid "Members" msgstr "Członkowie" -#: ../../mod/apps.php:7 ../../index.php:212 +#: mod/apps.php:7 index.php:225 msgid "You must be logged in to use addons. " msgstr "Musisz się zalogować, aby móc używać dodatkowych wtyczek." -#: ../../mod/apps.php:11 +#: mod/apps.php:11 msgid "Applications" msgstr "Aplikacje" -#: ../../mod/apps.php:14 +#: mod/apps.php:14 msgid "No installed applications." msgstr "Brak zainstalowanych aplikacji." -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:630 +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 msgid "Profile not found." msgstr "Nie znaleziono profilu." -#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 msgid "Contact not found." msgstr "Kontakt nie znaleziony" -#: ../../mod/dfrn_confirm.php:121 +#: 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/dfrn_confirm.php:240 +#: mod/dfrn_confirm.php:240 msgid "Response from remote site was not understood." msgstr "Odpowiedź do zdalnej strony nie została zrozumiana" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 msgid "Unexpected response from remote site: " msgstr "Nieoczekiwana odpowiedź od strony zdalnej" -#: ../../mod/dfrn_confirm.php:263 +#: mod/dfrn_confirm.php:263 msgid "Confirmation completed successfully." msgstr "Potwierdzenie ukończone poprawnie" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 msgid "Remote site reported: " msgstr "Zdalna strona zgłoszona:" -#: ../../mod/dfrn_confirm.php:277 +#: mod/dfrn_confirm.php:277 msgid "Temporary failure. Please wait and try again." msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później." -#: ../../mod/dfrn_confirm.php:284 +#: mod/dfrn_confirm.php:284 msgid "Introduction failed or was revoked." msgstr "Nieudane lub unieważnione wprowadzenie." -#: ../../mod/dfrn_confirm.php:429 +#: mod/dfrn_confirm.php:430 msgid "Unable to set contact photo." msgstr "Nie można ustawić zdjęcia kontaktu." -#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:634 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s jest teraz znajomym z %2$s" -#: ../../mod/dfrn_confirm.php:571 +#: mod/dfrn_confirm.php:572 #, php-format msgid "No user record found for '%s' " msgstr "Nie znaleziono użytkownika dla '%s'" -#: ../../mod/dfrn_confirm.php:581 +#: mod/dfrn_confirm.php:582 msgid "Our site encryption key is apparently messed up." msgstr "Klucz kodujący jest najwyraźniej zepsuty" -#: ../../mod/dfrn_confirm.php:592 +#: mod/dfrn_confirm.php:593 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas." -#: ../../mod/dfrn_confirm.php:613 +#: mod/dfrn_confirm.php:614 msgid "Contact record was not found for you on our site." msgstr "Nie znaleziono kontaktu na naszej stronie" -#: ../../mod/dfrn_confirm.php:627 +#: mod/dfrn_confirm.php:628 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "" -#: ../../mod/dfrn_confirm.php:647 +#: mod/dfrn_confirm.php:648 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie." -#: ../../mod/dfrn_confirm.php:658 +#: mod/dfrn_confirm.php:659 msgid "Unable to set your contact credentials on our system." msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie" -#: ../../mod/dfrn_confirm.php:725 +#: mod/dfrn_confirm.php:726 msgid "Unable to update your contact profile details on our system" msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie" -#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 -#: ../../include/items.php:4008 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 msgid "[Name Withheld]" msgstr "[Nazwa wstrzymana]" -#: ../../mod/dfrn_confirm.php:797 +#: mod/dfrn_confirm.php:798 #, php-format msgid "%1$s has joined %2$s" msgstr "%1$s dołączył/a do %2$s" -#: ../../mod/profile.php:21 ../../boot.php:1458 +#: mod/profile.php:21 include/identity.php:77 msgid "Requested profile is not available." msgstr "Żądany profil jest niedostępny" -#: ../../mod/profile.php:180 +#: mod/profile.php:179 msgid "Tips for New Members" msgstr "Wskazówki dla nowych użytkowników" -#: ../../mod/videos.php:125 +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:197 msgid "No videos selected" msgstr "Nie zaznaczono filmów" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +#: mod/videos.php:298 mod/photos.php:1053 msgid "Access to this item is restricted." msgstr "Dostęp do tego obiektu jest ograniczony." -#: ../../mod/videos.php:301 ../../include/text.php:1405 +#: mod/videos.php:373 include/text.php:1460 msgid "View Video" msgstr "Zobacz film" -#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +#: mod/videos.php:380 mod/photos.php:1827 msgid "View Album" msgstr "Zobacz album" -#: ../../mod/videos.php:317 +#: mod/videos.php:389 msgid "Recent Videos" msgstr "Ostatnio dodane filmy" -#: ../../mod/videos.php:319 +#: mod/videos.php:391 msgid "Upload New Videos" msgstr "Wstaw nowe filmy" -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#: mod/tagger.php:95 include/conversation.php:265 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" -#: ../../mod/fsuggest.php:63 +#: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "Propozycja znajomych wysłana." -#: ../../mod/fsuggest.php:97 +#: mod/fsuggest.php:97 msgid "Suggest Friends" msgstr "Zaproponuj znajomych" -#: ../../mod/fsuggest.php:99 +#: mod/fsuggest.php:99 #, php-format msgid "Suggest a friend for %s" msgstr "Zaproponuj znajomych dla %s" -#: ../../mod/lostpass.php:19 +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "" + +#: mod/lostpass.php:19 msgid "No valid account found." msgstr "Nie znaleziono ważnego konta." -#: ../../mod/lostpass.php:35 +#: mod/lostpass.php:35 msgid "Password reset request issued. Check your email." msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email." -#: ../../mod/lostpass.php:42 +#: mod/lostpass.php:42 #, php-format msgid "" "\n" @@ -1190,7 +1209,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: ../../mod/lostpass.php:53 +#: mod/lostpass.php:53 #, php-format msgid "" "\n" @@ -1207,44 +1226,44 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: ../../mod/lostpass.php:72 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Prośba o reset hasła na %s" -#: ../../mod/lostpass.php:92 +#: mod/lostpass.php:92 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się." -#: ../../mod/lostpass.php:109 ../../boot.php:1280 +#: mod/lostpass.php:109 boot.php:1287 msgid "Password Reset" msgstr "Zresetuj hasło" -#: ../../mod/lostpass.php:110 +#: mod/lostpass.php:110 msgid "Your password has been reset as requested." msgstr "Twoje hasło zostało zresetowane na twoje życzenie." -#: ../../mod/lostpass.php:111 +#: mod/lostpass.php:111 msgid "Your new password is" msgstr "Twoje nowe hasło to" -#: ../../mod/lostpass.php:112 +#: mod/lostpass.php:112 msgid "Save or copy your new password - and then" msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy" -#: ../../mod/lostpass.php:113 +#: mod/lostpass.php:113 msgid "click here to login" msgstr "Kliknij tutaj aby zalogować" -#: ../../mod/lostpass.php:114 +#: mod/lostpass.php:114 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." -#: ../../mod/lostpass.php:125 +#: mod/lostpass.php:125 #, php-format msgid "" "\n" @@ -1255,7 +1274,7 @@ msgid "" "\t\t\t" msgstr "" -#: ../../mod/lostpass.php:131 +#: mod/lostpass.php:131 #, php-format msgid "" "\n" @@ -1269,432 +1288,422 @@ msgid "" "\t\t\t" msgstr "" -#: ../../mod/lostpass.php:147 +#: mod/lostpass.php:147 #, php-format msgid "Your password has been changed at %s" msgstr "Twoje hasło zostało zmienione na %s" -#: ../../mod/lostpass.php:159 +#: mod/lostpass.php:159 msgid "Forgot your Password?" msgstr "Zapomniałeś hasła?" -#: ../../mod/lostpass.php:160 +#: mod/lostpass.php:160 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." -#: ../../mod/lostpass.php:161 +#: mod/lostpass.php:161 msgid "Nickname or Email: " msgstr "Pseudonim lub Email:" -#: ../../mod/lostpass.php:162 +#: mod/lostpass.php:162 msgid "Reset" msgstr "Zresetuj" -#: ../../mod/like.php:166 ../../include/conversation.php:137 -#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s lubi %2$s's %3$s" -#: ../../mod/like.php:168 ../../include/conversation.php:140 +#: mod/like.php:168 include/conversation.php:140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s nie lubi %2$s's %3$s" -#: ../../mod/ping.php:240 +#: mod/ping.php:233 msgid "{0} wants to be your friend" msgstr "{0} chce być Twoim znajomym" -#: ../../mod/ping.php:245 +#: mod/ping.php:248 msgid "{0} sent you a message" msgstr "{0} wysyła Ci wiadomość" -#: ../../mod/ping.php:250 +#: mod/ping.php:263 msgid "{0} requested registration" msgstr "{0} żądana rejestracja" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} skomentował %s wpis" - -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} polubił wpis %s" - -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} przestał lubić post %s" - -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} jest teraz znajomym %s" - -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} utworzony" - -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} zaznaczony %s'go post z #%s" - -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} wspomniał Cię w swoim wpisie" - -#: ../../mod/viewcontacts.php:41 +#: mod/viewcontacts.php:41 msgid "No contacts." msgstr "brak kontaktów" -#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 +#: mod/viewcontacts.php:78 include/text.php:917 msgid "View Contacts" msgstr "widok kontaktów" -#: ../../mod/notifications.php:26 +#: mod/notifications.php:26 msgid "Invalid request identifier." msgstr "Niewłaściwy identyfikator wymagania." -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 msgid "Discard" msgstr "Odrzuć" -#: ../../mod/notifications.php:78 +#: mod/notifications.php:78 msgid "System" msgstr "System" -#: ../../mod/notifications.php:83 ../../include/nav.php:145 +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 msgid "Network" msgstr "Sieć" -#: ../../mod/notifications.php:88 ../../mod/network.php:371 +#: mod/notifications.php:90 mod/network.php:375 msgid "Personal" msgstr "Osobiste" -#: ../../mod/notifications.php:93 ../../include/nav.php:105 -#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 +#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: view/theme/diabook/theme.php:123 msgid "Home" msgstr "Dom" -#: ../../mod/notifications.php:98 ../../include/nav.php:154 +#: mod/notifications.php:102 include/nav.php:161 msgid "Introductions" msgstr "Wstępy" -#: ../../mod/notifications.php:122 +#: mod/notifications.php:127 msgid "Show Ignored Requests" msgstr "Pokaż ignorowane żądania" -#: ../../mod/notifications.php:122 +#: mod/notifications.php:127 msgid "Hide Ignored Requests" msgstr "Ukryj ignorowane żądania" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +#: mod/notifications.php:159 mod/notifications.php:209 msgid "Notification type: " msgstr "Typ zawiadomień:" -#: ../../mod/notifications.php:150 +#: mod/notifications.php:160 msgid "Friend Suggestion" msgstr "Propozycja znajomych" -#: ../../mod/notifications.php:152 +#: mod/notifications.php:162 #, php-format msgid "suggested by %s" msgstr "zaproponowane przez %s" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: mod/notifications.php:168 mod/notifications.php:228 msgid "Post a new friend activity" msgstr "Pisz o nowej działalności przyjaciela" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +#: mod/notifications.php:168 mod/notifications.php:228 msgid "if applicable" msgstr "jeśli odpowiednie" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:1005 +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 msgid "Approve" msgstr "Zatwierdź" -#: ../../mod/notifications.php:181 +#: mod/notifications.php:191 msgid "Claims to be known to you: " msgstr "Twierdzi, że go znasz:" -#: ../../mod/notifications.php:181 +#: mod/notifications.php:191 msgid "yes" msgstr "tak" -#: ../../mod/notifications.php:181 +#: mod/notifications.php:191 msgid "no" msgstr "nie" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Zatwierdź jako:" +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" -#: ../../mod/notifications.php:189 +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:203 msgid "Friend" msgstr "Znajomy" -#: ../../mod/notifications.php:190 +#: mod/notifications.php:204 msgid "Sharer" msgstr "Udostępniający/a" -#: ../../mod/notifications.php:190 +#: mod/notifications.php:204 msgid "Fan/Admirer" msgstr "Fan" -#: ../../mod/notifications.php:196 +#: mod/notifications.php:210 msgid "Friend/Connect Request" msgstr "Prośba o dodanie do przyjaciół/powiązanych" -#: ../../mod/notifications.php:196 +#: mod/notifications.php:210 msgid "New Follower" msgstr "Nowy obserwator" -#: ../../mod/notifications.php:217 +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "Lokalizacja" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:581 +msgid "About:" +msgstr "O:" + +#: mod/notifications.php:224 include/identity.php:575 +msgid "Tags:" +msgstr "Tagi:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:540 +msgid "Gender:" +msgstr "Płeć:" + +#: mod/notifications.php:240 msgid "No introductions." msgstr "Brak wstępu." -#: ../../mod/notifications.php:220 ../../include/nav.php:155 +#: mod/notifications.php:243 include/nav.php:164 msgid "Notifications" msgstr "Powiadomienia" -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 #, php-format msgid "%s liked %s's post" msgstr "%s polubił wpis %s" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 #, php-format msgid "%s disliked %s's post" msgstr "%s przestał lubić post %s" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 #, php-format msgid "%s is now friends with %s" msgstr "%s jest teraz znajomym %s" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: mod/notifications.php:313 mod/notifications.php:442 #, php-format msgid "%s created a new post" msgstr "%s dodał nowy wpis" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 #, php-format msgid "%s commented on %s's post" msgstr "%s skomentował wpis %s" -#: ../../mod/notifications.php:306 +#: mod/notifications.php:329 msgid "No more network notifications." msgstr "Nie ma więcej powiadomień sieciowych" -#: ../../mod/notifications.php:310 +#: mod/notifications.php:333 msgid "Network Notifications" msgstr "Powiadomienia z sieci" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +#: mod/notifications.php:359 mod/notify.php:72 msgid "No more system notifications." msgstr "Nie ma więcej powiadomień systemowych." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +#: mod/notifications.php:363 mod/notify.php:76 msgid "System Notifications" msgstr "Powiadomienia systemowe" -#: ../../mod/notifications.php:435 +#: mod/notifications.php:458 msgid "No more personal notifications." msgstr "Nie ma więcej powiadomień osobistych" -#: ../../mod/notifications.php:439 +#: mod/notifications.php:462 msgid "Personal Notifications" msgstr "Prywatne powiadomienia" -#: ../../mod/notifications.php:520 +#: mod/notifications.php:543 msgid "No more home notifications." msgstr "Nie ma więcej powiadomień domu" -#: ../../mod/notifications.php:524 +#: mod/notifications.php:547 msgid "Home Notifications" msgstr "Powiadomienia z instancji" -#: ../../mod/babel.php:17 +#: mod/babel.php:17 msgid "Source (bbcode) text:" msgstr "Źródło - tekst (BBcode) :" -#: ../../mod/babel.php:23 +#: mod/babel.php:23 msgid "Source (Diaspora) text to convert to BBcode:" msgstr "Źródło tekst (Diaspora) by przekonwerterować na BBcode :" -#: ../../mod/babel.php:31 +#: mod/babel.php:31 msgid "Source input: " msgstr "Źródło wejścia:" -#: ../../mod/babel.php:35 +#: mod/babel.php:35 msgid "bb2html (raw HTML): " msgstr "bb2html (raw HTML): " -#: ../../mod/babel.php:39 +#: mod/babel.php:39 msgid "bb2html: " msgstr "bb2html: " -#: ../../mod/babel.php:43 +#: mod/babel.php:43 msgid "bb2html2bb: " msgstr "bb2html2bb: " -#: ../../mod/babel.php:47 +#: mod/babel.php:47 msgid "bb2md: " msgstr "bb2md: " -#: ../../mod/babel.php:51 +#: mod/babel.php:51 msgid "bb2md2html: " msgstr "bb2md2html: " -#: ../../mod/babel.php:55 +#: mod/babel.php:55 msgid "bb2dia2bb: " msgstr "bb2dia2bb: " -#: ../../mod/babel.php:59 +#: mod/babel.php:59 msgid "bb2md2html2bb: " msgstr "bb2md2html2bb: " -#: ../../mod/babel.php:69 +#: mod/babel.php:69 msgid "Source input (Diaspora format): " msgstr "Źródło wejścia(format Diaspory):" -#: ../../mod/babel.php:74 +#: mod/babel.php:74 msgid "diaspora2bb: " msgstr "diaspora2bb: " -#: ../../mod/navigation.php:20 ../../include/nav.php:34 +#: mod/navigation.php:20 include/nav.php:34 msgid "Nothing new here" msgstr "Brak nowych zdarzeń" -#: ../../mod/navigation.php:24 ../../include/nav.php:38 +#: mod/navigation.php:24 include/nav.php:38 msgid "Clear notifications" msgstr "Wyczyść powiadomienia" -#: ../../mod/message.php:9 ../../include/nav.php:164 +#: mod/message.php:9 include/nav.php:173 msgid "New Message" msgstr "Nowa wiadomość" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +#: mod/message.php:64 mod/wallmessage.php:56 msgid "No recipient selected." msgstr "Nie wybrano odbiorcy." -#: ../../mod/message.php:67 +#: mod/message.php:68 msgid "Unable to locate contact information." msgstr "Niezdolny do uzyskania informacji kontaktowych." -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +#: mod/message.php:71 mod/wallmessage.php:62 msgid "Message could not be sent." msgstr "Wiadomość nie może zostać wysłana" -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +#: mod/message.php:74 mod/wallmessage.php:65 msgid "Message collection failure." msgstr "" -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +#: mod/message.php:77 mod/wallmessage.php:68 msgid "Message sent." msgstr "Wysłano." -#: ../../mod/message.php:182 ../../include/nav.php:161 +#: mod/message.php:183 include/nav.php:170 msgid "Messages" msgstr "Wiadomości" -#: ../../mod/message.php:207 +#: mod/message.php:208 msgid "Do you really want to delete this message?" msgstr "Czy na pewno chcesz usunąć tę wiadomość?" -#: ../../mod/message.php:227 +#: mod/message.php:228 msgid "Message deleted." msgstr "Wiadomość usunięta." -#: ../../mod/message.php:258 +#: mod/message.php:259 msgid "Conversation removed." msgstr "Rozmowa usunięta." -#: ../../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 +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 msgid "Please enter a link URL:" msgstr "Proszę wpisać adres URL:" -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +#: mod/message.php:320 mod/wallmessage.php:142 msgid "Send Private Message" msgstr "Wyślij prywatną wiadomość" -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 msgid "To:" msgstr "Do:" -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 msgid "Subject:" msgstr "Temat:" -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 msgid "Your message:" msgstr "Twoja wiadomość:" -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1091 +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1056 msgid "Upload photo" msgstr "Wyślij zdjęcie" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1095 +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1060 msgid "Insert web link" msgstr "Wstaw link" -#: ../../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 +#: mod/message.php:335 mod/message.php:566 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 +#: include/conversation.php:1074 msgid "Please wait" msgstr "Proszę czekać" -#: ../../mod/message.php:371 +#: mod/message.php:372 msgid "No messages." msgstr "Brak wiadomości." -#: ../../mod/message.php:378 +#: mod/message.php:379 #, php-format msgid "Unknown sender - %s" msgstr "Nieznany wysyłający - %s" -#: ../../mod/message.php:381 +#: mod/message.php:382 #, php-format msgid "You and %s" msgstr "Ty i %s" -#: ../../mod/message.php:384 +#: mod/message.php:385 #, php-format msgid "%s and You" msgstr "%s i ty" -#: ../../mod/message.php:405 ../../mod/message.php:546 +#: mod/message.php:406 mod/message.php:547 msgid "Delete conversation" msgstr "Usuń rozmowę" -#: ../../mod/message.php:408 +#: mod/message.php:409 msgid "D, d M Y - g:i A" msgstr "D, d M R - g:m AM/PM" -#: ../../mod/message.php:411 +#: mod/message.php:412 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -1702,622 +1711,702 @@ msgstr[0] " %d wiadomość" msgstr[1] " %d wiadomości" msgstr[2] " %d wiadomości" -#: ../../mod/message.php:450 +#: mod/message.php:451 msgid "Message not available." msgstr "Wiadomość nie jest dostępna." -#: ../../mod/message.php:520 +#: mod/message.php:521 msgid "Delete message" msgstr "Usuń wiadomość" -#: ../../mod/message.php:548 +#: mod/message.php:549 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: ../../mod/message.php:552 +#: mod/message.php:553 msgid "Send Reply" msgstr "Odpowiedz" -#: ../../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 +#: 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 "[Dodatkowa zawartość - odśwież stronę by zobaczyć]" -#: ../../mod/crepair.php:106 +#: mod/crepair.php:107 msgid "Contact settings applied." msgstr "Ustawienia kontaktu zaktualizowane." -#: ../../mod/crepair.php:108 +#: mod/crepair.php:109 msgid "Contact update failed." msgstr "Nie udało się zaktualizować kontaktu." -#: ../../mod/crepair.php:139 +#: mod/crepair.php:140 msgid "Repair Contact Settings" msgstr "Napraw ustawienia kontaktów" -#: ../../mod/crepair.php:141 +#: mod/crepair.php:142 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać." -#: ../../mod/crepair.php:142 +#: mod/crepair.php:143 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." -#: ../../mod/crepair.php:148 +#: mod/crepair.php:149 msgid "Return to contact editor" msgstr "Wróć do edytora kontaktów" -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +#: mod/crepair.php:160 mod/crepair.php:162 msgid "No mirroring" msgstr "" -#: ../../mod/crepair.php:159 +#: mod/crepair.php:160 msgid "Mirror as forwarded posting" msgstr "" -#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +#: mod/crepair.php:160 mod/crepair.php:162 msgid "Mirror as my own posting" msgstr "" -#: ../../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 +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 +#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 +#: mod/settings.php:660 msgid "Name" msgstr "Imię" -#: ../../mod/crepair.php:166 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Nazwa konta" -#: ../../mod/crepair.php:167 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: ../../mod/crepair.php:168 +#: mod/crepair.php:173 msgid "Account URL" msgstr "URL konta" -#: ../../mod/crepair.php:169 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "URL żądajacy znajomości" -#: ../../mod/crepair.php:170 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "URL potwierdzający znajomość" -#: ../../mod/crepair.php:171 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "Zgłoszenie Punktu Końcowego URL" -#: ../../mod/crepair.php:172 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Adres Ankiety / RSS" -#: ../../mod/crepair.php:173 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "Nowe zdjęcie z tej ścieżki" -#: ../../mod/crepair.php:174 +#: mod/crepair.php:179 msgid "Remote Self" msgstr "" -#: ../../mod/crepair.php:176 +#: mod/crepair.php:181 msgid "Mirror postings from this contact" msgstr "" -#: ../../mod/crepair.php:176 +#: mod/crepair.php:181 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 msgid "Login" msgstr "Login" -#: ../../mod/bookmarklet.php:41 +#: mod/bookmarklet.php:41 msgid "The post was created" msgstr "" -#: ../../mod/viewsrc.php:7 +#: mod/viewsrc.php:7 msgid "Access denied." msgstr "Brak dostępu" -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Szukaj osób" +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Połącz" + +#: mod/dirfind.php:139 mod/match.php:73 msgid "No matches" msgstr "brak dopasowań" -#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 +#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Zdjęcia" -#: ../../mod/fbrowser.php:113 +#: mod/fbrowser.php:122 msgid "Files" msgstr "Pliki" -#: ../../mod/nogroup.php:59 +#: mod/nogroup.php:59 msgid "Contacts who are not members of a group" msgstr "Kontakty spoza członków grupy" -#: ../../mod/admin.php:57 +#: mod/admin.php:57 msgid "Theme settings updated." msgstr "Ustawienia szablonu zmienione." -#: ../../mod/admin.php:104 ../../mod/admin.php:619 +#: mod/admin.php:104 mod/admin.php:682 msgid "Site" msgstr "Strona" -#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 msgid "Users" msgstr "Użytkownicy" -#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 -#: ../../mod/settings.php:57 +#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 msgid "Plugins" msgstr "Wtyczki" -#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 msgid "Themes" msgstr "Temat" -#: ../../mod/admin.php:108 +#: mod/admin.php:108 msgid "DB updates" msgstr "Aktualizacje DB" -#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 msgid "Logs" msgstr "Logi" -#: ../../mod/admin.php:124 +#: mod/admin.php:125 msgid "probe address" msgstr "" -#: ../../mod/admin.php:125 +#: mod/admin.php:126 msgid "check webfinger" msgstr "" -#: ../../mod/admin.php:130 ../../include/nav.php:184 +#: mod/admin.php:131 include/nav.php:193 msgid "Admin" msgstr "Administator" -#: ../../mod/admin.php:131 +#: mod/admin.php:132 msgid "Plugin Features" msgstr "Polecane wtyczki" -#: ../../mod/admin.php:133 +#: mod/admin.php:134 msgid "diagnostics" msgstr "" -#: ../../mod/admin.php:134 +#: mod/admin.php:135 msgid "User registrations waiting for confirmation" msgstr "Rejestracje użytkownika czekają na potwierdzenie." -#: ../../mod/admin.php:193 ../../mod/admin.php:952 -msgid "Normal Account" -msgstr "Konto normalne" - -#: ../../mod/admin.php:194 ../../mod/admin.php:953 -msgid "Soapbox Account" -msgstr "Konto Soapbox" - -#: ../../mod/admin.php:195 ../../mod/admin.php:954 -msgid "Community/Celebrity Account" -msgstr "Konto społeczności/gwiazdy" - -#: ../../mod/admin.php:196 ../../mod/admin.php:955 -msgid "Automatic Friend Account" -msgstr "Automatyczny przyjaciel konta" - -#: ../../mod/admin.php:197 -msgid "Blog Account" -msgstr "Konto Bloga" - -#: ../../mod/admin.php:198 -msgid "Private Forum" -msgstr "Forum Prywatne" - -#: ../../mod/admin.php:217 -msgid "Message queues" -msgstr "Wiadomości" - -#: ../../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 +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 +#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 +#: mod/admin.php:1524 msgid "Administration" msgstr "Administracja" -#: ../../mod/admin.php:223 +#: mod/admin.php:202 +msgid "ID" +msgstr "" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:206 +msgid "Created" +msgstr "" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:220 mod/admin.php:1025 +msgid "Normal Account" +msgstr "Konto normalne" + +#: mod/admin.php:221 mod/admin.php:1026 +msgid "Soapbox Account" +msgstr "Konto Soapbox" + +#: mod/admin.php:222 mod/admin.php:1027 +msgid "Community/Celebrity Account" +msgstr "Konto społeczności/gwiazdy" + +#: mod/admin.php:223 mod/admin.php:1028 +msgid "Automatic Friend Account" +msgstr "Automatyczny przyjaciel konta" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Konto Bloga" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Forum Prywatne" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Wiadomości" + +#: mod/admin.php:250 msgid "Summary" msgstr "Skrót" -#: ../../mod/admin.php:225 +#: mod/admin.php:252 msgid "Registered users" msgstr "Zarejestrowani użytkownicy" -#: ../../mod/admin.php:227 +#: mod/admin.php:254 msgid "Pending registrations" msgstr "Rejestracje w toku." -#: ../../mod/admin.php:228 +#: mod/admin.php:255 msgid "Version" msgstr "Wersja" -#: ../../mod/admin.php:232 +#: mod/admin.php:260 msgid "Active plugins" msgstr "Aktywne pluginy" -#: ../../mod/admin.php:255 +#: mod/admin.php:283 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: ../../mod/admin.php:516 +#: mod/admin.php:565 msgid "Site settings updated." msgstr "Ustawienia strony zaktualizowane" -#: ../../mod/admin.php:545 ../../mod/settings.php:828 +#: mod/admin.php:594 mod/settings.php:883 msgid "No special theme for mobile devices" msgstr "Brak specialnego motywu dla urządzeń mobilnych" -#: ../../mod/admin.php:562 +#: mod/admin.php:611 msgid "No community page" msgstr "" -#: ../../mod/admin.php:563 +#: mod/admin.php:612 msgid "Public postings from users of this site" msgstr "" -#: ../../mod/admin.php:564 +#: mod/admin.php:613 msgid "Global community page" msgstr "" -#: ../../mod/admin.php:570 +#: mod/admin.php:619 msgid "At post arrival" msgstr "" -#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 +#: mod/admin.php:620 include/contact_selectors.php:56 msgid "Frequently" msgstr "Jak najczęściej" -#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 +#: mod/admin.php:621 include/contact_selectors.php:57 msgid "Hourly" msgstr "Godzinowo" -#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 +#: mod/admin.php:622 include/contact_selectors.php:58 msgid "Twice daily" msgstr "Dwa razy dziennie" -#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 +#: mod/admin.php:623 include/contact_selectors.php:59 msgid "Daily" msgstr "Dziennie" -#: ../../mod/admin.php:579 +#: mod/admin.php:629 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:630 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:634 +msgid "One month" +msgstr "Miesiąc" + +#: mod/admin.php:635 +msgid "Three months" +msgstr "Trzy miesiące" + +#: mod/admin.php:636 +msgid "Half a year" +msgstr "Pół roku" + +#: mod/admin.php:637 +msgid "One year" +msgstr "Rok" + +#: mod/admin.php:642 msgid "Multi user instance" msgstr "Tryb MultiUsera" -#: ../../mod/admin.php:602 +#: mod/admin.php:665 msgid "Closed" msgstr "Zamknięty" -#: ../../mod/admin.php:603 +#: mod/admin.php:666 msgid "Requires approval" msgstr "Wymagane zatwierdzenie." -#: ../../mod/admin.php:604 +#: mod/admin.php:667 msgid "Open" msgstr "Otwórz" -#: ../../mod/admin.php:608 +#: mod/admin.php:671 msgid "No SSL policy, links will track page SSL state" msgstr "Brak SSL , linki będą śledzić stan SSL ." -#: ../../mod/admin.php:609 +#: mod/admin.php:672 msgid "Force all links to use SSL" msgstr "Wymuś by linki używały SSL." -#: ../../mod/admin.php:610 +#: mod/admin.php:673 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . " -#: ../../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 +#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 +#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 msgid "Save Settings" -msgstr "" +msgstr "Zapisz ustawienia" -#: ../../mod/admin.php:621 ../../mod/register.php:255 +#: mod/admin.php:684 mod/register.php:260 msgid "Registration" msgstr "Rejestracja" -#: ../../mod/admin.php:622 +#: mod/admin.php:685 msgid "File upload" msgstr "Plik załadowano" -#: ../../mod/admin.php:623 +#: mod/admin.php:686 msgid "Policies" msgstr "zasady" -#: ../../mod/admin.php:624 +#: mod/admin.php:687 msgid "Advanced" msgstr "Zaawansowany" -#: ../../mod/admin.php:625 +#: mod/admin.php:688 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:689 msgid "Performance" msgstr "Ustawienia" -#: ../../mod/admin.php:626 +#: mod/admin.php:690 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/admin.php:629 +#: mod/admin.php:693 msgid "Site name" msgstr "Nazwa strony" -#: ../../mod/admin.php:630 +#: mod/admin.php:694 msgid "Host name" msgstr "" -#: ../../mod/admin.php:631 +#: mod/admin.php:695 msgid "Sender Email" msgstr "" -#: ../../mod/admin.php:632 +#: mod/admin.php:695 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:696 msgid "Banner/Logo" msgstr "Logo" -#: ../../mod/admin.php:633 +#: mod/admin.php:697 msgid "Shortcut icon" msgstr "" -#: ../../mod/admin.php:634 +#: mod/admin.php:697 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:698 msgid "Touch icon" msgstr "" -#: ../../mod/admin.php:635 +#: mod/admin.php:698 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:699 msgid "Additional Info" msgstr "Dodatkowe informacje" -#: ../../mod/admin.php:635 +#: mod/admin.php:699 +#, php-format msgid "" "For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." +"listed at %s/siteinfo." msgstr "" -#: ../../mod/admin.php:636 +#: mod/admin.php:700 msgid "System language" msgstr "Język systemu" -#: ../../mod/admin.php:637 +#: mod/admin.php:701 msgid "System theme" msgstr "Motyw systemowy" -#: ../../mod/admin.php:637 +#: mod/admin.php:701 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów" -#: ../../mod/admin.php:638 +#: mod/admin.php:702 msgid "Mobile system theme" msgstr "Mobilny motyw systemowy" -#: ../../mod/admin.php:638 +#: mod/admin.php:702 msgid "Theme for mobile devices" msgstr "Szablon dla mobilnych urządzeń" -#: ../../mod/admin.php:639 +#: mod/admin.php:703 msgid "SSL link policy" msgstr "polityka SSL" -#: ../../mod/admin.php:639 +#: mod/admin.php:703 msgid "Determines whether generated links should be forced to use SSL" msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl." -#: ../../mod/admin.php:640 +#: mod/admin.php:704 msgid "Force SSL" msgstr "" -#: ../../mod/admin.php:640 +#: mod/admin.php:704 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: ../../mod/admin.php:641 +#: mod/admin.php:705 msgid "Old style 'Share'" msgstr "" -#: ../../mod/admin.php:641 +#: mod/admin.php:705 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/admin.php:642 +#: mod/admin.php:706 msgid "Hide help entry from navigation menu" msgstr "Wyłącz pomoc w menu nawigacyjnym " -#: ../../mod/admin.php:642 +#: mod/admin.php:706 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help." -#: ../../mod/admin.php:643 +#: mod/admin.php:707 msgid "Single user instance" msgstr "Tryb SingleUsera" -#: ../../mod/admin.php:643 +#: mod/admin.php:707 msgid "Make this instance multi-user or single-user for the named user" msgstr "Ustawia tryb multi lub single dla wybranych użytkowników." -#: ../../mod/admin.php:644 +#: mod/admin.php:708 msgid "Maximum image size" msgstr "Maksymalny rozmiar zdjęcia" -#: ../../mod/admin.php:644 +#: mod/admin.php:708 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." -#: ../../mod/admin.php:645 +#: mod/admin.php:709 msgid "Maximum image length" msgstr "Maksymalna długość obrazu" -#: ../../mod/admin.php:645 +#: mod/admin.php:709 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu." -#: ../../mod/admin.php:646 +#: mod/admin.php:710 msgid "JPEG image quality" msgstr "jakość obrazu JPEG" -#: ../../mod/admin.php:646 +#: mod/admin.php:710 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . " -#: ../../mod/admin.php:648 +#: mod/admin.php:712 msgid "Register policy" msgstr "Zarejestruj polisę" -#: ../../mod/admin.php:649 +#: mod/admin.php:713 msgid "Maximum Daily Registrations" msgstr "Maksymalnie dziennych rejestracji" -#: ../../mod/admin.php:649 +#: mod/admin.php:713 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "" -#: ../../mod/admin.php:650 +#: mod/admin.php:714 msgid "Register text" msgstr "Zarejestruj tekst" -#: ../../mod/admin.php:650 +#: mod/admin.php:714 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:651 +#: mod/admin.php:715 msgid "Accounts abandoned after x days" msgstr "Konto porzucone od x dni." -#: ../../mod/admin.php:651 +#: mod/admin.php:715 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." -#: ../../mod/admin.php:652 +#: mod/admin.php:716 msgid "Allowed friend domains" msgstr "Dozwolone domeny przyjaciół" -#: ../../mod/admin.php:652 +#: mod/admin.php:716 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 domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. " -#: ../../mod/admin.php:653 +#: mod/admin.php:717 msgid "Allowed email domains" msgstr "Dozwolone domeny e-mailowe" -#: ../../mod/admin.php:653 +#: mod/admin.php:717 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: ../../mod/admin.php:654 +#: mod/admin.php:718 msgid "Block public" msgstr "Blokuj publicznie" -#: ../../mod/admin.php:654 +#: mod/admin.php:718 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: ../../mod/admin.php:655 +#: mod/admin.php:719 msgid "Force publish" msgstr "Wymuś publikację" -#: ../../mod/admin.php:655 +#: mod/admin.php:719 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:656 +#: mod/admin.php:720 msgid "Global directory update URL" msgstr "" -#: ../../mod/admin.php:656 +#: mod/admin.php:720 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "" -#: ../../mod/admin.php:657 +#: mod/admin.php:721 msgid "Allow threaded items" msgstr "Zezwalaj na wątkowanie tematów" -#: ../../mod/admin.php:657 +#: mod/admin.php:721 msgid "Allow infinite level threading for items on this site." msgstr "Zezwalaj na nieograniczoną liczbę wątków tematycznych na tej stronie." -#: ../../mod/admin.php:658 +#: mod/admin.php:722 msgid "Private posts by default for new users" msgstr "Prywatne posty domyślnie dla nowych użytkowników" -#: ../../mod/admin.php:658 +#: mod/admin.php:722 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: ../../mod/admin.php:659 +#: mod/admin.php:723 msgid "Don't include post content in email notifications" msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" -#: ../../mod/admin.php:659 +#: mod/admin.php:723 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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." -#: ../../mod/admin.php:660 +#: mod/admin.php:724 msgid "Disallow public access to addons listed in the apps menu." msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." -#: ../../mod/admin.php:660 +#: mod/admin.php:724 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: ../../mod/admin.php:661 +#: mod/admin.php:725 msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/admin.php:661 +#: mod/admin.php:725 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 " @@ -2325,319 +2414,431 @@ msgid "" "while." msgstr "" -#: ../../mod/admin.php:662 +#: mod/admin.php:726 msgid "Allow Users to set remote_self" msgstr "" -#: ../../mod/admin.php:662 +#: mod/admin.php:726 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: ../../mod/admin.php:663 +#: mod/admin.php:727 msgid "Block multiple registrations" msgstr "Zablokuj wielokrotną rejestrację" -#: ../../mod/admin.php:663 +#: mod/admin.php:727 msgid "Disallow users to register additional accounts for use as pages." msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. " -#: ../../mod/admin.php:664 +#: mod/admin.php:728 msgid "OpenID support" msgstr "Wsparcie OpenID" -#: ../../mod/admin.php:664 +#: mod/admin.php:728 msgid "OpenID support for registration and logins." msgstr "" -#: ../../mod/admin.php:665 +#: mod/admin.php:729 msgid "Fullname check" msgstr "Sprawdzanie pełnej nazwy" -#: ../../mod/admin.php:665 +#: mod/admin.php:729 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem." -#: ../../mod/admin.php:666 +#: mod/admin.php:730 msgid "UTF-8 Regular expressions" msgstr "Wyrażenia regularne UTF-8" -#: ../../mod/admin.php:666 +#: mod/admin.php:730 msgid "Use PHP UTF8 regular expressions" msgstr "Użyj regularnych wyrażeń PHP UTF8" -#: ../../mod/admin.php:667 +#: mod/admin.php:731 msgid "Community Page Style" msgstr "" -#: ../../mod/admin.php:667 +#: mod/admin.php:731 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:732 msgid "Posts per user on community page" msgstr "" -#: ../../mod/admin.php:668 +#: mod/admin.php:732 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: ../../mod/admin.php:669 +#: mod/admin.php:733 msgid "Enable OStatus support" msgstr "Włącz wsparcie OStatus" -#: ../../mod/admin.php:669 +#: mod/admin.php:733 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: ../../mod/admin.php:670 +#: mod/admin.php:734 msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/admin.php:670 +#: mod/admin.php:734 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: ../../mod/admin.php:671 +#: mod/admin.php:735 msgid "Enable Diaspora support" msgstr "Włączyć obsługę Diaspory" -#: ../../mod/admin.php:671 +#: mod/admin.php:735 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: ../../mod/admin.php:672 +#: mod/admin.php:736 msgid "Only allow Friendica contacts" msgstr "Dopuść tylko kontakty Friendrica" -#: ../../mod/admin.php:672 +#: mod/admin.php:736 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: ../../mod/admin.php:673 +#: mod/admin.php:737 msgid "Verify SSL" msgstr "Weryfikacja SSL" -#: ../../mod/admin.php:673 +#: mod/admin.php:737 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "" -#: ../../mod/admin.php:674 +#: mod/admin.php:738 msgid "Proxy user" msgstr "Użytkownik proxy" -#: ../../mod/admin.php:675 +#: mod/admin.php:739 msgid "Proxy URL" msgstr "URL Proxy" -#: ../../mod/admin.php:676 +#: mod/admin.php:740 msgid "Network timeout" msgstr "Network timeout" -#: ../../mod/admin.php:676 +#: mod/admin.php:740 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:677 +#: mod/admin.php:741 msgid "Delivery interval" msgstr "" -#: ../../mod/admin.php:677 +#: mod/admin.php:741 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "" -#: ../../mod/admin.php:678 +#: mod/admin.php:742 msgid "Poll interval" msgstr "" -#: ../../mod/admin.php:678 +#: mod/admin.php:742 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../mod/admin.php:679 +#: mod/admin.php:743 msgid "Maximum Load Average" msgstr "" -#: ../../mod/admin.php:679 +#: mod/admin.php:743 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../mod/admin.php:681 +#: mod/admin.php:744 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:744 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:746 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:746 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:747 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:747 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:748 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:748 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:749 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:749 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:751 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:751 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:753 msgid "Use MySQL full text engine" msgstr "" -#: ../../mod/admin.php:681 +#: mod/admin.php:753 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: ../../mod/admin.php:682 +#: mod/admin.php:754 msgid "Suppress Language" msgstr "" -#: ../../mod/admin.php:682 +#: mod/admin.php:754 msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/admin.php:683 +#: mod/admin.php:755 msgid "Suppress Tags" msgstr "" -#: ../../mod/admin.php:683 +#: mod/admin.php:755 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: ../../mod/admin.php:684 +#: mod/admin.php:756 msgid "Path to item cache" msgstr "" -#: ../../mod/admin.php:685 +#: mod/admin.php:756 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:757 msgid "Cache duration in seconds" msgstr "" -#: ../../mod/admin.php:685 +#: mod/admin.php:757 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "" -#: ../../mod/admin.php:686 +#: mod/admin.php:758 msgid "Maximum numbers of comments per post" msgstr "" -#: ../../mod/admin.php:686 +#: mod/admin.php:758 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: ../../mod/admin.php:687 +#: mod/admin.php:759 msgid "Path for lock file" msgstr "" -#: ../../mod/admin.php:688 +#: mod/admin.php:759 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:760 msgid "Temp path" msgstr "Ścieżka do Temp" -#: ../../mod/admin.php:689 +#: mod/admin.php:760 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:761 msgid "Base path to installation" msgstr "" -#: ../../mod/admin.php:690 +#: mod/admin.php:761 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:762 msgid "Disable picture proxy" msgstr "" -#: ../../mod/admin.php:690 +#: mod/admin.php:762 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "" -#: ../../mod/admin.php:691 +#: mod/admin.php:763 msgid "Enable old style pager" msgstr "" -#: ../../mod/admin.php:691 +#: mod/admin.php:763 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:764 msgid "Only search in tags" msgstr "" -#: ../../mod/admin.php:692 +#: mod/admin.php:764 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: ../../mod/admin.php:694 +#: mod/admin.php:766 msgid "New base url" msgstr "" -#: ../../mod/admin.php:711 +#: mod/admin.php:766 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:768 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:768 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:769 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:769 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:787 msgid "Update has been marked successful" msgstr "" -#: ../../mod/admin.php:719 +#: mod/admin.php:795 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:722 +#: mod/admin.php:798 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: ../../mod/admin.php:734 +#: mod/admin.php:810 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: ../../mod/admin.php:737 +#: mod/admin.php:813 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:741 +#: mod/admin.php:817 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/admin.php:743 +#: mod/admin.php:819 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: ../../mod/admin.php:762 +#: mod/admin.php:838 msgid "No failed updates." msgstr "Brak błędów aktualizacji." -#: ../../mod/admin.php:763 +#: mod/admin.php:839 msgid "Check database structure" msgstr "" -#: ../../mod/admin.php:768 +#: mod/admin.php:844 msgid "Failed Updates" msgstr "Błąd aktualizacji" -#: ../../mod/admin.php:769 +#: mod/admin.php:845 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: ../../mod/admin.php:770 +#: mod/admin.php:846 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/admin.php:771 +#: mod/admin.php:847 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:803 +#: mod/admin.php:879 #, php-format msgid "" "\n" @@ -2645,7 +2846,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: ../../mod/admin.php:806 +#: mod/admin.php:882 #, php-format msgid "" "\n" @@ -2675,12 +2876,12 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: ../../mod/admin.php:838 ../../include/user.php:413 +#: mod/admin.php:914 include/user.php:421 #, php-format msgid "Registration details for %s" msgstr "Szczegóły rejestracji dla %s" -#: ../../mod/admin.php:850 +#: mod/admin.php:926 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" @@ -2688,7 +2889,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../../mod/admin.php:857 +#: mod/admin.php:933 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -2696,269 +2897,268 @@ msgstr[0] " %s użytkownik usunięty" msgstr[1] " %s użytkownicy usunięci" msgstr[2] " %s usuniętych użytkowników " -#: ../../mod/admin.php:896 +#: mod/admin.php:972 #, php-format msgid "User '%s' deleted" msgstr "Użytkownik '%s' usunięty" -#: ../../mod/admin.php:904 +#: mod/admin.php:980 #, php-format msgid "User '%s' unblocked" msgstr "Użytkownik '%s' odblokowany" -#: ../../mod/admin.php:904 +#: mod/admin.php:980 #, php-format msgid "User '%s' blocked" msgstr "Użytkownik '%s' zablokowany" -#: ../../mod/admin.php:999 +#: mod/admin.php:1073 msgid "Add User" msgstr "" -#: ../../mod/admin.php:1000 +#: mod/admin.php:1074 msgid "select all" msgstr "Zaznacz wszystko" -#: ../../mod/admin.php:1001 +#: mod/admin.php:1075 msgid "User registrations waiting for confirm" msgstr "zarejestrowany użytkownik czeka na potwierdzenie" -#: ../../mod/admin.php:1002 +#: mod/admin.php:1076 msgid "User waiting for permanent deletion" msgstr "Użytkownik czekający na trwałe usunięcie" -#: ../../mod/admin.php:1003 +#: mod/admin.php:1077 msgid "Request date" msgstr "Data prośby" -#: ../../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 +#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "E-mail" -#: ../../mod/admin.php:1004 +#: mod/admin.php:1078 msgid "No registrations." msgstr "brak rejestracji" -#: ../../mod/admin.php:1006 +#: mod/admin.php:1080 msgid "Deny" msgstr "Odmów" -#: ../../mod/admin.php:1010 +#: mod/admin.php:1084 msgid "Site admin" msgstr "Administracja stroną" -#: ../../mod/admin.php:1011 +#: mod/admin.php:1085 msgid "Account expired" msgstr "Konto wygasło." -#: ../../mod/admin.php:1014 +#: mod/admin.php:1088 msgid "New User" msgstr "" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Register date" msgstr "Data rejestracji" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last login" msgstr "Ostatnie logowanie" -#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: mod/admin.php:1089 mod/admin.php:1090 msgid "Last item" msgstr "Ostatni element" -#: ../../mod/admin.php:1015 +#: mod/admin.php:1089 msgid "Deleted since" msgstr "Skasowany od" -#: ../../mod/admin.php:1016 ../../mod/settings.php:36 +#: mod/admin.php:1090 mod/settings.php:41 msgid "Account" msgstr "Konto" -#: ../../mod/admin.php:1018 +#: mod/admin.php:1092 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" -#: ../../mod/admin.php:1019 +#: mod/admin.php:1093 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żytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" -#: ../../mod/admin.php:1029 +#: mod/admin.php:1103 msgid "Name of the new user." msgstr "Nazwa nowego użytkownika." -#: ../../mod/admin.php:1030 +#: mod/admin.php:1104 msgid "Nickname" msgstr "" -#: ../../mod/admin.php:1030 +#: mod/admin.php:1104 msgid "Nickname of the new user." msgstr "" -#: ../../mod/admin.php:1031 +#: mod/admin.php:1105 msgid "Email address of the new user." msgstr "Adres email nowego użytkownika." -#: ../../mod/admin.php:1064 +#: mod/admin.php:1138 #, php-format msgid "Plugin %s disabled." msgstr "Wtyczka %s wyłączona." -#: ../../mod/admin.php:1068 +#: mod/admin.php:1142 #, php-format msgid "Plugin %s enabled." msgstr "Wtyczka %s właczona." -#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +#: mod/admin.php:1152 mod/admin.php:1375 msgid "Disable" msgstr "Wyłącz" -#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +#: mod/admin.php:1154 mod/admin.php:1377 msgid "Enable" msgstr "Zezwól" -#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +#: mod/admin.php:1177 mod/admin.php:1405 msgid "Toggle" msgstr "Włącz" -#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +#: mod/admin.php:1185 mod/admin.php:1415 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +#: mod/admin.php:1186 mod/admin.php:1416 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1254 +#: mod/admin.php:1335 msgid "No themes found." msgstr "Nie znaleziono tematu." -#: ../../mod/admin.php:1316 +#: mod/admin.php:1397 msgid "Screenshot" msgstr "Zrzut ekranu" -#: ../../mod/admin.php:1362 +#: mod/admin.php:1443 msgid "[Experimental]" msgstr "[Eksperymentalne]" -#: ../../mod/admin.php:1363 +#: mod/admin.php:1444 msgid "[Unsupported]" msgstr "[Niewspieralne]" -#: ../../mod/admin.php:1390 +#: mod/admin.php:1471 msgid "Log settings updated." msgstr "Zaktualizowano ustawienia logów." -#: ../../mod/admin.php:1446 +#: mod/admin.php:1527 msgid "Clear" msgstr "Wyczyść" -#: ../../mod/admin.php:1452 +#: mod/admin.php:1533 msgid "Enable Debugging" msgstr "" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1534 msgid "Log file" msgstr "Plik logów" -#: ../../mod/admin.php:1453 +#: mod/admin.php:1534 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: ../../mod/admin.php:1454 +#: mod/admin.php:1535 msgid "Log level" msgstr "Poziom logów" -#: ../../mod/admin.php:1504 +#: mod/admin.php:1585 include/acl_selectors.php:347 msgid "Close" msgstr "Zamknij" -#: ../../mod/admin.php:1510 +#: mod/admin.php:1591 msgid "FTP Host" msgstr "Założyciel FTP" -#: ../../mod/admin.php:1511 +#: mod/admin.php:1592 msgid "FTP Path" msgstr "Ścieżka FTP" -#: ../../mod/admin.php:1512 +#: mod/admin.php:1593 msgid "FTP User" msgstr "Użytkownik FTP" -#: ../../mod/admin.php:1513 +#: mod/admin.php:1594 msgid "FTP Password" msgstr "FTP Hasło" -#: ../../mod/network.php:142 -msgid "Search Results For:" -msgstr "Szukaj wyników dla:" +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "" -#: ../../mod/network.php:185 ../../mod/search.php:21 +#: mod/network.php:187 mod/search.php:25 msgid "Remove term" msgstr "Usuń wpis" -#: ../../mod/network.php:194 ../../mod/search.php:30 -#: ../../include/features.php:42 +#: mod/network.php:196 mod/search.php:34 include/features.php:42 msgid "Saved Searches" msgstr "Zapisane wyszukiwania" -#: ../../mod/network.php:195 ../../include/group.php:275 +#: mod/network.php:197 include/group.php:277 msgid "add" msgstr "dodaj" -#: ../../mod/network.php:356 +#: mod/network.php:358 msgid "Commented Order" msgstr "Porządek wg komentarzy" -#: ../../mod/network.php:359 +#: mod/network.php:361 msgid "Sort by Comment Date" msgstr "Sortuj po dacie komentarza" -#: ../../mod/network.php:362 +#: mod/network.php:365 msgid "Posted Order" msgstr "Porządek wg wpisów" -#: ../../mod/network.php:365 +#: mod/network.php:368 msgid "Sort by Post Date" msgstr "Sortuj po dacie posta" -#: ../../mod/network.php:374 +#: mod/network.php:378 msgid "Posts that mention or involve you" msgstr "" -#: ../../mod/network.php:380 +#: mod/network.php:385 msgid "New" msgstr "Nowy" -#: ../../mod/network.php:383 +#: mod/network.php:388 msgid "Activity Stream - by date" msgstr "" -#: ../../mod/network.php:389 +#: mod/network.php:395 msgid "Shared Links" msgstr "Współdzielone linki" -#: ../../mod/network.php:392 +#: mod/network.php:398 msgid "Interesting Links" msgstr "Interesujące linki" -#: ../../mod/network.php:398 +#: mod/network.php:405 msgid "Starred" -msgstr "" +msgstr "Ulubione" -#: ../../mod/network.php:401 +#: mod/network.php:408 msgid "Favourite Posts" msgstr "Ulubione posty" -#: ../../mod/network.php:463 +#: mod/network.php:466 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -2967,151 +3167,150 @@ msgstr[0] "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci." msgstr[1] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." msgstr[2] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." -#: ../../mod/network.php:466 +#: mod/network.php:469 msgid "Private messages to this group are at risk of public disclosure." msgstr "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia" -#: ../../mod/network.php:520 ../../mod/content.php:119 +#: mod/network.php:532 mod/content.php:119 msgid "No such group" msgstr "Nie ma takiej grupy" -#: ../../mod/network.php:537 ../../mod/content.php:130 +#: mod/network.php:549 mod/content.php:130 msgid "Group is empty" msgstr "Grupa jest pusta" -#: ../../mod/network.php:544 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grupa:" +#: mod/network.php:560 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "" -#: ../../mod/network.php:554 -msgid "Contact: " -msgstr "Kontakt: " +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "" -#: ../../mod/network.php:556 +#: mod/network.php:582 msgid "Private messages to this person are at risk of public disclosure." msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione " -#: ../../mod/network.php:561 +#: mod/network.php:587 msgid "Invalid contact." msgstr "Zły kontakt" -#: ../../mod/allfriends.php:34 +#: mod/allfriends.php:37 #, php-format msgid "Friends of %s" msgstr "Znajomy %s" -#: ../../mod/allfriends.php:40 +#: mod/allfriends.php:44 msgid "No friends to display." msgstr "Brak znajomych do wyświetlenia" -#: ../../mod/events.php:66 +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:80 mod/events.php:82 msgid "Event title and start time are required." msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." -#: ../../mod/events.php:291 +#: mod/events.php:317 msgid "l, F j" msgstr "d, M d " -#: ../../mod/events.php:313 +#: mod/events.php:339 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: ../../mod/events.php:335 ../../include/text.php:1647 -#: ../../include/text.php:1657 +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 msgid "link to source" msgstr "link do źródła" -#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 -#: ../../view/theme/diabook/theme.php:127 +#: mod/events.php:396 include/identity.php:667 include/nav.php:80 +#: view/theme/diabook/theme.php:127 msgid "Events" msgstr "Wydarzenia" -#: ../../mod/events.php:371 +#: mod/events.php:397 msgid "Create New Event" msgstr "Stwórz nowe wydarzenie" -#: ../../mod/events.php:372 +#: mod/events.php:398 msgid "Previous" msgstr "Poprzedni" -#: ../../mod/events.php:373 ../../mod/install.php:207 +#: mod/events.php:399 mod/install.php:209 msgid "Next" msgstr "Następny" -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "godzina:minuta" - -#: ../../mod/events.php:456 +#: mod/events.php:491 msgid "Event details" msgstr "Szczegóły wydarzenia" -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Wymagany format %s %s. Data rozpoczęcia i Tytuł są konieczne." +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "" -#: ../../mod/events.php:459 +#: mod/events.php:493 msgid "Event Starts:" msgstr "Rozpoczęcie wydarzenia:" -#: ../../mod/events.php:459 ../../mod/events.php:473 +#: mod/events.php:493 mod/events.php:505 msgid "Required" msgstr "Wymagany" -#: ../../mod/events.php:462 +#: mod/events.php:495 msgid "Finish date/time is not known or not relevant" msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" -#: ../../mod/events.php:464 +#: mod/events.php:497 msgid "Event Finishes:" msgstr "Zakończenie wydarzenia:" -#: ../../mod/events.php:467 +#: mod/events.php:499 msgid "Adjust for viewer timezone" msgstr "Dopasuj dla strefy czasowej widza" -#: ../../mod/events.php:469 +#: mod/events.php:501 msgid "Description:" msgstr "Opis:" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 -#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 -msgid "Location:" -msgstr "Lokalizacja" - -#: ../../mod/events.php:473 +#: mod/events.php:505 msgid "Title:" msgstr "Tytuł:" -#: ../../mod/events.php:475 +#: mod/events.php:507 msgid "Share this event" msgstr "Udostępnij te wydarzenie" -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../mod/photos.php:1653 ../../object/Item.php:129 -#: ../../include/conversation.php:613 +#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: object/Item.php:689 include/conversation.php:1089 +msgid "Preview" +msgstr "Podgląd" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 +#: object/Item.php:130 include/conversation.php:612 msgid "Select" msgstr "Wybierz" -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../include/conversation.php:654 +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 #, php-format msgid "View %s's profile @ %s" msgstr "Pokaż %s's profil @ %s" -#: ../../mod/content.php:481 ../../mod/content.php:864 -#: ../../object/Item.php:340 ../../include/conversation.php:674 +#: mod/content.php:483 mod/content.php:866 object/Item.php:342 +#: include/conversation.php:673 #, php-format msgid "%s from %s" msgstr "%s od %s" -#: ../../mod/content.php:497 ../../include/conversation.php:690 +#: mod/content.php:499 include/conversation.php:689 msgid "View in context" msgstr "Zobacz w kontekście" -#: ../../mod/content.php:603 ../../object/Item.php:387 +#: mod/content.php:605 object/Item.php:389 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -3119,1202 +3318,1213 @@ msgstr[0] " %d komentarz" msgstr[1] " %d komentarzy" msgstr[2] " %d komentarzy" -#: ../../mod/content.php:605 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../include/text.php:1972 +#: mod/content.php:607 object/Item.php:391 object/Item.php:404 +#: include/text.php:2038 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" msgstr[2] "komentarz" -#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 -#: ../../include/contact_widgets.php:205 +#: mod/content.php:608 boot.php:765 object/Item.php:392 +#: include/contact_widgets.php:205 include/items.php:5134 msgid "show more" msgstr "Pokaż więcej" -#: ../../mod/content.php:620 ../../mod/photos.php:1359 -#: ../../object/Item.php:116 +#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 msgid "Private Message" msgstr "Wiadomość prywatna" -#: ../../mod/content.php:684 ../../mod/photos.php:1542 -#: ../../object/Item.php:231 +#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 msgid "I like this (toggle)" msgstr "Lubię to (zmień)" -#: ../../mod/content.php:684 ../../object/Item.php:231 +#: mod/content.php:686 object/Item.php:232 msgid "like" msgstr "polub" -#: ../../mod/content.php:685 ../../mod/photos.php:1543 -#: ../../object/Item.php:232 +#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 msgid "I don't like this (toggle)" msgstr "Nie lubię (zmień)" -#: ../../mod/content.php:685 ../../object/Item.php:232 +#: mod/content.php:687 object/Item.php:233 msgid "dislike" msgstr "Nie lubię" -#: ../../mod/content.php:687 ../../object/Item.php:234 +#: mod/content.php:689 object/Item.php:235 msgid "Share this" msgstr "Udostępnij to" -#: ../../mod/content.php:687 ../../object/Item.php:234 +#: mod/content.php:689 object/Item.php:235 msgid "share" msgstr "udostępnij" -#: ../../mod/content.php:707 ../../mod/photos.php:1562 -#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 -#: ../../object/Item.php:675 +#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 object/Item.php:677 msgid "This is you" msgstr "To jesteś ty" -#: ../../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 +#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 +#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 msgid "Comment" msgstr "Komentarz" -#: ../../mod/content.php:711 ../../object/Item.php:679 +#: mod/content.php:713 object/Item.php:681 msgid "Bold" msgstr "Pogrubienie" -#: ../../mod/content.php:712 ../../object/Item.php:680 +#: mod/content.php:714 object/Item.php:682 msgid "Italic" msgstr "Kursywa" -#: ../../mod/content.php:713 ../../object/Item.php:681 +#: mod/content.php:715 object/Item.php:683 msgid "Underline" msgstr "Podkreślenie" -#: ../../mod/content.php:714 ../../object/Item.php:682 +#: mod/content.php:716 object/Item.php:684 msgid "Quote" msgstr "Cytat" -#: ../../mod/content.php:715 ../../object/Item.php:683 +#: mod/content.php:717 object/Item.php:685 msgid "Code" msgstr "Kod" -#: ../../mod/content.php:716 ../../object/Item.php:684 +#: mod/content.php:718 object/Item.php:686 msgid "Image" msgstr "Obraz" -#: ../../mod/content.php:717 ../../object/Item.php:685 +#: mod/content.php:719 object/Item.php:687 msgid "Link" msgstr "Link" -#: ../../mod/content.php:718 ../../object/Item.php:686 +#: mod/content.php:720 object/Item.php:688 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 "Podgląd" - -#: ../../mod/content.php:728 ../../mod/settings.php:676 -#: ../../object/Item.php:120 +#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 msgid "Edit" msgstr "Edytuj" -#: ../../mod/content.php:753 ../../object/Item.php:195 +#: mod/content.php:755 object/Item.php:196 msgid "add star" msgstr "dodaj gwiazdkę" -#: ../../mod/content.php:754 ../../object/Item.php:196 +#: mod/content.php:756 object/Item.php:197 msgid "remove star" msgstr "anuluj gwiazdkę" -#: ../../mod/content.php:755 ../../object/Item.php:197 +#: mod/content.php:757 object/Item.php:198 msgid "toggle star status" msgstr "włącz status gwiazdy" -#: ../../mod/content.php:758 ../../object/Item.php:200 +#: mod/content.php:760 object/Item.php:201 msgid "starred" msgstr "gwiazdką" -#: ../../mod/content.php:759 ../../object/Item.php:220 +#: mod/content.php:761 object/Item.php:221 msgid "add tag" msgstr "dodaj tag" -#: ../../mod/content.php:763 ../../object/Item.php:133 +#: mod/content.php:765 object/Item.php:134 msgid "save to folder" msgstr "zapisz w folderze" -#: ../../mod/content.php:854 ../../object/Item.php:328 +#: mod/content.php:856 object/Item.php:330 msgid "to" msgstr "do" -#: ../../mod/content.php:855 ../../object/Item.php:330 +#: mod/content.php:857 object/Item.php:332 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../mod/content.php:856 ../../object/Item.php:331 +#: mod/content.php:858 object/Item.php:333 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +#: mod/removeme.php:46 mod/removeme.php:49 msgid "Remove My Account" msgstr "Usuń konto" -#: ../../mod/removeme.php:47 +#: mod/removeme.php:47 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane." -#: ../../mod/removeme.php:48 +#: mod/removeme.php:48 msgid "Please enter your password for verification:" msgstr "Wprowadź hasło w celu weryfikacji." -#: ../../mod/install.php:117 +#: mod/install.php:119 msgid "Friendica Communications Server - Setup" msgstr "" -#: ../../mod/install.php:123 +#: mod/install.php:125 msgid "Could not connect to database." msgstr "Nie można nawiązać połączenia z bazą danych" -#: ../../mod/install.php:127 +#: mod/install.php:129 msgid "Could not create table." msgstr "Nie mogę stworzyć tabeli." -#: ../../mod/install.php:133 +#: mod/install.php:135 msgid "Your Friendica site database has been installed." msgstr "" -#: ../../mod/install.php:138 +#: mod/install.php:140 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 +#: mod/install.php:141 mod/install.php:208 mod/install.php:530 msgid "Please see the file \"INSTALL.txt\"." msgstr "Proszę przejrzeć plik \"INSTALL.txt\"." -#: ../../mod/install.php:203 +#: mod/install.php:153 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:205 msgid "System check" msgstr "Sprawdzanie systemu" -#: ../../mod/install.php:208 +#: mod/install.php:210 msgid "Check again" msgstr "Sprawdź ponownie" -#: ../../mod/install.php:227 +#: mod/install.php:229 msgid "Database connection" msgstr "Połączenie z bazą danych" -#: ../../mod/install.php:228 +#: mod/install.php:230 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych." -#: ../../mod/install.php:229 +#: mod/install.php:231 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ." -#: ../../mod/install.php:230 +#: mod/install.php:232 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją." -#: ../../mod/install.php:234 +#: mod/install.php:236 msgid "Database Server Name" msgstr "Baza danych - Nazwa serwera" -#: ../../mod/install.php:235 +#: mod/install.php:237 msgid "Database Login Name" msgstr "Baza danych - Nazwa loginu" -#: ../../mod/install.php:236 +#: mod/install.php:238 msgid "Database Login Password" msgstr "Baza danych - Hasło loginu" -#: ../../mod/install.php:237 +#: mod/install.php:239 msgid "Database Name" msgstr "Baza danych - Nazwa" -#: ../../mod/install.php:238 ../../mod/install.php:277 +#: mod/install.php:240 mod/install.php:279 msgid "Site administrator email address" msgstr "Adres e-mail administratora strony" -#: ../../mod/install.php:238 ../../mod/install.php:277 +#: mod/install.php:240 mod/install.php:279 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "" -#: ../../mod/install.php:242 ../../mod/install.php:280 +#: mod/install.php:244 mod/install.php:282 msgid "Please select a default timezone for your website" msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony" -#: ../../mod/install.php:267 +#: mod/install.php:269 msgid "Site settings" msgstr "Ustawienia strony" -#: ../../mod/install.php:321 +#: mod/install.php:323 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH" -#: ../../mod/install.php:322 +#: mod/install.php:324 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron. See 'Activating scheduled tasks'" msgstr "" -#: ../../mod/install.php:326 +#: mod/install.php:328 msgid "PHP executable path" msgstr "" -#: ../../mod/install.php:326 +#: mod/install.php:328 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: ../../mod/install.php:331 +#: mod/install.php:333 msgid "Command line PHP" msgstr "Linia komend PHP" -#: ../../mod/install.php:340 +#: mod/install.php:342 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: ../../mod/install.php:341 +#: mod/install.php:343 msgid "Found PHP version: " msgstr "Znaleziono wersje PHP:" -#: ../../mod/install.php:343 +#: mod/install.php:345 msgid "PHP cli binary" msgstr "" -#: ../../mod/install.php:354 +#: mod/install.php:356 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." -#: ../../mod/install.php:355 +#: mod/install.php:357 msgid "This is required for message delivery to work." msgstr "To jest wymagane do dostarczenia wiadomości do pracy." -#: ../../mod/install.php:357 +#: mod/install.php:359 msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/install.php:378 +#: mod/install.php:380 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego ." -#: ../../mod/install.php:379 +#: mod/install.php:381 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/install.php:381 +#: mod/install.php:383 msgid "Generate encryption keys" msgstr "Generuj klucz kodowania" -#: ../../mod/install.php:388 +#: mod/install.php:390 msgid "libCurl PHP module" msgstr "Moduł libCurl PHP" -#: ../../mod/install.php:389 +#: mod/install.php:391 msgid "GD graphics PHP module" msgstr "Moduł PHP-GD" -#: ../../mod/install.php:390 +#: mod/install.php:392 msgid "OpenSSL PHP module" msgstr "Moduł PHP OpenSSL" -#: ../../mod/install.php:391 +#: mod/install.php:393 msgid "mysqli PHP module" msgstr "Moduł mysql PHP" -#: ../../mod/install.php:392 +#: mod/install.php:394 msgid "mb_string PHP module" msgstr "Moduł mb_string PHP" -#: ../../mod/install.php:397 ../../mod/install.php:399 +#: mod/install.php:399 mod/install.php:401 msgid "Apache mod_rewrite module" msgstr "Moduł Apache mod_rewrite" -#: ../../mod/install.php:397 +#: mod/install.php:399 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." -#: ../../mod/install.php:405 +#: mod/install.php:407 msgid "Error: libCURL PHP module required but not installed." msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." -#: ../../mod/install.php:409 +#: mod/install.php:411 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." -#: ../../mod/install.php:413 +#: mod/install.php:415 msgid "Error: openssl PHP module required but not installed." msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." -#: ../../mod/install.php:417 +#: mod/install.php:419 msgid "Error: mysqli PHP module required but not installed." msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany." -#: ../../mod/install.php:421 +#: mod/install.php:423 msgid "Error: mb_string PHP module required but not installed." msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany" -#: ../../mod/install.php:438 +#: mod/install.php:440 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 "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić." -#: ../../mod/install.php:439 +#: mod/install.php:441 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "" -#: ../../mod/install.php:440 +#: mod/install.php:442 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." msgstr "" -#: ../../mod/install.php:441 +#: mod/install.php:443 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "" -#: ../../mod/install.php:444 +#: mod/install.php:446 msgid ".htconfig.php is writable" msgstr ".htconfig.php jest zapisywalny" -#: ../../mod/install.php:454 +#: mod/install.php:456 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/install.php:455 +#: mod/install.php:457 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: ../../mod/install.php:456 +#: mod/install.php:458 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: ../../mod/install.php:457 +#: mod/install.php:459 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/install.php:460 +#: mod/install.php:462 msgid "view/smarty3 is writable" msgstr "" -#: ../../mod/install.php:472 +#: mod/install.php:478 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "" -#: ../../mod/install.php:474 +#: mod/install.php:480 msgid "Url rewrite is working" msgstr "" -#: ../../mod/install.php:484 +#: mod/install.php:489 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 "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera." -#: ../../mod/install.php:523 +#: mod/install.php:528 msgid "

    What next

    " msgstr "

    Co dalej

    " -#: ../../mod/install.php:524 +#: mod/install.php:529 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller." -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "Dzienny limit wiadomości na murze dla %s został przekroczony. Wiadomość została odrzucona." -#: ../../mod/wallmessage.php:59 +#: mod/wallmessage.php:59 msgid "Unable to check your home location." msgstr "Nie można sprawdzić twojej lokalizacji." -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +#: mod/wallmessage.php:86 mod/wallmessage.php:95 msgid "No recipient." msgstr "Brak odbiorcy." -#: ../../mod/wallmessage.php:143 +#: 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/help.php:79 +#: mod/help.php:31 msgid "Help:" msgstr "Pomoc:" -#: ../../mod/help.php:84 ../../include/nav.php:114 +#: mod/help.php:36 include/nav.php:114 msgid "Help" msgstr "Pomoc" -#: ../../mod/help.php:90 ../../index.php:256 +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 msgid "Not Found" msgstr "Nie znaleziono" -#: ../../mod/help.php:93 ../../index.php:259 +#: mod/help.php:45 index.php:272 msgid "Page not found." msgstr "Strona nie znaleziona." -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s witamy %2$s" -#: ../../mod/home.php:35 +#: mod/home.php:35 #, php-format msgid "Welcome to %s" msgstr "Witamy w %s" -#: ../../mod/wall_attach.php:75 +#: mod/wall_attach.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: ../../mod/wall_attach.php:75 +#: mod/wall_attach.php:83 msgid "Or - did you try to upload an empty file?" msgstr "" -#: ../../mod/wall_attach.php:81 +#: mod/wall_attach.php:94 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Plik przekracza dozwolony rozmiar %d" +msgid "File exceeds size limit of %s" +msgstr "" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +#: mod/wall_attach.php:145 mod/wall_attach.php:161 msgid "File upload failed." msgstr "Przesyłanie pliku nie powiodło się." -#: ../../mod/match.php:12 +#: mod/match.php:13 msgid "Profile Match" msgstr "Profil zgodny " -#: ../../mod/match.php:20 +#: mod/match.php:22 msgid "No keywords to match. Please add keywords to your default profile." msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu." -#: ../../mod/match.php:57 +#: mod/match.php:64 msgid "is interested in:" msgstr "interesuje się:" -#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 -#: ../../include/contact_widgets.php:10 -msgid "Connect" -msgstr "Połącz" - -#: ../../mod/share.php:44 +#: mod/share.php:38 msgid "link" msgstr "Link" -#: ../../mod/community.php:23 +#: mod/community.php:23 msgid "Not available." msgstr "Niedostępne." -#: ../../mod/community.php:32 ../../include/nav.php:129 -#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 msgid "Community" msgstr "Społeczność" -#: ../../mod/community.php:62 ../../mod/community.php:71 -#: ../../mod/search.php:168 ../../mod/search.php:192 +#: mod/community.php:62 mod/community.php:71 mod/search.php:192 msgid "No results." msgstr "Brak wyników." -#: ../../mod/settings.php:29 ../../mod/photos.php:80 +#: mod/settings.php:34 mod/photos.php:102 msgid "everybody" msgstr "wszyscy" -#: ../../mod/settings.php:41 +#: mod/settings.php:47 msgid "Additional features" msgstr "" -#: ../../mod/settings.php:46 +#: mod/settings.php:53 msgid "Display" msgstr "" -#: ../../mod/settings.php:52 ../../mod/settings.php:780 +#: mod/settings.php:60 mod/settings.php:835 msgid "Social Networks" msgstr "" -#: ../../mod/settings.php:62 ../../include/nav.php:170 +#: mod/settings.php:72 include/nav.php:179 msgid "Delegations" msgstr "" -#: ../../mod/settings.php:67 +#: mod/settings.php:78 msgid "Connected apps" msgstr "Powiązane aplikacje" -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +#: mod/settings.php:84 mod/uexport.php:85 msgid "Export personal data" msgstr "Eksportuje dane personalne" -#: ../../mod/settings.php:77 +#: mod/settings.php:90 msgid "Remove account" msgstr "Usuń konto" -#: ../../mod/settings.php:129 +#: mod/settings.php:143 msgid "Missing some important data!" msgstr "Brakuje ważnych danych!" -#: ../../mod/settings.php:238 +#: mod/settings.php:256 msgid "Failed to connect with email account using the settings provided." msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." -#: ../../mod/settings.php:243 +#: mod/settings.php:261 msgid "Email settings updated." msgstr "Zaktualizowano ustawienia email." -#: ../../mod/settings.php:258 +#: mod/settings.php:276 msgid "Features updated" msgstr "" -#: ../../mod/settings.php:321 +#: mod/settings.php:339 msgid "Relocate message has been send to your contacts" msgstr "" -#: ../../mod/settings.php:335 +#: mod/settings.php:353 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Hasło nie pasuje. Hasło nie zmienione." -#: ../../mod/settings.php:340 +#: mod/settings.php:358 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Brak hasła niedozwolony. Hasło nie zmienione." -#: ../../mod/settings.php:348 +#: mod/settings.php:366 msgid "Wrong password." msgstr "Złe hasło." -#: ../../mod/settings.php:359 +#: mod/settings.php:377 msgid "Password changed." msgstr "Hasło zostało zmianione." -#: ../../mod/settings.php:361 +#: mod/settings.php:379 msgid "Password update failed. Please try again." msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." -#: ../../mod/settings.php:428 +#: mod/settings.php:446 msgid " Please use a shorter name." msgstr "Proszę użyć krótszej nazwy." -#: ../../mod/settings.php:430 +#: mod/settings.php:448 msgid " Name too short." msgstr "Za krótka nazwa." -#: ../../mod/settings.php:439 +#: mod/settings.php:457 msgid "Wrong Password" msgstr "Złe hasło" -#: ../../mod/settings.php:444 +#: mod/settings.php:462 msgid " Not valid email." msgstr "Zły email." -#: ../../mod/settings.php:450 +#: mod/settings.php:468 msgid " Cannot change to that email." msgstr "Nie mogę zmienić na ten email." -#: ../../mod/settings.php:506 +#: mod/settings.php:524 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: ../../mod/settings.php:510 +#: mod/settings.php:528 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: ../../mod/settings.php:540 +#: mod/settings.php:558 msgid "Settings updated." msgstr "Zaktualizowano ustawienia." -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/settings.php:675 +#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 msgid "Add application" msgstr "Dodaj aplikacje" -#: ../../mod/settings.php:617 ../../mod/settings.php:643 +#: mod/settings.php:635 mod/settings.php:661 msgid "Consumer Key" msgstr "Klucz konsumenta" -#: ../../mod/settings.php:618 ../../mod/settings.php:644 +#: mod/settings.php:636 mod/settings.php:662 msgid "Consumer Secret" msgstr "Sekret konsumenta" -#: ../../mod/settings.php:619 ../../mod/settings.php:645 +#: mod/settings.php:637 mod/settings.php:663 msgid "Redirect" msgstr "Przekierowanie" -#: ../../mod/settings.php:620 ../../mod/settings.php:646 +#: mod/settings.php:638 mod/settings.php:664 msgid "Icon url" msgstr "Adres ikony" -#: ../../mod/settings.php:631 +#: mod/settings.php:649 msgid "You can't edit this application." msgstr "Nie możesz edytować tej aplikacji." -#: ../../mod/settings.php:674 +#: mod/settings.php:692 msgid "Connected Apps" msgstr "Powiązane aplikacje" -#: ../../mod/settings.php:678 +#: mod/settings.php:696 msgid "Client key starts with" msgstr "Klucz klienta zaczyna się od" -#: ../../mod/settings.php:679 +#: mod/settings.php:697 msgid "No name" msgstr "Bez nazwy" -#: ../../mod/settings.php:680 +#: mod/settings.php:698 msgid "Remove authorization" msgstr "Odwołaj upoważnienie" -#: ../../mod/settings.php:692 +#: mod/settings.php:710 msgid "No Plugin settings configured" msgstr "Ustawienia wtyczki nieskonfigurowane" -#: ../../mod/settings.php:700 +#: mod/settings.php:718 msgid "Plugin Settings" msgstr "Ustawienia wtyczki" -#: ../../mod/settings.php:714 +#: mod/settings.php:732 msgid "Off" msgstr "Wyłącz" -#: ../../mod/settings.php:714 +#: mod/settings.php:732 msgid "On" msgstr "Włącz" -#: ../../mod/settings.php:722 +#: mod/settings.php:740 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:736 ../../mod/settings.php:737 +#: mod/settings.php:750 mod/settings.php:754 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:760 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:762 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:768 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:770 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:791 mod/settings.php:792 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 -#: ../../include/contact_selectors.php:80 +#: mod/settings.php:791 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: ../../mod/settings.php:736 ../../mod/settings.php:737 +#: mod/settings.php:791 mod/settings.php:792 msgid "enabled" msgstr "włączony" -#: ../../mod/settings.php:736 ../../mod/settings.php:737 +#: mod/settings.php:791 mod/settings.php:792 msgid "disabled" msgstr "wyłączony" -#: ../../mod/settings.php:737 -msgid "StatusNet" -msgstr "StatusNet" +#: mod/settings.php:792 +msgid "GNU Social (OStatus)" +msgstr "" -#: ../../mod/settings.php:773 +#: mod/settings.php:828 msgid "Email access is disabled on this site." msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie" -#: ../../mod/settings.php:785 +#: mod/settings.php:840 msgid "Email/Mailbox Setup" msgstr "Ustawienia emaila/skrzynki mailowej" -#: ../../mod/settings.php:786 +#: mod/settings.php:841 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email." -#: ../../mod/settings.php:787 +#: mod/settings.php:842 msgid "Last successful email check:" msgstr "Ostatni sprawdzony e-mail:" -#: ../../mod/settings.php:789 +#: mod/settings.php:844 msgid "IMAP server name:" msgstr "Nazwa serwera IMAP:" -#: ../../mod/settings.php:790 +#: mod/settings.php:845 msgid "IMAP port:" msgstr "Port IMAP:" -#: ../../mod/settings.php:791 +#: mod/settings.php:846 msgid "Security:" msgstr "Ochrona:" -#: ../../mod/settings.php:791 ../../mod/settings.php:796 +#: mod/settings.php:846 mod/settings.php:851 msgid "None" msgstr "Brak" -#: ../../mod/settings.php:792 +#: mod/settings.php:847 msgid "Email login name:" msgstr "Login emaila:" -#: ../../mod/settings.php:793 +#: mod/settings.php:848 msgid "Email password:" msgstr "Hasło emaila:" -#: ../../mod/settings.php:794 +#: mod/settings.php:849 msgid "Reply-to address:" msgstr "Odpowiedz na adres:" -#: ../../mod/settings.php:795 +#: mod/settings.php:850 msgid "Send public posts to all email contacts:" msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" -#: ../../mod/settings.php:796 +#: mod/settings.php:851 msgid "Action after import:" msgstr "Akcja po zaimportowaniu:" -#: ../../mod/settings.php:796 +#: mod/settings.php:851 msgid "Mark as seen" msgstr "Oznacz jako przeczytane" -#: ../../mod/settings.php:796 +#: mod/settings.php:851 msgid "Move to folder" msgstr "Przenieś do folderu" -#: ../../mod/settings.php:797 +#: mod/settings.php:852 msgid "Move to folder:" msgstr "Przenieś do folderu:" -#: ../../mod/settings.php:878 +#: mod/settings.php:933 msgid "Display Settings" msgstr "Wyświetl ustawienia" -#: ../../mod/settings.php:884 ../../mod/settings.php:899 +#: mod/settings.php:939 mod/settings.php:955 msgid "Display Theme:" msgstr "Wyświetl motyw:" -#: ../../mod/settings.php:885 +#: mod/settings.php:940 msgid "Mobile Theme:" msgstr "Mobilny motyw:" -#: ../../mod/settings.php:886 +#: mod/settings.php:941 msgid "Update browser every xx seconds" msgstr "Odświeżaj stronę co xx sekund" -#: ../../mod/settings.php:886 +#: mod/settings.php:941 msgid "Minimum of 10 seconds, no maximum" msgstr "Dolny limit 10 sekund, brak górnego limitu" -#: ../../mod/settings.php:887 +#: mod/settings.php:942 msgid "Number of items to display per page:" msgstr "" -#: ../../mod/settings.php:887 ../../mod/settings.php:888 +#: mod/settings.php:942 mod/settings.php:943 msgid "Maximum of 100 items" msgstr "Maksymalnie 100 elementów" -#: ../../mod/settings.php:888 +#: mod/settings.php:943 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: ../../mod/settings.php:889 +#: mod/settings.php:944 msgid "Don't show emoticons" msgstr "Nie pokazuj emotikonek" -#: ../../mod/settings.php:890 +#: mod/settings.php:945 msgid "Don't show notices" -msgstr "" +msgstr "Nie pokazuj powiadomień" -#: ../../mod/settings.php:891 +#: mod/settings.php:946 msgid "Infinite scroll" -msgstr "" +msgstr "Nieskończone przewijanie" -#: ../../mod/settings.php:892 +#: mod/settings.php:947 msgid "Automatic updates only at the top of the network page" msgstr "" -#: ../../mod/settings.php:969 -msgid "User Types" -msgstr "" +#: mod/settings.php:949 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Ustawienia motywu" -#: ../../mod/settings.php:970 +#: mod/settings.php:1025 +msgid "User Types" +msgstr "Użytkownik pisze" + +#: mod/settings.php:1026 msgid "Community Types" msgstr "" -#: ../../mod/settings.php:971 +#: mod/settings.php:1027 msgid "Normal Account Page" msgstr "" -#: ../../mod/settings.php:972 +#: mod/settings.php:1028 msgid "This account is a normal personal profile" msgstr "To konto jest normalnym osobistym profilem" -#: ../../mod/settings.php:975 +#: mod/settings.php:1031 msgid "Soapbox Page" msgstr "" -#: ../../mod/settings.php:976 +#: mod/settings.php:1032 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'" -#: ../../mod/settings.php:979 +#: mod/settings.php:1035 msgid "Community Forum/Celebrity Account" msgstr "" -#: ../../mod/settings.php:980 +#: mod/settings.php:1036 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu." -#: ../../mod/settings.php:983 +#: mod/settings.php:1039 msgid "Automatic Friend Page" msgstr "" -#: ../../mod/settings.php:984 +#: mod/settings.php:1040 msgid "Automatically approve all connection/friend requests as friends" msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół" -#: ../../mod/settings.php:987 +#: mod/settings.php:1043 msgid "Private Forum [Experimental]" msgstr "" -#: ../../mod/settings.php:988 +#: mod/settings.php:1044 msgid "Private forum - approved members only" msgstr "" -#: ../../mod/settings.php:1000 +#: mod/settings.php:1056 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:1000 +#: mod/settings.php:1056 msgid "(Optional) Allow this OpenID to login to this account." msgstr "Przeznacz to OpenID do logowania się na to konto." -#: ../../mod/settings.php:1010 +#: mod/settings.php:1066 msgid "Publish your default profile in your local site directory?" msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?" -#: ../../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 "Nie" - -#: ../../mod/settings.php:1016 +#: mod/settings.php:1072 msgid "Publish your default profile in the global social directory?" msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?" -#: ../../mod/settings.php:1024 +#: mod/settings.php:1080 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?" -#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 +#: mod/settings.php:1084 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?" -#: ../../mod/settings.php:1028 +#: mod/settings.php:1084 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: ../../mod/settings.php:1033 +#: mod/settings.php:1089 msgid "Allow friends to post to your profile page?" msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych" -#: ../../mod/settings.php:1039 +#: mod/settings.php:1095 msgid "Allow friends to tag your posts?" msgstr "Zezwól na oznaczanie twoich postów przez znajomych" -#: ../../mod/settings.php:1045 +#: mod/settings.php:1101 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:1051 +#: mod/settings.php:1107 msgid "Permit unknown people to send you private mail?" msgstr "" -#: ../../mod/settings.php:1059 +#: mod/settings.php:1115 msgid "Profile is not published." msgstr "Profil nie jest opublikowany" -#: ../../mod/settings.php:1067 -msgid "Your Identity Address is" -msgstr "Twój adres identyfikacyjny to" +#: mod/settings.php:1123 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" -#: ../../mod/settings.php:1078 +#: mod/settings.php:1130 msgid "Automatically expire posts after this many days:" msgstr "" -#: ../../mod/settings.php:1078 +#: mod/settings.php:1130 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." -#: ../../mod/settings.php:1079 +#: mod/settings.php:1131 msgid "Advanced expiration settings" msgstr "" -#: ../../mod/settings.php:1080 +#: mod/settings.php:1132 msgid "Advanced Expiration" msgstr "" -#: ../../mod/settings.php:1081 +#: mod/settings.php:1133 msgid "Expire posts:" msgstr "Wygasające posty:" -#: ../../mod/settings.php:1082 +#: mod/settings.php:1134 msgid "Expire personal notes:" msgstr "Wygasające notatki osobiste:" -#: ../../mod/settings.php:1083 +#: mod/settings.php:1135 msgid "Expire starred posts:" msgstr "" -#: ../../mod/settings.php:1084 +#: mod/settings.php:1136 msgid "Expire photos:" msgstr "Wygasające zdjęcia:" -#: ../../mod/settings.php:1085 +#: mod/settings.php:1137 msgid "Only expire posts by others:" msgstr "" -#: ../../mod/settings.php:1111 +#: mod/settings.php:1163 msgid "Account Settings" msgstr "Ustawienia konta" -#: ../../mod/settings.php:1119 +#: mod/settings.php:1171 msgid "Password Settings" msgstr "Ustawienia hasła" -#: ../../mod/settings.php:1120 +#: mod/settings.php:1172 mod/register.php:271 msgid "New Password:" msgstr "Nowe hasło:" -#: ../../mod/settings.php:1121 +#: mod/settings.php:1173 mod/register.php:272 msgid "Confirm:" msgstr "Potwierdź:" -#: ../../mod/settings.php:1121 +#: mod/settings.php:1173 msgid "Leave password fields blank unless changing" msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić." -#: ../../mod/settings.php:1122 +#: mod/settings.php:1174 msgid "Current Password:" msgstr "Obecne hasło:" -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 +#: mod/settings.php:1174 mod/settings.php:1175 msgid "Your current password to confirm the changes" msgstr "" -#: ../../mod/settings.php:1123 +#: mod/settings.php:1175 msgid "Password:" msgstr "Hasło:" -#: ../../mod/settings.php:1127 +#: mod/settings.php:1179 msgid "Basic Settings" msgstr "Ustawienia podstawowe" -#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 +#: mod/settings.php:1180 include/identity.php:538 msgid "Full Name:" msgstr "Imię i nazwisko:" -#: ../../mod/settings.php:1129 +#: mod/settings.php:1181 msgid "Email Address:" msgstr "Adres email:" -#: ../../mod/settings.php:1130 +#: mod/settings.php:1182 msgid "Your Timezone:" msgstr "Twoja strefa czasowa:" -#: ../../mod/settings.php:1131 +#: mod/settings.php:1183 msgid "Default Post Location:" msgstr "Standardowa lokalizacja wiadomości:" -#: ../../mod/settings.php:1132 +#: mod/settings.php:1184 msgid "Use Browser Location:" msgstr "Użyj położenia przeglądarki:" -#: ../../mod/settings.php:1135 +#: mod/settings.php:1187 msgid "Security and Privacy Settings" msgstr "Ustawienia bezpieczeństwa i prywatności" -#: ../../mod/settings.php:1137 +#: mod/settings.php:1189 msgid "Maximum Friend Requests/Day:" msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:" -#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 +#: mod/settings.php:1189 mod/settings.php:1219 msgid "(to prevent spam abuse)" msgstr "(aby zapobiec spamowaniu)" -#: ../../mod/settings.php:1138 +#: mod/settings.php:1190 msgid "Default Post Permissions" msgstr "Domyślne prawa dostępu wiadomości" -#: ../../mod/settings.php:1139 +#: mod/settings.php:1191 msgid "(click to open/close)" msgstr "(kliknij by otworzyć/zamknąć)" -#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1519 +#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 msgid "Show to Groups" msgstr "Pokaż Grupy" -#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1520 +#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 msgid "Show to Contacts" msgstr "Pokaż kontakty" -#: ../../mod/settings.php:1150 +#: mod/settings.php:1202 msgid "Default Private Post" msgstr "" -#: ../../mod/settings.php:1151 +#: mod/settings.php:1203 msgid "Default Public Post" msgstr "" -#: ../../mod/settings.php:1155 +#: mod/settings.php:1207 msgid "Default Permissions for New Posts" msgstr "" -#: ../../mod/settings.php:1167 +#: mod/settings.php:1219 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:1170 +#: mod/settings.php:1222 msgid "Notification Settings" msgstr "Ustawienia powiadomień" -#: ../../mod/settings.php:1171 +#: mod/settings.php:1223 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:1172 +#: mod/settings.php:1224 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:1173 +#: mod/settings.php:1225 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:1174 +#: mod/settings.php:1226 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:1175 +#: mod/settings.php:1227 msgid "Send a notification email when:" msgstr "Wyślij powiadmonienia na email, kiedy:" -#: ../../mod/settings.php:1176 +#: mod/settings.php:1228 msgid "You receive an introduction" msgstr "Otrzymałeś zaproszenie" -#: ../../mod/settings.php:1177 +#: mod/settings.php:1229 msgid "Your introductions are confirmed" msgstr "Dane zatwierdzone" -#: ../../mod/settings.php:1178 +#: mod/settings.php:1230 msgid "Someone writes on your profile wall" msgstr "Ktoś pisze na twojej ścianie profilowej" -#: ../../mod/settings.php:1179 +#: mod/settings.php:1231 msgid "Someone writes a followup comment" msgstr "Ktoś pisze komentarz nawiązujący." -#: ../../mod/settings.php:1180 +#: mod/settings.php:1232 msgid "You receive a private message" msgstr "Otrzymałeś prywatną wiadomość" -#: ../../mod/settings.php:1181 +#: mod/settings.php:1233 msgid "You receive a friend suggestion" msgstr "Otrzymane propozycje znajomych" -#: ../../mod/settings.php:1182 +#: mod/settings.php:1234 msgid "You are tagged in a post" msgstr "Jesteś oznaczony w poście" -#: ../../mod/settings.php:1183 +#: mod/settings.php:1235 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1185 +#: mod/settings.php:1237 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1237 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1239 msgid "Text-only notification emails" msgstr "" -#: ../../mod/settings.php:1187 +#: mod/settings.php:1241 msgid "Send text only notification emails, without the html part" msgstr "" -#: ../../mod/settings.php:1189 +#: mod/settings.php:1243 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1190 +#: mod/settings.php:1244 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1193 +#: mod/settings.php:1247 msgid "Relocate" msgstr "" -#: ../../mod/settings.php:1194 +#: mod/settings.php:1248 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:1195 +#: mod/settings.php:1249 msgid "Resend relocate message to contacts" msgstr "" -#: ../../mod/dfrn_request.php:95 +#: mod/dfrn_request.php:95 msgid "This introduction has already been accepted." msgstr "To wprowadzenie zostało już zaakceptowane." -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 msgid "Profile location is not valid or does not contain profile information." msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji." -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 msgid "Warning: profile location has no identifiable owner name." msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 msgid "Warning: profile location has no profile photo." msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#: 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" @@ -4322,934 +4532,917 @@ msgstr[0] "%d wymagany parametr nie został znaleziony w podanej lokacji" msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" -#: ../../mod/dfrn_request.php:172 +#: mod/dfrn_request.php:172 msgid "Introduction complete." msgstr "wprowadzanie zakończone." -#: ../../mod/dfrn_request.php:214 +#: mod/dfrn_request.php:214 msgid "Unrecoverable protocol error." msgstr "Nieodwracalny błąd protokołu." -#: ../../mod/dfrn_request.php:242 +#: mod/dfrn_request.php:242 msgid "Profile unavailable." msgstr "Profil niedostępny." -#: ../../mod/dfrn_request.php:267 +#: mod/dfrn_request.php:267 #, php-format msgid "%s has received too many connection requests today." msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." -#: ../../mod/dfrn_request.php:268 +#: mod/dfrn_request.php:268 msgid "Spam protection measures have been invoked." msgstr "Ochrona przed spamem została wywołana." -#: ../../mod/dfrn_request.php:269 +#: mod/dfrn_request.php:269 msgid "Friends are advised to please try again in 24 hours." msgstr "Przyjaciele namawiają do spróbowania za 24h." -#: ../../mod/dfrn_request.php:331 +#: mod/dfrn_request.php:331 msgid "Invalid locator" msgstr "Niewłaściwy lokalizator " -#: ../../mod/dfrn_request.php:340 +#: mod/dfrn_request.php:340 msgid "Invalid email address." msgstr "Nieprawidłowy adres email." -#: ../../mod/dfrn_request.php:367 +#: mod/dfrn_request.php:367 msgid "This account has not been configured for email. Request failed." msgstr "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ." -#: ../../mod/dfrn_request.php:463 +#: mod/dfrn_request.php:463 msgid "Unable to resolve your name at the provided location." msgstr "Nie można rozpoznać twojej nazwy w przewidzianym miejscu." -#: ../../mod/dfrn_request.php:476 +#: mod/dfrn_request.php:476 msgid "You have already introduced yourself here." msgstr "Już się tu przedstawiłeś." -#: ../../mod/dfrn_request.php:480 +#: mod/dfrn_request.php:480 #, php-format msgid "Apparently you are already friends with %s." msgstr "Widocznie jesteście już znajomymi z %s" -#: ../../mod/dfrn_request.php:501 +#: mod/dfrn_request.php:501 msgid "Invalid profile URL." msgstr "Zły adres URL profilu." -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +#: mod/dfrn_request.php:507 include/follow.php:70 msgid "Disallowed profile URL." msgstr "Nie dozwolony adres URL profilu." -#: ../../mod/dfrn_request.php:597 +#: mod/dfrn_request.php:597 msgid "Your introduction has been sent." msgstr "Twoje dane zostały wysłane." -#: ../../mod/dfrn_request.php:650 +#: mod/dfrn_request.php:650 msgid "Please login to confirm introduction." msgstr "Proszę zalogować się do potwierdzenia wstępu." -#: ../../mod/dfrn_request.php:660 +#: mod/dfrn_request.php:660 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " -#: ../../mod/dfrn_request.php:671 +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Potwierdź" + +#: mod/dfrn_request.php:686 msgid "Hide this contact" msgstr "Ukryj kontakt" -#: ../../mod/dfrn_request.php:674 +#: mod/dfrn_request.php:689 #, php-format msgid "Welcome home %s." msgstr "Welcome home %s." -#: ../../mod/dfrn_request.php:675 +#: mod/dfrn_request.php:690 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." -#: ../../mod/dfrn_request.php:676 -msgid "Confirm" -msgstr "Potwierdź" - -#: ../../mod/dfrn_request.php:804 +#: mod/dfrn_request.php:819 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ." -#: ../../mod/dfrn_request.php:824 +#: mod/dfrn_request.php:840 +#, php-format msgid "" "If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Jeśli nie jesteś członkiem darmowej sieci społecznościowej kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś ." +"href=\"%s/siteinfo\">follow this link to find a public Friendica site and " +"join us today." +msgstr "" -#: ../../mod/dfrn_request.php:827 +#: mod/dfrn_request.php:845 msgid "Friend/Connection Request" msgstr "Przyjaciel/Prośba o połączenie" -#: ../../mod/dfrn_request.php:828 +#: mod/dfrn_request.php:846 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca" -#: ../../mod/dfrn_request.php:829 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na poniższe:" - -#: ../../mod/dfrn_request.php:830 -#, php-format -msgid "Does %s know you?" -msgstr "Czy %s Cię zna?" - -#: ../../mod/dfrn_request.php:834 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 msgid "Friendica" msgstr "Friendica" -#: ../../mod/dfrn_request.php:837 +#: mod/dfrn_request.php:855 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Sieć społeczna" -#: ../../mod/dfrn_request.php:839 +#: mod/dfrn_request.php:857 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search" " bar." msgstr "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki." -#: ../../mod/dfrn_request.php:840 -msgid "Your Identity Address:" -msgstr "Twój zidentyfikowany adres:" - -#: ../../mod/dfrn_request.php:843 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: ../../mod/register.php:90 +#: mod/register.php:92 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." -#: ../../mod/register.php:96 +#: mod/register.php:97 #, php-format msgid "" "Failed to send email message. Here your accout details:
    login: %s
    " "password: %s

    You can change your password after login." msgstr "" -#: ../../mod/register.php:105 +#: mod/register.php:107 msgid "Your registration can not be processed." msgstr "Twoja rejestracja nie może zostać przeprowadzona. " -#: ../../mod/register.php:148 +#: mod/register.php:150 msgid "Your registration is pending approval by the site owner." msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." -#: ../../mod/register.php:186 ../../mod/uimport.php:50 +#: mod/register.php:188 mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro." -#: ../../mod/register.php:214 +#: mod/register.php:216 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'." -#: ../../mod/register.php:215 +#: mod/register.php:217 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów." -#: ../../mod/register.php:216 +#: mod/register.php:218 msgid "Your OpenID (optional): " msgstr "Twój OpenID (opcjonalnie):" -#: ../../mod/register.php:230 +#: mod/register.php:232 msgid "Include your profile in member directory?" msgstr "Czy dołączyć twój profil do katalogu członków?" -#: ../../mod/register.php:251 +#: mod/register.php:256 msgid "Membership on this site is by invitation only." msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." -#: ../../mod/register.php:252 +#: mod/register.php:257 msgid "Your invitation ID: " msgstr "Twoje zaproszenia ID:" -#: ../../mod/register.php:263 +#: mod/register.php:268 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Imię i nazwisko (np. Jan Kowalski):" -#: ../../mod/register.php:264 +#: mod/register.php:269 msgid "Your Email Address: " msgstr "Twój adres email:" -#: ../../mod/register.php:265 +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:273 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@$nazwastrony'." -#: ../../mod/register.php:266 +#: mod/register.php:274 msgid "Choose a nickname: " msgstr "Wybierz pseudonim:" -#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 +#: mod/register.php:277 boot.php:1248 include/nav.php:109 msgid "Register" msgstr "Zarejestruj" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 +#: mod/register.php:283 mod/uimport.php:64 msgid "Import" msgstr "Import" -#: ../../mod/register.php:276 +#: mod/register.php:284 msgid "Import your profile to this friendica instance" msgstr "" -#: ../../mod/maintenance.php:5 +#: mod/maintenance.php:5 msgid "System down for maintenance" msgstr "" -#: ../../mod/search.php:99 ../../include/text.php:953 -#: ../../include/text.php:954 ../../include/nav.php:119 +#: mod/search.php:100 include/text.php:996 include/nav.php:119 msgid "Search" msgstr "Szukaj" -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +#: mod/search.php:198 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:200 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 msgid "Global Directory" msgstr "Globalne Położenie" -#: ../../mod/directory.php:59 +#: mod/directory.php:61 msgid "Find on this site" msgstr "Znajdź na tej stronie" -#: ../../mod/directory.php:62 +#: mod/directory.php:64 msgid "Site Directory" msgstr "Katalog Strony" -#: ../../mod/directory.php:113 ../../mod/profiles.php:750 +#: mod/directory.php:129 mod/profiles.php:747 msgid "Age: " msgstr "Wiek: " -#: ../../mod/directory.php:116 +#: mod/directory.php:132 msgid "Gender: " msgstr "Płeć: " -#: ../../mod/directory.php:138 ../../boot.php:1650 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Płeć:" - -#: ../../mod/directory.php:140 ../../boot.php:1653 -#: ../../include/profile_advanced.php:37 +#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 msgid "Status:" msgstr "Status" -#: ../../mod/directory.php:142 ../../boot.php:1655 -#: ../../include/profile_advanced.php:48 +#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 msgid "Homepage:" msgstr "Strona główna:" -#: ../../mod/directory.php:144 ../../boot.php:1657 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "O:" - -#: ../../mod/directory.php:189 +#: mod/directory.php:205 msgid "No entries (some entries may be hidden)." msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." -#: ../../mod/delegate.php:101 +#: mod/delegate.php:101 msgid "No potential page delegates located." msgstr "" -#: ../../mod/delegate.php:130 ../../include/nav.php:170 +#: mod/delegate.php:130 include/nav.php:179 msgid "Delegate Page Management" msgstr "" -#: ../../mod/delegate.php:132 +#: 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/delegate.php:133 +#: mod/delegate.php:133 msgid "Existing Page Managers" msgstr "" -#: ../../mod/delegate.php:135 +#: mod/delegate.php:135 msgid "Existing Page Delegates" msgstr "" -#: ../../mod/delegate.php:137 +#: mod/delegate.php:137 msgid "Potential Delegates" msgstr "" -#: ../../mod/delegate.php:140 +#: mod/delegate.php:140 msgid "Add" msgstr "Dodaj" -#: ../../mod/delegate.php:141 +#: mod/delegate.php:141 msgid "No entries." msgstr "Brak wpisów." -#: ../../mod/common.php:42 +#: mod/common.php:45 msgid "Common Friends" msgstr "Wspólni znajomi" -#: ../../mod/common.php:78 +#: mod/common.php:82 msgid "No contacts in common." msgstr "Brak wspólnych kontaktów." -#: ../../mod/uexport.php:77 +#: mod/uexport.php:77 msgid "Export account" msgstr "Eksportuj konto" -#: ../../mod/uexport.php:77 +#: 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/uexport.php:78 +#: mod/uexport.php:78 msgid "Export all" msgstr "Eksportuj wszystko" -#: ../../mod/uexport.php:78 +#: 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/mood.php:62 ../../include/conversation.php:227 +#: mod/mood.php:62 include/conversation.php:226 #, php-format msgid "%1$s is currently %2$s" msgstr "" -#: ../../mod/mood.php:133 +#: mod/mood.php:133 msgid "Mood" msgstr "Nastrój" -#: ../../mod/mood.php:134 +#: mod/mood.php:134 msgid "Set your current mood and tell your friends" msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym" -#: ../../mod/suggest.php:27 +#: mod/suggest.php:27 msgid "Do you really want to delete this suggestion?" msgstr "Czy na pewno chcesz usunąć te sugestie ?" -#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 -#: ../../view/theme/diabook/theme.php:527 +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 msgid "Friend Suggestions" msgstr "Osoby, które możesz znać" -#: ../../mod/suggest.php:74 +#: mod/suggest.php:76 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "" -#: ../../mod/suggest.php:92 +#: mod/suggest.php:94 msgid "Ignore/Hide" msgstr "Ignoruj/Ukryj" -#: ../../mod/profiles.php:37 +#: mod/profiles.php:37 msgid "Profile deleted." msgstr "Konto usunięte." -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +#: mod/profiles.php:55 mod/profiles.php:89 msgid "Profile-" msgstr "Profil-" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +#: mod/profiles.php:74 mod/profiles.php:117 msgid "New profile created." msgstr "Utworzono nowy profil." -#: ../../mod/profiles.php:95 +#: mod/profiles.php:95 msgid "Profile unavailable to clone." msgstr "Nie można powileić profilu " -#: ../../mod/profiles.php:189 +#: mod/profiles.php:189 msgid "Profile Name is required." msgstr "Nazwa Profilu jest wymagana" -#: ../../mod/profiles.php:340 +#: mod/profiles.php:336 msgid "Marital Status" msgstr "" -#: ../../mod/profiles.php:344 +#: mod/profiles.php:340 msgid "Romantic Partner" msgstr "" -#: ../../mod/profiles.php:348 +#: mod/profiles.php:344 msgid "Likes" msgstr "Polubień" -#: ../../mod/profiles.php:352 +#: mod/profiles.php:348 msgid "Dislikes" msgstr "Nie lubień" -#: ../../mod/profiles.php:356 +#: mod/profiles.php:352 msgid "Work/Employment" msgstr "Praca/Zatrudnienie" -#: ../../mod/profiles.php:359 +#: mod/profiles.php:355 msgid "Religion" msgstr "Religia" -#: ../../mod/profiles.php:363 +#: mod/profiles.php:359 msgid "Political Views" msgstr "Poglądy polityczne" -#: ../../mod/profiles.php:367 +#: mod/profiles.php:363 msgid "Gender" msgstr "Płeć" -#: ../../mod/profiles.php:371 +#: mod/profiles.php:367 msgid "Sexual Preference" msgstr "Orientacja seksualna" -#: ../../mod/profiles.php:375 +#: mod/profiles.php:371 msgid "Homepage" msgstr "Strona Główna" -#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +#: mod/profiles.php:375 mod/profiles.php:695 msgid "Interests" msgstr "Zainteresowania" -#: ../../mod/profiles.php:383 +#: mod/profiles.php:379 msgid "Address" msgstr "Adres" -#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 +#: mod/profiles.php:386 mod/profiles.php:691 msgid "Location" msgstr "Położenie" -#: ../../mod/profiles.php:473 +#: mod/profiles.php:469 msgid "Profile updated." msgstr "Konto zaktualizowane." -#: ../../mod/profiles.php:568 +#: mod/profiles.php:565 msgid " and " msgstr " i " -#: ../../mod/profiles.php:576 +#: mod/profiles.php:573 msgid "public profile" msgstr "profil publiczny" -#: ../../mod/profiles.php:579 +#: mod/profiles.php:576 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../mod/profiles.php:580 +#: mod/profiles.php:577 #, php-format msgid " - Visit %1$s's %2$s" msgstr " - Odwiedźa %1$s's %2$s" -#: ../../mod/profiles.php:583 +#: mod/profiles.php:580 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../mod/profiles.php:658 +#: mod/profiles.php:655 msgid "Hide contacts and friends:" msgstr "" -#: ../../mod/profiles.php:663 +#: mod/profiles.php:660 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?" -#: ../../mod/profiles.php:685 +#: mod/profiles.php:682 msgid "Edit Profile Details" msgstr "Edytuj profil." -#: ../../mod/profiles.php:687 +#: mod/profiles.php:684 msgid "Change Profile Photo" msgstr "Zmień profilowe zdjęcie" -#: ../../mod/profiles.php:688 +#: mod/profiles.php:685 msgid "View this profile" msgstr "Zobacz ten profil" -#: ../../mod/profiles.php:689 +#: mod/profiles.php:686 msgid "Create a new profile using these settings" msgstr "Stwórz nowy profil wykorzystując te ustawienia" -#: ../../mod/profiles.php:690 +#: mod/profiles.php:687 msgid "Clone this profile" msgstr "Sklonuj ten profil" -#: ../../mod/profiles.php:691 +#: mod/profiles.php:688 msgid "Delete this profile" msgstr "Usuń ten profil" -#: ../../mod/profiles.php:692 +#: mod/profiles.php:689 msgid "Basic information" msgstr "" -#: ../../mod/profiles.php:693 +#: mod/profiles.php:690 msgid "Profile picture" msgstr "" -#: ../../mod/profiles.php:695 +#: mod/profiles.php:692 msgid "Preferences" msgstr "" -#: ../../mod/profiles.php:696 +#: mod/profiles.php:693 msgid "Status information" msgstr "" -#: ../../mod/profiles.php:697 +#: mod/profiles.php:694 msgid "Additional information" msgstr "" -#: ../../mod/profiles.php:700 +#: mod/profiles.php:697 msgid "Profile Name:" msgstr "Nazwa profilu :" -#: ../../mod/profiles.php:701 +#: mod/profiles.php:698 msgid "Your Full Name:" msgstr "Twoje imię i nazwisko:" -#: ../../mod/profiles.php:702 +#: mod/profiles.php:699 msgid "Title/Description:" msgstr "Tytuł/Opis :" -#: ../../mod/profiles.php:703 +#: mod/profiles.php:700 msgid "Your Gender:" msgstr "Twoja płeć:" -#: ../../mod/profiles.php:704 -#, php-format -msgid "Birthday (%s):" -msgstr "Urodziny (%s):" +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "" -#: ../../mod/profiles.php:705 +#: mod/profiles.php:702 msgid "Street Address:" msgstr "Ulica:" -#: ../../mod/profiles.php:706 +#: mod/profiles.php:703 msgid "Locality/City:" msgstr "Miejscowość/Miasto :" -#: ../../mod/profiles.php:707 +#: mod/profiles.php:704 msgid "Postal/Zip Code:" msgstr "Kod Pocztowy :" -#: ../../mod/profiles.php:708 +#: mod/profiles.php:705 msgid "Country:" msgstr "Kraj:" -#: ../../mod/profiles.php:709 +#: mod/profiles.php:706 msgid "Region/State:" msgstr "Region / Stan :" -#: ../../mod/profiles.php:710 +#: mod/profiles.php:707 msgid " Marital Status:" msgstr " Stan :" -#: ../../mod/profiles.php:711 +#: mod/profiles.php:708 msgid "Who: (if applicable)" msgstr "Kto: (jeśli dotyczy)" -#: ../../mod/profiles.php:712 +#: mod/profiles.php:709 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/profiles.php:713 +#: mod/profiles.php:710 msgid "Since [date]:" msgstr "Od [data]:" -#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 +#: mod/profiles.php:711 include/identity.php:569 msgid "Sexual Preference:" msgstr "Interesują mnie:" -#: ../../mod/profiles.php:715 +#: mod/profiles.php:712 msgid "Homepage URL:" msgstr "Strona główna URL:" -#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 +#: mod/profiles.php:713 include/identity.php:573 msgid "Hometown:" msgstr "Miasto rodzinne:" -#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 +#: mod/profiles.php:714 include/identity.php:577 msgid "Political Views:" msgstr "Poglądy polityczne:" -#: ../../mod/profiles.php:718 +#: mod/profiles.php:715 msgid "Religious Views:" msgstr "Poglądy religijne:" -#: ../../mod/profiles.php:719 +#: mod/profiles.php:716 msgid "Public Keywords:" msgstr "Publiczne słowa kluczowe :" -#: ../../mod/profiles.php:720 +#: mod/profiles.php:717 msgid "Private Keywords:" msgstr "Prywatne słowa kluczowe :" -#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 +#: mod/profiles.php:718 include/identity.php:585 msgid "Likes:" msgstr "Lubi:" -#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 +#: mod/profiles.php:719 include/identity.php:587 msgid "Dislikes:" msgstr "" -#: ../../mod/profiles.php:723 +#: mod/profiles.php:720 msgid "Example: fishing photography software" msgstr "Przykład: kończenie oprogramowania fotografii" -#: ../../mod/profiles.php:724 +#: mod/profiles.php:721 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" -#: ../../mod/profiles.php:725 +#: mod/profiles.php:722 msgid "(Used for searching profiles, never shown to others)" msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" -#: ../../mod/profiles.php:726 +#: mod/profiles.php:723 msgid "Tell us about yourself..." msgstr "Napisz o sobie..." -#: ../../mod/profiles.php:727 +#: mod/profiles.php:724 msgid "Hobbies/Interests" msgstr "Zainteresowania" -#: ../../mod/profiles.php:728 +#: mod/profiles.php:725 msgid "Contact information and Social Networks" msgstr "Informacje kontaktowe i Sieci Społeczne" -#: ../../mod/profiles.php:729 +#: mod/profiles.php:726 msgid "Musical interests" msgstr "Muzyka" -#: ../../mod/profiles.php:730 +#: mod/profiles.php:727 msgid "Books, literature" msgstr "Literatura" -#: ../../mod/profiles.php:731 +#: mod/profiles.php:728 msgid "Television" msgstr "Telewizja" -#: ../../mod/profiles.php:732 +#: mod/profiles.php:729 msgid "Film/dance/culture/entertainment" msgstr "Film/taniec/kultura/rozrywka" -#: ../../mod/profiles.php:733 +#: mod/profiles.php:730 msgid "Love/romance" msgstr "Miłość/romans" -#: ../../mod/profiles.php:734 +#: mod/profiles.php:731 msgid "Work/employment" msgstr "Praca/zatrudnienie" -#: ../../mod/profiles.php:735 +#: mod/profiles.php:732 msgid "School/education" msgstr "Szkoła/edukacja" -#: ../../mod/profiles.php:740 +#: mod/profiles.php:737 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "To jest Twój publiczny profil.
    Może zostać wyświetlony przez każdego kto używa internetu." -#: ../../mod/profiles.php:803 +#: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "Edytuj/Zarządzaj Profilami" -#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 msgid "Change profile photo" msgstr "Zmień zdjęcie profilowe" -#: ../../mod/profiles.php:805 ../../boot.php:1612 +#: mod/profiles.php:802 include/identity.php:232 msgid "Create New Profile" msgstr "Stwórz nowy profil" -#: ../../mod/profiles.php:816 ../../boot.php:1622 +#: mod/profiles.php:813 include/identity.php:242 msgid "Profile Image" msgstr "Obraz profilowy" -#: ../../mod/profiles.php:818 ../../boot.php:1625 +#: mod/profiles.php:815 include/identity.php:245 msgid "visible to everybody" msgstr "widoczne dla wszystkich" -#: ../../mod/profiles.php:819 ../../boot.php:1626 +#: mod/profiles.php:816 include/identity.php:246 msgid "Edit visibility" msgstr "Edytuj widoczność" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +#: mod/editpost.php:17 mod/editpost.php:27 msgid "Item not found" msgstr "Artykuł nie znaleziony" -#: ../../mod/editpost.php:39 +#: mod/editpost.php:40 msgid "Edit post" msgstr "Edytuj post" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 +#: mod/editpost.php:111 include/conversation.php:1057 msgid "upload photo" msgstr "dodaj zdjęcie" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 +#: mod/editpost.php:112 include/conversation.php:1058 msgid "Attach file" msgstr "Przyłącz plik" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 +#: mod/editpost.php:113 include/conversation.php:1059 msgid "attach file" msgstr "załącz plik" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 +#: mod/editpost.php:115 include/conversation.php:1061 msgid "web link" msgstr "Adres www" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 +#: mod/editpost.php:116 include/conversation.php:1062 msgid "Insert video link" msgstr "Wstaw link wideo" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 +#: mod/editpost.php:117 include/conversation.php:1063 msgid "video link" msgstr "link do filmu" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 +#: mod/editpost.php:118 include/conversation.php:1064 msgid "Insert audio link" msgstr "Wstaw link audio" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 +#: mod/editpost.php:119 include/conversation.php:1065 msgid "audio link" msgstr "Link audio" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 +#: mod/editpost.php:120 include/conversation.php:1066 msgid "Set your location" msgstr "Ustaw swoje położenie" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 +#: mod/editpost.php:121 include/conversation.php:1067 msgid "set location" msgstr "wybierz lokalizację" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 +#: mod/editpost.php:122 include/conversation.php:1068 msgid "Clear browser location" msgstr "Wyczyść położenie przeglądarki" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 +#: mod/editpost.php:123 include/conversation.php:1069 msgid "clear location" msgstr "wyczyść lokalizację" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 +#: mod/editpost.php:125 include/conversation.php:1075 msgid "Permission settings" msgstr "Ustawienia uprawnień" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 +#: mod/editpost.php:133 include/acl_selectors.php:343 msgid "CC: email addresses" msgstr "CC: adresy e-mail" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 +#: mod/editpost.php:134 include/conversation.php:1084 msgid "Public post" msgstr "Publiczny post" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +#: mod/editpost.php:137 include/conversation.php:1071 msgid "Set title" msgstr "Ustaw tytuł" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +#: mod/editpost.php:139 include/conversation.php:1073 msgid "Categories (comma-separated list)" msgstr "Kategorie (lista słów oddzielonych przecinkiem)" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 +#: mod/editpost.php:140 include/acl_selectors.php:344 msgid "Example: bob@example.com, mary@example.com" msgstr "Przykład: bob@example.com, mary@example.com" -#: ../../mod/friendica.php:59 +#: mod/friendica.php:59 msgid "This is Friendica, version" msgstr "To jest Friendica, wersja" -#: ../../mod/friendica.php:60 +#: mod/friendica.php:60 msgid "running at web location" msgstr "otwierane na serwerze" -#: ../../mod/friendica.php:62 +#: mod/friendica.php:62 msgid "" "Please visit Friendica.com to learn " "more about the Friendica project." msgstr "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica." -#: ../../mod/friendica.php:64 +#: mod/friendica.php:64 msgid "Bug reports and issues: please visit" msgstr "Reportowanie błędów i problemów: proszę odwiedź" -#: ../../mod/friendica.php:65 +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" msgstr "" -#: ../../mod/friendica.php:79 +#: mod/friendica.php:79 msgid "Installed plugins/addons/apps:" msgstr "Zainstalowane pluginy/dodatki/aplikacje:" -#: ../../mod/friendica.php:92 +#: mod/friendica.php:92 msgid "No installed plugins/addons/apps" msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji" -#: ../../mod/api.php:76 ../../mod/api.php:102 +#: mod/api.php:76 mod/api.php:102 msgid "Authorize application connection" msgstr "Autoryzacja połączenia aplikacji" -#: ../../mod/api.php:77 +#: mod/api.php:77 msgid "Return to your app and insert this Securty Code:" msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" -#: ../../mod/api.php:89 +#: mod/api.php:89 msgid "Please login to continue." msgstr "Zaloguj się aby kontynuować." -#: ../../mod/api.php:104 +#: 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 "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?" -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +#: mod/lockview.php:31 mod/lockview.php:39 msgid "Remote privacy information not available." msgstr "Dane prywatne nie są dostępne zdalnie " -#: ../../mod/lockview.php:48 +#: mod/lockview.php:48 msgid "Visible to:" msgstr "Widoczne dla:" -#: ../../mod/notes.php:44 ../../boot.php:2150 +#: mod/notes.php:44 include/identity.php:675 msgid "Personal Notes" msgstr "Osobiste notatki" -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 -#: ../../include/event.php:11 +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../mod/localtime.php:24 +#: mod/localtime.php:24 msgid "Time Conversion" msgstr "Zmiana czasu" -#: ../../mod/localtime.php:26 +#: mod/localtime.php:26 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "" -#: ../../mod/localtime.php:30 +#: mod/localtime.php:30 #, php-format msgid "UTC time: %s" msgstr "Czas UTC %s" -#: ../../mod/localtime.php:33 +#: mod/localtime.php:33 #, php-format msgid "Current timezone: %s" msgstr "Obecna strefa czasowa: %s" -#: ../../mod/localtime.php:36 +#: mod/localtime.php:36 #, php-format msgid "Converted localtime: %s" msgstr "Zmień strefę czasową: %s" -#: ../../mod/localtime.php:41 +#: mod/localtime.php:41 msgid "Please select your timezone:" msgstr "Wybierz swoją strefę czasową:" -#: ../../mod/poke.php:192 +#: mod/poke.php:192 msgid "Poke/Prod" msgstr "" -#: ../../mod/poke.php:193 +#: mod/poke.php:193 msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/poke.php:194 +#: mod/poke.php:194 msgid "Recipient" msgstr "" -#: ../../mod/poke.php:195 +#: mod/poke.php:195 msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/poke.php:198 +#: mod/poke.php:198 msgid "Make this post private" msgstr "Zrób ten post prywatnym" -#: ../../mod/invite.php:27 +#: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "" -#: ../../mod/invite.php:49 +#: mod/invite.php:49 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Niepoprawny adres email." -#: ../../mod/invite.php:73 +#: mod/invite.php:73 msgid "Please join us on Friendica" msgstr "Dołącz do nas na Friendica" -#: ../../mod/invite.php:84 +#: mod/invite.php:84 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../mod/invite.php:89 +#: mod/invite.php:89 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Dostarczenie wiadomości nieudane." -#: ../../mod/invite.php:93 +#: mod/invite.php:93 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -5257,11 +5450,11 @@ msgstr[0] "%d wiadomość wysłana." msgstr[1] "%d wiadomości wysłane." msgstr[2] "%d wysłano ." -#: ../../mod/invite.php:112 +#: mod/invite.php:112 msgid "You have no more invitations available" msgstr "Nie masz więcej zaproszeń" -#: ../../mod/invite.php:120 +#: mod/invite.php:120 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -5269,14 +5462,14 @@ msgid "" " other social networks." msgstr "" -#: ../../mod/invite.php:122 +#: mod/invite.php:122 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "" -#: ../../mod/invite.php:123 +#: mod/invite.php:123 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -5285,446 +5478,368 @@ msgid "" "sites you can join." msgstr "" -#: ../../mod/invite.php:126 +#: mod/invite.php:126 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "" -#: ../../mod/invite.php:132 +#: mod/invite.php:132 msgid "Send invitations" msgstr "Wyślij zaproszenia" -#: ../../mod/invite.php:133 +#: mod/invite.php:133 msgid "Enter email addresses, one per line:" msgstr "Wprowadź adresy email, jeden na linijkę:" -#: ../../mod/invite.php:135 +#: mod/invite.php:135 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "" -#: ../../mod/invite.php:137 +#: mod/invite.php:137 msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: ../../mod/invite.php:137 +#: mod/invite.php:137 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :" -#: ../../mod/invite.php:139 +#: mod/invite.php:139 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" msgstr "" -#: ../../mod/photos.php:52 ../../boot.php:2129 -msgid "Photo Albums" -msgstr "Albumy zdjęć" - -#: ../../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 +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "Zdjęcia kontaktu" -#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +#: mod/photos.php:84 include/identity.php:651 +msgid "Photo Albums" +msgstr "Albumy zdjęć" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Ostatnio dodane zdjęcia" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 msgid "Upload New Photos" msgstr "Wyślij nowe zdjęcie" -#: ../../mod/photos.php:144 +#: mod/photos.php:166 msgid "Contact information unavailable" msgstr "Informacje o kontakcie nie dostępne." -#: ../../mod/photos.php:165 +#: mod/photos.php:187 msgid "Album not found." msgstr "Album nie znaleziony" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 msgid "Delete Album" msgstr "Usuń album" -#: ../../mod/photos.php:198 +#: mod/photos.php:220 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 msgid "Delete Photo" msgstr "Usuń zdjęcie" -#: ../../mod/photos.php:287 +#: mod/photos.php:309 msgid "Do you really want to delete this photo?" msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: ../../mod/photos.php:662 +#: mod/photos.php:684 msgid "a photo" msgstr "zdjęcie" -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "obrazek przekracza limit rozmiaru" - -#: ../../mod/photos.php:775 +#: mod/photos.php:797 msgid "Image file is empty." msgstr "Plik obrazka jest pusty." -#: ../../mod/photos.php:930 +#: mod/photos.php:952 msgid "No photos selected" msgstr "Nie zaznaczono zdjęć" -#: ../../mod/photos.php:1094 +#: mod/photos.php:1114 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: ../../mod/photos.php:1129 +#: mod/photos.php:1149 msgid "Upload Photos" msgstr "Prześlij zdjęcia" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +#: mod/photos.php:1153 mod/photos.php:1219 msgid "New album name: " msgstr "Nazwa nowego albumu:" -#: ../../mod/photos.php:1134 +#: mod/photos.php:1154 msgid "or existing album name: " msgstr "lub istniejąca nazwa albumu:" -#: ../../mod/photos.php:1135 +#: mod/photos.php:1155 msgid "Do not show a status post for this upload" msgstr "Nie pokazuj postów statusu dla tego wysłania" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 msgid "Permissions" msgstr "Uprawnienia" -#: ../../mod/photos.php:1148 +#: mod/photos.php:1168 msgid "Private Photo" msgstr "Zdjęcie prywatne" -#: ../../mod/photos.php:1149 +#: mod/photos.php:1169 msgid "Public Photo" msgstr "Zdjęcie publiczne" -#: ../../mod/photos.php:1212 +#: mod/photos.php:1232 msgid "Edit Album" msgstr "Edytuj album" -#: ../../mod/photos.php:1218 +#: mod/photos.php:1238 msgid "Show Newest First" msgstr "Najpierw pokaż najnowsze" -#: ../../mod/photos.php:1220 +#: mod/photos.php:1240 msgid "Show Oldest First" msgstr "Najpierw pokaż najstarsze" -#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +#: mod/photos.php:1268 mod/photos.php:1821 msgid "View Photo" msgstr "Zobacz zdjęcie" -#: ../../mod/photos.php:1294 +#: mod/photos.php:1314 msgid "Permission denied. Access to this item may be restricted." msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." -#: ../../mod/photos.php:1296 +#: mod/photos.php:1316 msgid "Photo not available" msgstr "Zdjęcie niedostępne" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "View photo" msgstr "Zobacz zdjęcie" -#: ../../mod/photos.php:1352 +#: mod/photos.php:1372 msgid "Edit photo" msgstr "Edytuj zdjęcie" -#: ../../mod/photos.php:1353 +#: mod/photos.php:1373 msgid "Use as profile photo" msgstr "Ustaw jako zdjęcie profilowe" -#: ../../mod/photos.php:1378 +#: mod/photos.php:1398 msgid "View Full Size" msgstr "Zobacz w pełnym rozmiarze" -#: ../../mod/photos.php:1457 +#: mod/photos.php:1477 msgid "Tags: " msgstr "Tagi:" -#: ../../mod/photos.php:1460 +#: mod/photos.php:1480 msgid "[Remove any tag]" msgstr "[Usunąć znacznik]" -#: ../../mod/photos.php:1500 -msgid "Rotate CW (right)" -msgstr "Obróć CW (w prawo)" - -#: ../../mod/photos.php:1501 -msgid "Rotate CCW (left)" -msgstr "Obróć CCW (w lewo)" - -#: ../../mod/photos.php:1503 +#: mod/photos.php:1520 msgid "New album name" msgstr "Nazwa nowego albumu" -#: ../../mod/photos.php:1506 +#: mod/photos.php:1521 msgid "Caption" msgstr "Zawartość" -#: ../../mod/photos.php:1508 +#: mod/photos.php:1522 msgid "Add a Tag" msgstr "Dodaj tag" -#: ../../mod/photos.php:1512 +#: mod/photos.php:1522 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/photos.php:1521 +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Obróć CW (w prawo)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Obróć CCW (w lewo)" + +#: mod/photos.php:1540 msgid "Private photo" msgstr "Prywatne zdjęcie." -#: ../../mod/photos.php:1522 +#: mod/photos.php:1541 msgid "Public photo" msgstr "Zdjęcie publiczne" -#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 +#: mod/photos.php:1563 include/conversation.php:1055 msgid "Share" msgstr "Podziel się" -#: ../../mod/photos.php:1817 -msgid "Recent Photos" -msgstr "Ostatnio dodane zdjęcia" +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" -#: ../../mod/regmod.php:55 +#: mod/regmod.php:55 msgid "Account approved." msgstr "Konto zatwierdzone." -#: ../../mod/regmod.php:92 +#: mod/regmod.php:92 #, php-format msgid "Registration revoked for %s" msgstr "Rejestracja dla %s odwołana" -#: ../../mod/regmod.php:104 +#: mod/regmod.php:104 msgid "Please login." msgstr "Proszę się zalogować." -#: ../../mod/uimport.php:66 +#: mod/uimport.php:66 msgid "Move account" msgstr "Przenieś konto" -#: ../../mod/uimport.php:67 +#: mod/uimport.php:67 msgid "You can import an account from another Friendica server." msgstr "" -#: ../../mod/uimport.php:68 +#: mod/uimport.php:68 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: ../../mod/uimport.php:69 +#: mod/uimport.php:69 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (statusnet/identi.ca) or from Diaspora" msgstr "" -#: ../../mod/uimport.php:70 +#: mod/uimport.php:70 msgid "Account file" msgstr "" -#: ../../mod/uimport.php:70 +#: mod/uimport.php:70 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" -#: ../../mod/attach.php:8 +#: mod/attach.php:8 msgid "Item not available." msgstr "Element nie dostępny." -#: ../../mod/attach.php:20 +#: mod/attach.php:20 msgid "Item was not found." msgstr "Element nie znaleziony." -#: ../../boot.php:749 +#: boot.php:763 msgid "Delete this item?" msgstr "Usunąć ten element?" -#: ../../boot.php:752 +#: boot.php:766 msgid "show fewer" msgstr "Pokaż mniej" -#: ../../boot.php:1122 +#: boot.php:1140 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1240 +#: boot.php:1247 msgid "Create a New Account" msgstr "Załóż nowe konto" -#: ../../boot.php:1265 ../../include/nav.php:73 +#: boot.php:1272 include/nav.php:73 msgid "Logout" msgstr "Wyloguj się" -#: ../../boot.php:1268 +#: boot.php:1275 msgid "Nickname or Email address: " msgstr "Nick lub adres email:" -#: ../../boot.php:1269 +#: boot.php:1276 msgid "Password: " msgstr "Hasło:" -#: ../../boot.php:1270 +#: boot.php:1277 msgid "Remember me" msgstr "Zapamiętaj mnie" -#: ../../boot.php:1273 +#: boot.php:1280 msgid "Or login using OpenID: " msgstr "Lub zaloguj się korzystając z OpenID:" -#: ../../boot.php:1279 +#: boot.php:1286 msgid "Forgot your password?" msgstr "Zapomniałeś swojego hasła?" -#: ../../boot.php:1282 +#: boot.php:1289 msgid "Website Terms of Service" msgstr "" -#: ../../boot.php:1283 +#: boot.php:1290 msgid "terms of service" msgstr "warunki użytkowania" -#: ../../boot.php:1285 +#: boot.php:1292 msgid "Website Privacy Policy" msgstr "" -#: ../../boot.php:1286 +#: boot.php:1293 msgid "privacy policy" msgstr "polityka prywatności" -#: ../../boot.php:1419 -msgid "Requested account is not available." -msgstr "" - -#: ../../boot.php:1501 ../../boot.php:1635 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Edytuj profil" - -#: ../../boot.php:1600 -msgid "Message" -msgstr "Wiadomość" - -#: ../../boot.php:1606 ../../include/nav.php:175 -msgid "Profiles" -msgstr "Profile" - -#: ../../boot.php:1606 -msgid "Manage/edit profiles" -msgstr "Zarządzaj profilami" - -#: ../../boot.php:1706 -msgid "Network:" -msgstr "" - -#: ../../boot.php:1736 ../../boot.php:1822 -msgid "g A l F d" -msgstr "g A I F d" - -#: ../../boot.php:1737 ../../boot.php:1823 -msgid "F d" -msgstr "" - -#: ../../boot.php:1782 ../../boot.php:1863 -msgid "[today]" -msgstr "[dziś]" - -#: ../../boot.php:1794 -msgid "Birthday Reminders" -msgstr "Przypomnienia o urodzinach" - -#: ../../boot.php:1795 -msgid "Birthdays this week:" -msgstr "Urodziny w tym tygodniu:" - -#: ../../boot.php:1856 -msgid "[No description]" -msgstr "[Brak opisu]" - -#: ../../boot.php:1874 -msgid "Event Reminders" -msgstr "Przypominacze wydarzeń" - -#: ../../boot.php:1875 -msgid "Events this week:" -msgstr "Wydarzenia w tym tygodniu:" - -#: ../../boot.php:2112 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: ../../boot.php:2115 -msgid "Status Messages and Posts" -msgstr "Status wiadomości i postów" - -#: ../../boot.php:2122 -msgid "Profile Details" -msgstr "Szczegóły profilu" - -#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 -msgid "Videos" -msgstr "Filmy" - -#: ../../boot.php:2146 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" - -#: ../../boot.php:2153 -msgid "Only You Can See This" -msgstr "Tylko ty możesz to zobaczyć" - -#: ../../object/Item.php:94 +#: object/Item.php:95 msgid "This entry was edited" msgstr "Ten wpis został zedytowany" -#: ../../object/Item.php:208 +#: object/Item.php:209 msgid "ignore thread" msgstr "" -#: ../../object/Item.php:209 +#: object/Item.php:210 msgid "unignore thread" msgstr "" -#: ../../object/Item.php:210 +#: object/Item.php:211 msgid "toggle ignore status" msgstr "" -#: ../../object/Item.php:213 +#: object/Item.php:214 msgid "ignored" msgstr "" -#: ../../object/Item.php:316 ../../include/conversation.php:666 +#: object/Item.php:318 include/conversation.php:665 msgid "Categories:" msgstr "Kategorie:" -#: ../../object/Item.php:317 ../../include/conversation.php:667 +#: object/Item.php:319 include/conversation.php:666 msgid "Filed under:" msgstr "Zapisano pod:" -#: ../../object/Item.php:329 +#: object/Item.php:331 msgid "via" msgstr "przez" -#: ../../include/dbstructure.php:26 +#: include/dbstructure.php:26 #, php-format msgid "" "\n" @@ -5734,48 +5849,48 @@ msgid "" "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: ../../include/dbstructure.php:31 +#: include/dbstructure.php:31 #, php-format msgid "" "The error message is\n" "[pre]%s[/pre]" msgstr "" -#: ../../include/dbstructure.php:162 +#: include/dbstructure.php:152 msgid "Errors encountered creating database tables." msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych." -#: ../../include/dbstructure.php:220 +#: include/dbstructure.php:210 msgid "Errors encountered performing database changes." msgstr "" -#: ../../include/auth.php:38 +#: include/auth.php:38 msgid "Logged out." msgstr "Wyloguj" -#: ../../include/auth.php:128 ../../include/user.php:67 +#: include/auth.php:128 include/user.php:75 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: ../../include/auth.php:128 ../../include/user.php:67 +#: include/auth.php:128 include/user.php:75 msgid "The error message was:" msgstr "Komunikat o błędzie:" -#: ../../include/contact_widgets.php:6 +#: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Dodaj nowy kontakt" -#: ../../include/contact_widgets.php:7 +#: include/contact_widgets.php:7 msgid "Enter address or web location" msgstr "Wpisz adres lub lokalizację sieciową" -#: ../../include/contact_widgets.php:8 +#: include/contact_widgets.php:8 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" -#: ../../include/contact_widgets.php:24 +#: include/contact_widgets.php:24 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -5783,619 +5898,768 @@ msgstr[0] "%d zaproszenie dostępne" msgstr[1] "%d zaproszeń dostępnych" msgstr[2] "%d zaproszenia dostępne" -#: ../../include/contact_widgets.php:30 +#: include/contact_widgets.php:30 msgid "Find People" msgstr "Znajdź ludzi" -#: ../../include/contact_widgets.php:31 +#: include/contact_widgets.php:31 msgid "Enter name or interest" msgstr "Wpisz nazwę lub zainteresowanie" -#: ../../include/contact_widgets.php:32 +#: include/contact_widgets.php:32 msgid "Connect/Follow" msgstr "Połącz/Obserwuj" -#: ../../include/contact_widgets.php:33 +#: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Przykładowo: Jan Kowalski, Wędkarstwo" -#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 msgid "Similar Interests" msgstr "Podobne zainteresowania" -#: ../../include/contact_widgets.php:37 +#: include/contact_widgets.php:37 msgid "Random Profile" msgstr "Domyślny profil" -#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 msgid "Invite Friends" msgstr "Zaproś znajomych" -#: ../../include/contact_widgets.php:71 +#: include/contact_widgets.php:71 msgid "Networks" msgstr "Sieci" -#: ../../include/contact_widgets.php:74 +#: include/contact_widgets.php:74 msgid "All Networks" msgstr "Wszystkie Sieci" -#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +#: include/contact_widgets.php:104 include/features.php:60 msgid "Saved Folders" msgstr "Zapisane foldery" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +#: include/contact_widgets.php:107 include/contact_widgets.php:139 msgid "Everything" msgstr "Wszystko" -#: ../../include/contact_widgets.php:136 +#: include/contact_widgets.php:136 msgid "Categories" msgstr "Kategorie" -#: ../../include/features.php:23 +#: include/features.php:23 msgid "General Features" msgstr "" -#: ../../include/features.php:25 +#: include/features.php:25 msgid "Multiple Profiles" msgstr "" -#: ../../include/features.php:25 +#: include/features.php:25 msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/features.php:30 +#: include/features.php:30 msgid "Post Composition Features" msgstr "" -#: ../../include/features.php:31 +#: include/features.php:31 msgid "Richtext Editor" msgstr "" -#: ../../include/features.php:31 +#: include/features.php:31 msgid "Enable richtext editor" msgstr "" -#: ../../include/features.php:32 +#: include/features.php:32 msgid "Post Preview" msgstr "Podgląd posta" -#: ../../include/features.php:32 +#: include/features.php:32 msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:33 +#: include/features.php:33 msgid "Auto-mention Forums" msgstr "" -#: ../../include/features.php:33 +#: include/features.php:33 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: ../../include/features.php:38 +#: include/features.php:38 msgid "Network Sidebar Widgets" msgstr "" -#: ../../include/features.php:39 +#: include/features.php:39 msgid "Search by Date" msgstr "Szukanie wg daty" -#: ../../include/features.php:39 +#: include/features.php:39 msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/features.php:40 +#: include/features.php:40 msgid "Group Filter" msgstr "Filtrowanie grupowe" -#: ../../include/features.php:40 +#: include/features.php:40 msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: ../../include/features.php:41 +#: include/features.php:41 msgid "Network Filter" msgstr "" -#: ../../include/features.php:41 +#: include/features.php:41 msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: ../../include/features.php:42 +#: include/features.php:42 msgid "Save search terms for re-use" msgstr "" -#: ../../include/features.php:47 +#: include/features.php:47 msgid "Network Tabs" msgstr "" -#: ../../include/features.php:48 +#: include/features.php:48 msgid "Network Personal Tab" msgstr "" -#: ../../include/features.php:48 +#: include/features.php:48 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/features.php:49 +#: include/features.php:49 msgid "Network New Tab" msgstr "" -#: ../../include/features.php:49 +#: include/features.php:49 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: ../../include/features.php:50 +#: include/features.php:50 msgid "Network Shared Links Tab" msgstr "" -#: ../../include/features.php:50 +#: include/features.php:50 msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: ../../include/features.php:55 +#: include/features.php:55 msgid "Post/Comment Tools" msgstr "" -#: ../../include/features.php:56 +#: include/features.php:56 msgid "Multiple Deletion" msgstr "" -#: ../../include/features.php:56 +#: include/features.php:56 msgid "Select and delete multiple posts/comments at once" msgstr "" -#: ../../include/features.php:57 +#: include/features.php:57 msgid "Edit Sent Posts" msgstr "" -#: ../../include/features.php:57 +#: include/features.php:57 msgid "Edit and correct posts and comments after sending" msgstr "" -#: ../../include/features.php:58 +#: include/features.php:58 msgid "Tagging" msgstr "Oznaczanie" -#: ../../include/features.php:58 +#: include/features.php:58 msgid "Ability to tag existing posts" msgstr "" -#: ../../include/features.php:59 +#: include/features.php:59 msgid "Post Categories" -msgstr "" +msgstr "Kategorie postów" -#: ../../include/features.php:59 +#: include/features.php:59 msgid "Add categories to your posts" msgstr "Dodaj kategorie do twoich postów" -#: ../../include/features.php:60 +#: include/features.php:60 msgid "Ability to file posts under folders" msgstr "" -#: ../../include/features.php:61 +#: include/features.php:61 msgid "Dislike Posts" msgstr "" -#: ../../include/features.php:61 +#: include/features.php:61 msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/features.php:62 +#: include/features.php:62 msgid "Star Posts" msgstr "Oznacz posty gwiazdką" -#: ../../include/features.php:62 +#: include/features.php:62 msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/features.php:63 +#: include/features.php:63 msgid "Mute Post Notifications" msgstr "" -#: ../../include/features.php:63 +#: include/features.php:63 msgid "Ability to mute notifications for a thread" msgstr "" -#: ../../include/follow.php:32 +#: include/follow.php:75 msgid "Connect URL missing." msgstr "Brak adresu URL połączenia." -#: ../../include/follow.php:59 +#: include/follow.php:102 msgid "" "This site is not configured to allow communications with other networks." msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" -#: ../../include/follow.php:60 ../../include/follow.php:80 +#: include/follow.php:103 include/follow.php:123 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: ../../include/follow.php:78 +#: include/follow.php:121 msgid "The profile address specified does not provide adequate information." msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." -#: ../../include/follow.php:82 +#: include/follow.php:125 msgid "An author or name was not found." msgstr "Autor lub nazwa nie zostało znalezione." -#: ../../include/follow.php:84 +#: include/follow.php:127 msgid "No browser URL could be matched to this address." msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" -#: ../../include/follow.php:86 +#: include/follow.php:129 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: ../../include/follow.php:87 +#: include/follow.php:130 msgid "Use mailto: in front of address to force email check." msgstr "" -#: ../../include/follow.php:93 +#: include/follow.php:136 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." -#: ../../include/follow.php:103 +#: include/follow.php:146 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." -#: ../../include/follow.php:205 +#: include/follow.php:249 msgid "Unable to retrieve contact information." msgstr "Nie można otrzymać informacji kontaktowych" -#: ../../include/follow.php:258 +#: include/follow.php:302 msgid "following" msgstr "następujący" -#: ../../include/group.php:25 +#: include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " "may apply to this group and any future members. If this is " "not what you intended, please create another group with a different name." msgstr "" -#: ../../include/group.php:207 +#: include/group.php:207 msgid "Default privacy group for new contacts" msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" -#: ../../include/group.php:226 +#: include/group.php:226 msgid "Everybody" msgstr "Wszyscy" -#: ../../include/group.php:249 +#: include/group.php:249 msgid "edit" msgstr "edytuj" -#: ../../include/group.php:271 +#: include/group.php:271 msgid "Edit group" msgstr "Edytuj grupy" -#: ../../include/group.php:272 +#: include/group.php:272 msgid "Create a new group" msgstr "Stwórz nową grupę" -#: ../../include/group.php:273 +#: include/group.php:275 msgid "Contacts not in any group" msgstr "Kontakt nie jest w żadnej grupie" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 +#: include/datetime.php:43 include/datetime.php:45 msgid "Miscellaneous" msgstr "Różny" -#: ../../include/datetime.php:153 ../../include/datetime.php:290 -msgid "year" -msgstr "rok" +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" -#: ../../include/datetime.php:158 ../../include/datetime.php:291 -msgid "month" -msgstr "miesiąc" - -#: ../../include/datetime.php:163 ../../include/datetime.php:293 -msgid "day" -msgstr "dzień" - -#: ../../include/datetime.php:276 +#: include/datetime.php:256 msgid "never" msgstr "nigdy" -#: ../../include/datetime.php:282 +#: include/datetime.php:262 msgid "less than a second ago" msgstr "mniej niż sekundę temu" -#: ../../include/datetime.php:290 +#: include/datetime.php:272 +msgid "year" +msgstr "rok" + +#: include/datetime.php:272 msgid "years" msgstr "lata" -#: ../../include/datetime.php:291 +#: include/datetime.php:273 +msgid "month" +msgstr "miesiąc" + +#: include/datetime.php:273 msgid "months" msgstr "miesiące" -#: ../../include/datetime.php:292 +#: include/datetime.php:274 msgid "week" msgstr "tydzień" -#: ../../include/datetime.php:292 +#: include/datetime.php:274 msgid "weeks" msgstr "tygodnie" -#: ../../include/datetime.php:293 +#: include/datetime.php:275 +msgid "day" +msgstr "dzień" + +#: include/datetime.php:275 msgid "days" msgstr "dni" -#: ../../include/datetime.php:294 +#: include/datetime.php:276 msgid "hour" msgstr "godzina" -#: ../../include/datetime.php:294 +#: include/datetime.php:276 msgid "hours" msgstr "godziny" -#: ../../include/datetime.php:295 +#: include/datetime.php:277 msgid "minute" msgstr "minuta" -#: ../../include/datetime.php:295 +#: include/datetime.php:277 msgid "minutes" msgstr "minuty" -#: ../../include/datetime.php:296 +#: include/datetime.php:278 msgid "second" msgstr "sekunda" -#: ../../include/datetime.php:296 +#: include/datetime.php:278 msgid "seconds" msgstr "sekundy" -#: ../../include/datetime.php:305 +#: include/datetime.php:287 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s temu" -#: ../../include/datetime.php:477 ../../include/items.php:2211 +#: include/datetime.php:459 include/items.php:2432 #, php-format msgid "%s's birthday" msgstr "Urodziny %s" -#: ../../include/datetime.php:478 ../../include/items.php:2212 +#: include/datetime.php:460 include/items.php:2433 #, php-format msgid "Happy Birthday %s" msgstr "Urodziny %s" -#: ../../include/acl_selectors.php:333 +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +msgid "Edit profile" +msgstr "Edytuj profil" + +#: include/identity.php:220 +msgid "Message" +msgstr "Wiadomość" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profile" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Zarządzaj profilami" + +#: include/identity.php:341 +msgid "Network:" +msgstr "" + +#: include/identity.php:373 include/identity.php:459 +msgid "g A l F d" +msgstr "g A I F d" + +#: include/identity.php:374 include/identity.php:460 +msgid "F d" +msgstr "" + +#: include/identity.php:419 include/identity.php:506 +msgid "[today]" +msgstr "[dziś]" + +#: include/identity.php:431 +msgid "Birthday Reminders" +msgstr "Przypomnienia o urodzinach" + +#: include/identity.php:432 +msgid "Birthdays this week:" +msgstr "Urodziny w tym tygodniu:" + +#: include/identity.php:493 +msgid "[No description]" +msgstr "[Brak opisu]" + +#: include/identity.php:517 +msgid "Event Reminders" +msgstr "Przypominacze wydarzeń" + +#: include/identity.php:518 +msgid "Events this week:" +msgstr "Wydarzenia w tym tygodniu:" + +#: include/identity.php:545 +msgid "j F, Y" +msgstr "d M, R" + +#: include/identity.php:546 +msgid "j F" +msgstr "d M" + +#: include/identity.php:553 +msgid "Birthday:" +msgstr "Urodziny:" + +#: include/identity.php:557 +msgid "Age:" +msgstr "Wiek:" + +#: include/identity.php:566 +#, php-format +msgid "for %1$d %2$s" +msgstr "od %1$d %2$s" + +#: include/identity.php:579 +msgid "Religion:" +msgstr "Religia:" + +#: include/identity.php:583 +msgid "Hobbies/Interests:" +msgstr "Hobby/Zainteresowania:" + +#: include/identity.php:590 +msgid "Contact information and Social Networks:" +msgstr "Informacje kontaktowe i sieci społeczne" + +#: include/identity.php:592 +msgid "Musical interests:" +msgstr "Zainteresowania muzyczne:" + +#: include/identity.php:594 +msgid "Books, literature:" +msgstr "Książki, literatura:" + +#: include/identity.php:596 +msgid "Television:" +msgstr "Telewizja:" + +#: include/identity.php:598 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/taniec/kultura/rozrywka" + +#: include/identity.php:600 +msgid "Love/Romance:" +msgstr "Miłość/Romans:" + +#: include/identity.php:602 +msgid "Work/employment:" +msgstr "Praca/zatrudnienie:" + +#: include/identity.php:604 +msgid "School/education:" +msgstr "Szkoła/edukacja:" + +#: include/identity.php:632 include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: include/identity.php:635 +msgid "Status Messages and Posts" +msgstr "Status wiadomości i postów" + +#: include/identity.php:643 +msgid "Profile Details" +msgstr "Szczegóły profilu" + +#: include/identity.php:656 include/identity.php:659 include/nav.php:79 +msgid "Videos" +msgstr "Filmy" + +#: include/identity.php:670 +msgid "Events and Calendar" +msgstr "Wydarzenia i kalendarz" + +#: include/identity.php:678 +msgid "Only You Can See This" +msgstr "Tylko ty możesz to zobaczyć" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Wyślij poprzez email" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:335 msgid "Visible to everybody" msgstr "Widoczny dla wszystkich" -#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 msgid "show" msgstr "pokaż" -#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 msgid "don't show" msgstr "nie pokazuj" -#: ../../include/message.php:15 ../../include/message.php:172 +#: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "[bez tematu]" -#: ../../include/Contact.php:115 +#: include/Contact.php:119 msgid "stopped following" msgstr "przestań obserwować" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 +#: include/Contact.php:232 include/conversation.php:881 msgid "Poke" msgstr "Zaczepka" -#: ../../include/Contact.php:229 ../../include/conversation.php:876 +#: include/Contact.php:233 include/conversation.php:875 msgid "View Status" msgstr "Zobacz status" -#: ../../include/Contact.php:230 ../../include/conversation.php:877 +#: include/Contact.php:234 include/conversation.php:876 msgid "View Profile" msgstr "Zobacz profil" -#: ../../include/Contact.php:231 ../../include/conversation.php:878 +#: include/Contact.php:235 include/conversation.php:877 msgid "View Photos" msgstr "Zobacz zdjęcia" -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 +#: include/Contact.php:236 include/Contact.php:259 +#: include/conversation.php:878 msgid "Network Posts" msgstr "" -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 +#: include/Contact.php:237 include/Contact.php:259 +#: include/conversation.php:879 msgid "Edit Contact" msgstr "Edytuj kontakt" -#: ../../include/Contact.php:234 +#: include/Contact.php:238 msgid "Drop Contact" msgstr "" -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 +#: include/Contact.php:239 include/Contact.php:259 +#: include/conversation.php:880 msgid "Send PM" msgstr "Wyślij prywatną wiadomość" -#: ../../include/security.php:22 +#: include/security.php:22 msgid "Welcome " msgstr "Witaj " -#: ../../include/security.php:23 +#: include/security.php:23 msgid "Please upload a profile photo." msgstr "Proszę dodać zdjęcie profilowe." -#: ../../include/security.php:26 +#: include/security.php:26 msgid "Welcome back " msgstr "Witaj ponownie " -#: ../../include/security.php:366 +#: include/security.php:375 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/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2032 view/theme/diabook/theme.php:463 msgid "event" msgstr "wydarzenie" -#: ../../include/conversation.php:207 +#: include/conversation.php:206 #, php-format msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:211 ../../include/text.php:1005 -msgid "poked" -msgstr "zaczepiony" - -#: ../../include/conversation.php:291 +#: include/conversation.php:290 msgid "post/item" msgstr "" -#: ../../include/conversation.php:292 +#: include/conversation.php:291 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: ../../include/conversation.php:772 +#: include/conversation.php:771 msgid "remove" msgstr "usuń" -#: ../../include/conversation.php:776 +#: include/conversation.php:775 msgid "Delete Selected Items" msgstr "Usuń zaznaczone elementy" -#: ../../include/conversation.php:875 +#: include/conversation.php:874 msgid "Follow Thread" msgstr "Śledź wątek" -#: ../../include/conversation.php:944 +#: include/conversation.php:943 #, php-format msgid "%s likes this." msgstr "%s lubi to." -#: ../../include/conversation.php:944 +#: include/conversation.php:943 #, php-format msgid "%s doesn't like this." msgstr "%s nie lubi tego." -#: ../../include/conversation.php:949 +#: include/conversation.php:948 #, php-format msgid "%2$d people like this" msgstr "" -#: ../../include/conversation.php:952 +#: include/conversation.php:951 #, php-format msgid "%2$d people don't like this" msgstr "" -#: ../../include/conversation.php:966 +#: include/conversation.php:965 msgid "and" msgstr "i" -#: ../../include/conversation.php:972 +#: include/conversation.php:971 #, php-format msgid ", and %d other people" msgstr ", i %d innych ludzi" -#: ../../include/conversation.php:974 +#: include/conversation.php:973 #, php-format msgid "%s like this." msgstr "%s lubi to." -#: ../../include/conversation.php:974 +#: include/conversation.php:973 #, php-format msgid "%s don't like this." msgstr "%s nie lubi tego." -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +#: include/conversation.php:1000 include/conversation.php:1018 msgid "Visible to everybody" msgstr "Widoczne dla wszystkich" -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +#: include/conversation.php:1002 include/conversation.php:1020 msgid "Please enter a video link/URL:" msgstr "Podaj link do filmu" -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +#: include/conversation.php:1003 include/conversation.php:1021 msgid "Please enter an audio link/URL:" msgstr "Podaj link do muzyki" -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +#: include/conversation.php:1004 include/conversation.php:1022 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +#: include/conversation.php:1006 include/conversation.php:1024 msgid "Where are you right now?" msgstr "Gdzie teraz jesteś?" -#: ../../include/conversation.php:1008 +#: include/conversation.php:1007 msgid "Delete item(s)?" msgstr "Usunąć pozycję (pozycje)?" -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Wyślij poprzez email" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1111 +#: include/conversation.php:1076 msgid "permissions" msgstr "zezwolenia" -#: ../../include/conversation.php:1135 +#: include/conversation.php:1099 msgid "Post to Groups" msgstr "Wstaw na strony grup" -#: ../../include/conversation.php:1136 +#: include/conversation.php:1100 msgid "Post to Contacts" msgstr "Wstaw do kontaktów" -#: ../../include/conversation.php:1137 +#: include/conversation.php:1101 msgid "Private post" msgstr "Prywatne posty" -#: ../../include/network.php:895 +#: include/network.php:959 msgid "view full size" msgstr "Zobacz w pełnym wymiarze" -#: ../../include/text.php:297 +#: include/text.php:299 msgid "newer" msgstr "nowsze" -#: ../../include/text.php:299 +#: include/text.php:301 msgid "older" msgstr "starsze" -#: ../../include/text.php:304 +#: include/text.php:306 msgid "prev" msgstr "poprzedni" -#: ../../include/text.php:306 +#: include/text.php:308 msgid "first" msgstr "pierwszy" -#: ../../include/text.php:338 +#: include/text.php:340 msgid "last" msgstr "ostatni" -#: ../../include/text.php:341 +#: include/text.php:343 msgid "next" msgstr "następny" -#: ../../include/text.php:855 +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:399 +msgid "The end" +msgstr "" + +#: include/text.php:890 msgid "No contacts" msgstr "Brak kontaktów" -#: ../../include/text.php:864 +#: include/text.php:905 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -6403,715 +6667,667 @@ msgstr[0] "%d kontakt" msgstr[1] "%d kontaktów" msgstr[2] "%d kontakty" -#: ../../include/text.php:1005 +#: include/text.php:1003 include/nav.php:122 +msgid "Full Text" +msgstr "" + +#: include/text.php:1004 include/nav.php:123 +msgid "Tags" +msgstr "" + +#: include/text.php:1008 include/nav.php:127 +msgid "Forums" +msgstr "" + +#: include/text.php:1058 msgid "poke" msgstr "zaczep" -#: ../../include/text.php:1006 +#: include/text.php:1058 +msgid "poked" +msgstr "zaczepiony" + +#: include/text.php:1059 msgid "ping" msgstr "ping" -#: ../../include/text.php:1006 +#: include/text.php:1059 msgid "pinged" msgstr "" -#: ../../include/text.php:1007 +#: include/text.php:1060 msgid "prod" msgstr "" -#: ../../include/text.php:1007 +#: include/text.php:1060 msgid "prodded" msgstr "" -#: ../../include/text.php:1008 +#: include/text.php:1061 msgid "slap" msgstr "spoliczkuj" -#: ../../include/text.php:1008 +#: include/text.php:1061 msgid "slapped" msgstr "spoliczkowany" -#: ../../include/text.php:1009 +#: include/text.php:1062 msgid "finger" msgstr "dotknąć" -#: ../../include/text.php:1009 +#: include/text.php:1062 msgid "fingered" msgstr "dotknięty" -#: ../../include/text.php:1010 +#: include/text.php:1063 msgid "rebuff" msgstr "odprawiać" -#: ../../include/text.php:1010 +#: include/text.php:1063 msgid "rebuffed" msgstr "odprawiony" -#: ../../include/text.php:1024 +#: include/text.php:1077 msgid "happy" msgstr "szczęśliwy" -#: ../../include/text.php:1025 +#: include/text.php:1078 msgid "sad" msgstr "smutny" -#: ../../include/text.php:1026 +#: include/text.php:1079 msgid "mellow" msgstr "spokojny" -#: ../../include/text.php:1027 +#: include/text.php:1080 msgid "tired" msgstr "zmęczony" -#: ../../include/text.php:1028 +#: include/text.php:1081 msgid "perky" msgstr "pewny siebie" -#: ../../include/text.php:1029 +#: include/text.php:1082 msgid "angry" msgstr "wściekły" -#: ../../include/text.php:1030 +#: include/text.php:1083 msgid "stupified" msgstr "odurzony" -#: ../../include/text.php:1031 +#: include/text.php:1084 msgid "puzzled" msgstr "zdziwiony" -#: ../../include/text.php:1032 +#: include/text.php:1085 msgid "interested" msgstr "interesujący" -#: ../../include/text.php:1033 +#: include/text.php:1086 msgid "bitter" msgstr "zajadły" -#: ../../include/text.php:1034 +#: include/text.php:1087 msgid "cheerful" msgstr "wesoły" -#: ../../include/text.php:1035 +#: include/text.php:1088 msgid "alive" msgstr "żywy" -#: ../../include/text.php:1036 +#: include/text.php:1089 msgid "annoyed" msgstr "irytujący" -#: ../../include/text.php:1037 +#: include/text.php:1090 msgid "anxious" msgstr "zazdrosny" -#: ../../include/text.php:1038 +#: include/text.php:1091 msgid "cranky" msgstr "zepsuty" -#: ../../include/text.php:1039 +#: include/text.php:1092 msgid "disturbed" msgstr "przeszkadzający" -#: ../../include/text.php:1040 +#: include/text.php:1093 msgid "frustrated" msgstr "rozbity" -#: ../../include/text.php:1041 +#: include/text.php:1094 msgid "motivated" msgstr "zmotywowany" -#: ../../include/text.php:1042 +#: include/text.php:1095 msgid "relaxed" msgstr "zrelaksowany" -#: ../../include/text.php:1043 +#: include/text.php:1096 msgid "surprised" msgstr "zaskoczony" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Monday" msgstr "Poniedziałek" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Tuesday" msgstr "Wtorek" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Wednesday" msgstr "Środa" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Thursday" msgstr "Czwartek" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Friday" msgstr "Piątek" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Saturday" msgstr "Sobota" -#: ../../include/text.php:1213 +#: include/text.php:1266 msgid "Sunday" msgstr "Niedziela" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "January" msgstr "Styczeń" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "February" msgstr "Luty" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "March" msgstr "Marzec" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "April" msgstr "Kwiecień" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "May" msgstr "Maj" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "June" msgstr "Czerwiec" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "July" msgstr "Lipiec" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "August" msgstr "Sierpień" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "September" msgstr "Wrzesień" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "October" msgstr "Październik" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "November" msgstr "Listopad" -#: ../../include/text.php:1217 +#: include/text.php:1270 msgid "December" msgstr "Grudzień" -#: ../../include/text.php:1437 +#: include/text.php:1492 msgid "bytes" msgstr "bajty" -#: ../../include/text.php:1461 ../../include/text.php:1473 +#: include/text.php:1524 include/text.php:1536 msgid "Click to open/close" msgstr "Kliknij aby otworzyć/zamknąć" -#: ../../include/text.php:1702 ../../include/user.php:247 -#: ../../view/theme/duepuntozero/config.php:44 +#: include/text.php:1710 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1711 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1768 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 msgid "default" msgstr "standardowe" -#: ../../include/text.php:1714 +#: include/text.php:1780 msgid "Select an alternate language" msgstr "Wybierz alternatywny język" -#: ../../include/text.php:1970 +#: include/text.php:2036 msgid "activity" msgstr "aktywność" -#: ../../include/text.php:1973 +#: include/text.php:2039 msgid "post" msgstr "post" -#: ../../include/text.php:2141 +#: include/text.php:2207 msgid "Item filed" msgstr "" -#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 -#: ../../include/bbcode.php:1048 +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 msgid "Image/photo" msgstr "Obrazek/zdjęcie" -#: ../../include/bbcode.php:528 +#: include/bbcode.php:556 #, php-format msgid "%2$s %3$s" msgstr "" -#: ../../include/bbcode.php:562 +#: include/bbcode.php:590 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 +#: include/bbcode.php:1076 include/bbcode.php:1096 msgid "$1 wrote:" msgstr "$1 napisał:" -#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 +#: include/bbcode.php:1121 include/bbcode.php:1122 msgid "Encrypted content" msgstr "Szyfrowana treść" -#: ../../include/notifier.php:786 ../../include/delivery.php:456 +#: include/notifier.php:830 include/delivery.php:456 msgid "(no subject)" msgstr "(bez tematu)" -#: ../../include/notifier.php:796 ../../include/delivery.php:467 -#: ../../include/enotify.php:33 +#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 msgid "noreply" msgstr "brak odpowiedzi" -#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'" -#: ../../include/contact_selectors.php:32 +#: include/contact_selectors.php:32 msgid "Unknown | Not categorised" msgstr "Nieznany | Bez kategori" -#: ../../include/contact_selectors.php:33 +#: include/contact_selectors.php:33 msgid "Block immediately" msgstr "Zablokować natychmiast " -#: ../../include/contact_selectors.php:34 +#: include/contact_selectors.php:34 msgid "Shady, spammer, self-marketer" msgstr "" -#: ../../include/contact_selectors.php:35 +#: include/contact_selectors.php:35 msgid "Known to me, but no opinion" msgstr "Znam, ale nie mam zdania" -#: ../../include/contact_selectors.php:36 +#: include/contact_selectors.php:36 msgid "OK, probably harmless" msgstr "Ok, bez problemów" -#: ../../include/contact_selectors.php:37 +#: include/contact_selectors.php:37 msgid "Reputable, has my trust" msgstr "Zaufane, ma moje poparcie" -#: ../../include/contact_selectors.php:60 +#: include/contact_selectors.php:60 msgid "Weekly" msgstr "Tygodniowo" -#: ../../include/contact_selectors.php:61 +#: include/contact_selectors.php:61 msgid "Monthly" msgstr "Miesięcznie" -#: ../../include/contact_selectors.php:77 +#: include/contact_selectors.php:77 msgid "OStatus" msgstr "OStatus" -#: ../../include/contact_selectors.php:78 +#: include/contact_selectors.php:78 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:82 +#: include/contact_selectors.php:82 msgid "Zot!" msgstr "" -#: ../../include/contact_selectors.php:83 +#: include/contact_selectors.php:83 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/contact_selectors.php:84 +#: include/contact_selectors.php:84 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/contact_selectors.php:85 +#: include/contact_selectors.php:85 msgid "MySpace" msgstr "MySpace" -#: ../../include/contact_selectors.php:87 +#: include/contact_selectors.php:87 msgid "Google+" msgstr "Google+" -#: ../../include/contact_selectors.php:88 +#: include/contact_selectors.php:88 msgid "pump.io" msgstr "" -#: ../../include/contact_selectors.php:89 +#: include/contact_selectors.php:89 msgid "Twitter" msgstr "" -#: ../../include/contact_selectors.php:90 +#: include/contact_selectors.php:90 msgid "Diaspora Connector" msgstr "" -#: ../../include/contact_selectors.php:91 +#: include/contact_selectors.php:91 msgid "Statusnet" msgstr "" -#: ../../include/contact_selectors.php:92 +#: include/contact_selectors.php:92 msgid "App.net" msgstr "" -#: ../../include/Scrape.php:614 +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "" + +#: include/Scrape.php:603 msgid " on Last.fm" msgstr "na Last.fm" -#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +#: include/bb2diaspora.php:154 include/event.php:22 msgid "Starts:" msgstr "Start:" -#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +#: include/bb2diaspora.php:162 include/event.php:32 msgid "Finishes:" msgstr "Wykończenia:" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "d M, R" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "d M" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Urodziny:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Wiek:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "od %1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tagi:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religia:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Zainteresowania:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informacje kontaktowe i sieci społeczne" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Zainteresowania muzyczne:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Książki, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Telewizja:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/taniec/kultura/rozrywka" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Miłość/Romans:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Praca/zatrudnienie:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Szkoła/edukacja:" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 +#: include/plugin.php:458 include/plugin.php:460 msgid "Click here to upgrade." msgstr "Kliknij tu, aby zaktualizować." -#: ../../include/plugin.php:463 +#: include/plugin.php:466 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/plugin.php:468 +#: include/plugin.php:471 msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/nav.php:73 +#: include/nav.php:73 msgid "End this session" msgstr "Zakończ sesję" -#: ../../include/nav.php:76 ../../include/nav.php:148 -#: ../../view/theme/diabook/theme.php:123 +#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 msgid "Your posts and conversations" msgstr "Twoje posty i rozmowy" -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +#: include/nav.php:77 view/theme/diabook/theme.php:124 msgid "Your profile page" msgstr "Twoja strona profilowa" -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 +#: include/nav.php:78 view/theme/diabook/theme.php:126 msgid "Your photos" msgstr "Twoje zdjęcia" -#: ../../include/nav.php:79 +#: include/nav.php:79 msgid "Your videos" msgstr "" -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 +#: include/nav.php:80 view/theme/diabook/theme.php:127 msgid "Your events" msgstr "Twoje wydarzenia" -#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 +#: include/nav.php:81 view/theme/diabook/theme.php:128 msgid "Personal notes" msgstr "Osobiste notatki" -#: ../../include/nav.php:81 +#: include/nav.php:81 msgid "Your personal notes" msgstr "" -#: ../../include/nav.php:92 +#: include/nav.php:92 msgid "Sign in" msgstr "Zaloguj się" -#: ../../include/nav.php:105 +#: include/nav.php:105 msgid "Home Page" msgstr "Strona startowa" -#: ../../include/nav.php:109 +#: include/nav.php:109 msgid "Create an account" msgstr "Załóż konto" -#: ../../include/nav.php:114 +#: include/nav.php:114 msgid "Help and documentation" msgstr "Pomoc i dokumentacja" -#: ../../include/nav.php:117 +#: include/nav.php:117 msgid "Apps" msgstr "Aplikacje" -#: ../../include/nav.php:117 +#: include/nav.php:117 msgid "Addon applications, utilities, games" msgstr "Wtyczki, aplikacje, narzędzia, gry" -#: ../../include/nav.php:119 +#: include/nav.php:119 msgid "Search site content" msgstr "Przeszukaj zawartość strony" -#: ../../include/nav.php:129 +#: include/nav.php:137 msgid "Conversations on this site" msgstr "Rozmowy na tej stronie" -#: ../../include/nav.php:131 +#: include/nav.php:139 msgid "Conversations on the network" msgstr "" -#: ../../include/nav.php:133 +#: include/nav.php:141 msgid "Directory" msgstr "Katalog" -#: ../../include/nav.php:133 +#: include/nav.php:141 msgid "People directory" msgstr "" -#: ../../include/nav.php:135 +#: include/nav.php:143 msgid "Information" msgstr "" -#: ../../include/nav.php:135 +#: include/nav.php:143 msgid "Information about this friendica instance" msgstr "" -#: ../../include/nav.php:145 +#: include/nav.php:153 msgid "Conversations from your friends" msgstr "Rozmowy Twoich przyjaciół" -#: ../../include/nav.php:146 +#: include/nav.php:154 msgid "Network Reset" msgstr "" -#: ../../include/nav.php:146 +#: include/nav.php:154 msgid "Load Network page with no filters" msgstr "" -#: ../../include/nav.php:154 +#: include/nav.php:161 msgid "Friend Requests" msgstr "Podania o przyjęcie do grona znajomych" -#: ../../include/nav.php:156 +#: include/nav.php:165 msgid "See all notifications" msgstr "Zobacz wszystkie powiadomienia" -#: ../../include/nav.php:157 +#: include/nav.php:166 msgid "Mark all system notifications seen" msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" -#: ../../include/nav.php:161 +#: include/nav.php:170 msgid "Private mail" msgstr "Prywatne maile" -#: ../../include/nav.php:162 +#: include/nav.php:171 msgid "Inbox" msgstr "Odebrane" -#: ../../include/nav.php:163 +#: include/nav.php:172 msgid "Outbox" msgstr "Wysłane" -#: ../../include/nav.php:167 +#: include/nav.php:176 msgid "Manage" msgstr "Zarządzaj" -#: ../../include/nav.php:167 +#: include/nav.php:176 msgid "Manage other pages" msgstr "Zarządzaj innymi stronami" -#: ../../include/nav.php:172 +#: include/nav.php:181 msgid "Account settings" msgstr "Ustawienia konta" -#: ../../include/nav.php:175 +#: include/nav.php:184 msgid "Manage/Edit Profiles" msgstr "Zarządzaj/Edytuj profile" -#: ../../include/nav.php:177 +#: include/nav.php:186 msgid "Manage/edit friends and contacts" msgstr "Zarządzaj listą przyjaciół i kontaktami" -#: ../../include/nav.php:184 +#: include/nav.php:193 msgid "Site setup and configuration" msgstr "Konfiguracja i ustawienia instancji" -#: ../../include/nav.php:188 +#: include/nav.php:197 msgid "Navigation" msgstr "Nawigacja" -#: ../../include/nav.php:188 +#: include/nav.php:197 msgid "Site map" msgstr "Mapa strony" -#: ../../include/api.php:304 ../../include/api.php:315 -#: ../../include/api.php:416 ../../include/api.php:1063 -#: ../../include/api.php:1065 +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1141 include/api.php:1143 msgid "User not found." msgstr "" -#: ../../include/api.php:771 +#: include/api.php:795 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/api.php:790 +#: include/api.php:814 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/api.php:809 +#: include/api.php:833 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/api.php:1272 +#: include/api.php:1350 msgid "There is no status with this id." msgstr "" -#: ../../include/api.php:1342 +#: include/api.php:1424 msgid "There is no conversation with this id." msgstr "" -#: ../../include/api.php:1614 -msgid "Invalid request." -msgstr "" - -#: ../../include/api.php:1625 +#: include/api.php:1703 msgid "Invalid item." msgstr "" -#: ../../include/api.php:1635 +#: include/api.php:1713 msgid "Invalid action. " msgstr "" -#: ../../include/api.php:1643 +#: include/api.php:1721 msgid "DB error" msgstr "" -#: ../../include/user.php:40 +#: include/user.php:48 msgid "An invitation is required." msgstr "Wymagane zaproszenie." -#: ../../include/user.php:45 +#: include/user.php:53 msgid "Invitation could not be verified." msgstr "Zaproszenie niezweryfikowane." -#: ../../include/user.php:53 +#: include/user.php:61 msgid "Invalid OpenID url" msgstr "Nieprawidłowy adres url OpenID" -#: ../../include/user.php:74 +#: include/user.php:82 msgid "Please enter the required information." msgstr "Wprowadź wymagane informacje" -#: ../../include/user.php:88 +#: include/user.php:96 msgid "Please use a shorter name." msgstr "Użyj dłuższej nazwy." -#: ../../include/user.php:90 +#: include/user.php:98 msgid "Name too short." msgstr "Nazwa jest za krótka." -#: ../../include/user.php:105 +#: include/user.php:113 msgid "That doesn't appear to be your full (First Last) name." msgstr "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)." -#: ../../include/user.php:110 +#: include/user.php:118 msgid "Your email domain is not among those allowed on this site." msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." -#: ../../include/user.php:113 +#: include/user.php:121 msgid "Not a valid email address." msgstr "Niepoprawny adres e mail.." -#: ../../include/user.php:126 +#: include/user.php:134 msgid "Cannot use that email." msgstr "Nie możesz użyć tego e-maila. " -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Twój login może składać się tylko z \"a-z\", \"0-9\", \"-\", \"_\", i musi mieć na początku literę." +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" -#: ../../include/user.php:138 ../../include/user.php:236 +#: include/user.php:146 include/user.php:244 msgid "Nickname is already registered. Please choose another." msgstr "Ten login jest zajęty. Wybierz inny." -#: ../../include/user.php:148 +#: include/user.php:156 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie." -#: ../../include/user.php:164 +#: include/user.php:172 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." -#: ../../include/user.php:222 +#: include/user.php:230 msgid "An error occurred during registration. Please try again." msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." -#: ../../include/user.php:257 +#: include/user.php:265 msgid "An error occurred creating your default profile. Please try again." msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." -#: ../../include/user.php:289 ../../include/user.php:293 -#: ../../include/profile_selectors.php:42 +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 msgid "Friends" msgstr "Przyjaciele" -#: ../../include/user.php:377 +#: include/user.php:385 #, php-format msgid "" "\n" @@ -7120,7 +7336,7 @@ msgid "" "\t" msgstr "" -#: ../../include/user.php:381 +#: include/user.php:389 #, php-format msgid "" "\n" @@ -7150,495 +7366,494 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "" -#: ../../include/diaspora.php:703 +#: include/diaspora.php:717 msgid "Sharing notification from Diaspora network" msgstr "Wspólne powiadomienie z sieci Diaspora" -#: ../../include/diaspora.php:2520 +#: include/diaspora.php:2560 msgid "Attachments:" msgstr "Załączniki:" -#: ../../include/items.php:4555 +#: include/items.php:4853 msgid "Do you really want to delete this item?" msgstr "" -#: ../../include/items.php:4778 +#: include/items.php:5128 msgid "Archives" msgstr "Archiwum" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Male" msgstr "Mężczyzna" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Female" msgstr "Kobieta" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Currently Male" msgstr "Aktualnie Mężczyzna" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Currently Female" msgstr "Aktualnie Kobieta" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Mostly Male" msgstr "Bardziej Mężczyzna" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Mostly Female" msgstr "Bardziej Kobieta" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Transgender" msgstr "Transpłciowy" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Intersex" msgstr "Międzypłciowy" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Transsexual" msgstr "Transseksualista" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Hermaphrodite" msgstr "Hermafrodyta" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Neuter" msgstr "Bezpłciowy" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Non-specific" msgstr "Niespecyficzne" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Other" msgstr "Inne" -#: ../../include/profile_selectors.php:6 +#: include/profile_selectors.php:6 msgid "Undecided" msgstr "Niezdecydowany" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Males" msgstr "Mężczyźni" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Females" msgstr "Kobiety" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Gay" msgstr "Gej" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Lesbian" msgstr "Lesbijka" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "No Preference" msgstr "Brak preferencji" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Bisexual" msgstr "Biseksualny" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Autosexual" msgstr "Niezidentyfikowany" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Abstinent" msgstr "Abstynent" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Virgin" msgstr "Dziewica" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Deviant" msgstr "Zboczeniec" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Fetish" msgstr "Fetysz" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Oodles" msgstr "Nadmiar" -#: ../../include/profile_selectors.php:23 +#: include/profile_selectors.php:23 msgid "Nonsexual" msgstr "Nieseksualny" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Single" msgstr "Singiel" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Lonely" msgstr "Samotny" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Available" msgstr "Dostępny" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unavailable" msgstr "Niedostępny" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Has crush" msgstr "" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Infatuated" msgstr "zakochany" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Dating" msgstr "Randki" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unfaithful" msgstr "Niewierny" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Sex Addict" msgstr "Uzależniony od seksu" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Przyjaciele/Korzyści" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Casual" msgstr "Przypadkowy" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Engaged" msgstr "Zaręczeni" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Married" msgstr "Małżeństwo" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Imaginarily married" msgstr "Fikcyjnie w związku małżeńskim" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Partners" msgstr "Partnerzy" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Cohabiting" msgstr "Konkubinat" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Common law" msgstr "" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Happy" msgstr "Szczęśliwy" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Not looking" msgstr "" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Swinger" msgstr "Swinger" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Betrayed" msgstr "Zdradzony" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Separated" msgstr "W separacji" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Unstable" msgstr "Niestabilny" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Divorced" msgstr "Rozwiedzeni" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Imaginarily divorced" msgstr "Fikcyjnie rozwiedziony/a" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Widowed" msgstr "Wdowiec" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Uncertain" msgstr "Nieokreślony" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "It's complicated" msgstr "To skomplikowane" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Don't care" msgstr "Nie obchodzi mnie to" -#: ../../include/profile_selectors.php:42 +#: include/profile_selectors.php:42 msgid "Ask me" msgstr "Zapytaj mnie " -#: ../../include/enotify.php:18 +#: include/enotify.php:18 msgid "Friendica Notification" msgstr "Powiadomienia Friendica" -#: ../../include/enotify.php:21 +#: include/enotify.php:21 msgid "Thank You," msgstr "Dziękuję," -#: ../../include/enotify.php:23 +#: include/enotify.php:23 #, php-format msgid "%s Administrator" msgstr "%s administrator" -#: ../../include/enotify.php:64 +#: include/enotify.php:64 #, php-format msgid "%s " msgstr "" -#: ../../include/enotify.php:68 +#: include/enotify.php:78 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s" -#: ../../include/enotify.php:70 +#: include/enotify.php:80 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../include/enotify.php:71 +#: include/enotify.php:81 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s wysyła ci %2$s" -#: ../../include/enotify.php:71 +#: include/enotify.php:81 msgid "a private message" msgstr "prywatna wiadomość" -#: ../../include/enotify.php:72 +#: include/enotify.php:82 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości" -#: ../../include/enotify.php:124 +#: include/enotify.php:134 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s skomentował [url=%2$s]a %3$s[/url]" -#: ../../include/enotify.php:131 +#: include/enotify.php:141 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: ../../include/enotify.php:139 +#: include/enotify.php:149 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: ../../include/enotify.php:149 +#: include/enotify.php:159 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/enotify.php:150 +#: include/enotify.php:160 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s skomentował rozmowę którą śledzisz" -#: ../../include/enotify.php:153 ../../include/enotify.php:168 -#: ../../include/enotify.php:181 ../../include/enotify.php:194 -#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 +#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę" -#: ../../include/enotify.php:160 +#: include/enotify.php:170 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notify] %s napisał na twoim profilu" -#: ../../include/enotify.php:162 +#: include/enotify.php:172 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: ../../include/enotify.php:164 +#: include/enotify.php:174 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: ../../include/enotify.php:175 +#: include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notify] %s oznaczył cię" -#: ../../include/enotify.php:176 +#: include/enotify.php:186 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s oznaczył/a cię w %2$s" -#: ../../include/enotify.php:177 +#: include/enotify.php:187 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "" -#: ../../include/enotify.php:188 +#: include/enotify.php:198 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "" -#: ../../include/enotify.php:189 +#: include/enotify.php:199 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "" -#: ../../include/enotify.php:190 +#: include/enotify.php:200 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "" -#: ../../include/enotify.php:202 +#: include/enotify.php:212 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "" -#: ../../include/enotify.php:203 +#: include/enotify.php:213 #, php-format msgid "%1$s poked you at %2$s" msgstr "" -#: ../../include/enotify.php:204 +#: include/enotify.php:214 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "" -#: ../../include/enotify.php:219 +#: include/enotify.php:229 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "" -#: ../../include/enotify.php:220 +#: include/enotify.php:230 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "" -#: ../../include/enotify.php:221 +#: include/enotify.php:231 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "" -#: ../../include/enotify.php:232 +#: include/enotify.php:242 msgid "[Friendica:Notify] Introduction received" msgstr "" -#: ../../include/enotify.php:233 +#: include/enotify.php:243 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:234 +#: include/enotify.php:244 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: ../../include/enotify.php:237 ../../include/enotify.php:279 +#: include/enotify.php:247 include/enotify.php:289 #, php-format msgid "You may visit their profile at %s" msgstr "Możesz obejrzeć ich profile na %s" -#: ../../include/enotify.php:239 +#: include/enotify.php:249 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." -#: ../../include/enotify.php:247 +#: include/enotify.php:257 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "" -#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#: include/enotify.php:258 include/enotify.php:259 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: ../../include/enotify.php:255 +#: include/enotify.php:265 msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#: include/enotify.php:266 include/enotify.php:267 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: ../../include/enotify.php:270 +#: include/enotify.php:280 msgid "[Friendica:Notify] Friend suggestion received" msgstr "" -#: ../../include/enotify.php:271 +#: include/enotify.php:281 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:272 +#: include/enotify.php:282 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: ../../include/enotify.php:277 +#: include/enotify.php:287 msgid "Name:" msgstr "Imię:" -#: ../../include/enotify.php:278 +#: include/enotify.php:288 msgid "Photo:" msgstr "Zdjęcie:" -#: ../../include/enotify.php:281 +#: include/enotify.php:291 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/enotify.php:289 ../../include/enotify.php:302 +#: include/enotify.php:299 include/enotify.php:312 msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#: include/enotify.php:300 include/enotify.php:313 #, php-format -msgid "'%1$s' has acepted your connection request at %2$s" +msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#: include/enotify.php:301 include/enotify.php:314 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: ../../include/enotify.php:294 +#: include/enotify.php:304 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "" -#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#: include/enotify.php:307 include/enotify.php:321 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: ../../include/enotify.php:307 +#: include/enotify.php:317 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -7647,71 +7862,71 @@ msgid "" "automatically." msgstr "" -#: ../../include/enotify.php:309 +#: include/enotify.php:319 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "" -#: ../../include/enotify.php:322 +#: include/enotify.php:332 msgid "[Friendica System:Notify] registration request" msgstr "" -#: ../../include/enotify.php:323 +#: include/enotify.php:333 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:324 +#: include/enotify.php:334 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: ../../include/enotify.php:327 +#: include/enotify.php:337 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "" -#: ../../include/enotify.php:330 +#: include/enotify.php:340 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: ../../include/oembed.php:212 +#: include/oembed.php:220 msgid "Embedded content" msgstr "Osadzona zawartość" -#: ../../include/oembed.php:221 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "Osadzanie wyłączone" -#: ../../include/uimport.php:94 +#: include/uimport.php:94 msgid "Error decoding account file" msgstr "Błąd podczas odczytu pliku konta" -#: ../../include/uimport.php:100 +#: include/uimport.php:100 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 +#: include/uimport.php:116 include/uimport.php:127 msgid "Error! Cannot check nickname" msgstr "" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: include/uimport.php:120 include/uimport.php:131 #, php-format msgid "User '%s' already exists on this server!" msgstr "Użytkownik '%s' już istnieje na tym serwerze!" -#: ../../include/uimport.php:153 +#: include/uimport.php:153 msgid "User creation error" msgstr "" -#: ../../include/uimport.php:171 +#: include/uimport.php:173 msgid "User profile creation error" msgstr "" -#: ../../include/uimport.php:220 +#: include/uimport.php:222 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -7719,194 +7934,172 @@ msgstr[0] "Nie zaimportowano %d kontaktu." msgstr[1] "Nie zaimportowano %d kontaktów." msgstr[2] "Nie zaimportowano %d kontaktów." -#: ../../include/uimport.php:290 +#: include/uimport.php:292 msgid "Done. You can now login with your username and password" msgstr "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła." -#: ../../index.php:428 +#: index.php:441 msgid "toggle mobile" msgstr "przełącz na mobilny" -#: ../../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 "Ustawienia motywu" - -#: ../../view/theme/cleanzero/config.php:83 +#: view/theme/cleanzero/config.php:83 msgid "Set resize level for images in posts and comments (width and height)" msgstr "" -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 +#: 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 "Ustaw rozmiar fontów dla postów i komentarzy" -#: ../../view/theme/cleanzero/config.php:85 +#: view/theme/cleanzero/config.php:85 msgid "Set theme width" msgstr "Ustaw szerokość motywu" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 msgid "Color scheme" msgstr "Zestaw kolorów" -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 msgid "Set line-height for posts and comments" msgstr "" -#: ../../view/theme/dispy/config.php:75 +#: view/theme/dispy/config.php:75 msgid "Set colour scheme" msgstr "Zestaw kolorów" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "Wyrównanie" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Left" msgstr "Lewo" -#: ../../view/theme/quattro/config.php:67 +#: view/theme/quattro/config.php:67 msgid "Center" msgstr "Środek" -#: ../../view/theme/quattro/config.php:69 +#: view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "" -#: ../../view/theme/quattro/config.php:70 +#: view/theme/quattro/config.php:70 msgid "Textareas font size" msgstr "" -#: ../../view/theme/diabook/config.php:153 +#: view/theme/diabook/config.php:153 msgid "Set resolution for middle column" msgstr "" -#: ../../view/theme/diabook/config.php:154 +#: view/theme/diabook/config.php:154 msgid "Set color scheme" msgstr "Zestaw kolorów" -#: ../../view/theme/diabook/config.php:155 +#: view/theme/diabook/config.php:155 msgid "Set zoomfactor for Earth Layer" msgstr "" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 msgid "Set longitude (X) for Earth Layers" msgstr "" -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 msgid "Set latitude (Y) for Earth Layers" msgstr "" -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 +#: view/theme/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 "Strony społecznościowe" -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 msgid "Earth Layers" msgstr "" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 msgid "Community Profiles" msgstr "" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 msgid "Help or @NewHere ?" msgstr "" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 msgid "Connect Services" msgstr "Połączone serwisy" -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 msgid "Find Friends" msgstr "Znajdź znajomych" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 msgid "Last users" msgstr "Ostatni użytkownicy" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 msgid "Last photos" msgstr "Ostatnie zdjęcia" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 msgid "Last likes" msgstr "Ostatnie polubienia" -#: ../../view/theme/diabook/theme.php:125 +#: view/theme/diabook/theme.php:125 msgid "Your contacts" msgstr "Twoje kontakty" -#: ../../view/theme/diabook/theme.php:128 +#: view/theme/diabook/theme.php:128 msgid "Your personal photos" msgstr "Twoje osobiste zdjęcia" -#: ../../view/theme/diabook/theme.php:524 +#: view/theme/diabook/theme.php:524 msgid "Local Directory" msgstr "" -#: ../../view/theme/diabook/theme.php:584 +#: view/theme/diabook/theme.php:584 msgid "Set zoomfactor for Earth Layers" msgstr "" -#: ../../view/theme/diabook/theme.php:622 +#: view/theme/diabook/theme.php:622 msgid "Show/hide boxes at right-hand column:" msgstr "" -#: ../../view/theme/vier/config.php:56 +#: view/theme/vier/config.php:59 msgid "Set style" msgstr "" -#: ../../view/theme/duepuntozero/config.php:45 +#: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:46 +#: view/theme/duepuntozero/config.php:46 msgid "purplezero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:47 +#: view/theme/duepuntozero/config.php:47 msgid "easterbunny" msgstr "" -#: ../../view/theme/duepuntozero/config.php:48 +#: view/theme/duepuntozero/config.php:48 msgid "darkzero" msgstr "" -#: ../../view/theme/duepuntozero/config.php:49 +#: view/theme/duepuntozero/config.php:49 msgid "comix" msgstr "" -#: ../../view/theme/duepuntozero/config.php:50 +#: view/theme/duepuntozero/config.php:50 msgid "slackr" msgstr "" -#: ../../view/theme/duepuntozero/config.php:62 +#: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "" diff --git a/view/pl/strings.php b/view/pl/strings.php index d28af9051..90cec9965 100644 --- a/view/pl/strings.php +++ b/view/pl/strings.php @@ -52,6 +52,10 @@ $a->strings["Toggle Archive status"] = ""; $a->strings["Repair"] = "Napraw"; $a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów"; $a->strings["Communications lost with this contact!"] = "Komunikacja przerwana z tym kontaktem!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; $a->strings["Contact Editor"] = "Edytor kontaktów"; $a->strings["Submit"] = "Potwierdź"; $a->strings["Profile Visibility"] = "Widoczność profilu"; @@ -74,12 +78,9 @@ $a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; $a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; $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["Profile URL"] = ""; $a->strings["Suggestions"] = "Sugestie"; $a->strings["Suggest potential friends"] = "Sugerowani znajomi"; $a->strings["All Contacts"] = "Wszystkie kontakty"; @@ -94,16 +95,16 @@ $a->strings["Archived"] = "Zarchiwizowane"; $a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty"; $a->strings["Hidden"] = "Ukryty"; $a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; -$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; -$a->strings["is a fan of yours"] = "jest twoim fanem"; -$a->strings["you are a fan of"] = "jesteś fanem"; -$a->strings["Edit contact"] = "Edytuj kontakt"; $a->strings["Contacts"] = "Kontakty"; $a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; $a->strings["Finding: "] = "Znalezione:"; $a->strings["Find"] = "Znajdź"; $a->strings["Update"] = "Zaktualizuj"; $a->strings["Delete"] = "Usuń"; +$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; +$a->strings["is a fan of yours"] = "jest twoim fanem"; +$a->strings["you are a fan of"] = "jesteś fanem"; +$a->strings["Edit contact"] = "Edytuj kontakt"; $a->strings["No profile"] = "Brak profilu"; $a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami."; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; @@ -164,7 +165,7 @@ $a->strings["Profile Photos"] = "Zdjęcia profilowe"; $a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; $a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu."; -$a->strings["Image exceeds size limit of %d"] = "Rozmiar obrazka przekracza limit %d"; +$a->strings["Image exceeds size limit of %s"] = ""; $a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; $a->strings["Upload File:"] = "Wyślij plik:"; $a->strings["Select a profile:"] = "Wybierz profil:"; @@ -187,6 +188,13 @@ $a->strings["Remove"] = "Usuń"; $a->strings["Save to Folder:"] = "Zapisz w folderze:"; $a->strings["- select -"] = "- wybierz -"; $a->strings["Save"] = "Zapisz"; +$a->strings["You already added this contact."] = ""; +$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:"; +$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; +$a->strings["No"] = "Nie"; +$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; +$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:"; +$a->strings["Submit Request"] = "Wyślij zgłoszenie"; $a->strings["Contact added"] = "Kontakt dodany"; $a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; $a->strings["Empty post discarded."] = "Pusty wpis wyrzucony."; @@ -233,6 +241,8 @@ $a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s"; $a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny"; $a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; +$a->strings["Do you really want to delete this video?"] = ""; +$a->strings["Delete Video"] = ""; $a->strings["No videos selected"] = "Nie zaznaczono filmów"; $a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; $a->strings["View Video"] = "Zobacz film"; @@ -243,6 +253,7 @@ $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s zaznaczył %2\$s'g $a->strings["Friend suggestion sent."] = "Propozycja znajomych wysłana."; $a->strings["Suggest Friends"] = "Zaproponuj znajomych"; $a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; +$a->strings["Invalid request."] = ""; $a->strings["No valid account found."] = "Nie znaleziono ważnego konta."; $a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres 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."] = ""; @@ -267,13 +278,6 @@ $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nie lubi %2\$s's %3\$s" $a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; $a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość"; $a->strings["{0} requested registration"] = "{0} żądana rejestracja"; -$a->strings["{0} commented %s's post"] = "{0} skomentował %s wpis"; -$a->strings["{0} liked %s's post"] = "{0} polubił wpis %s"; -$a->strings["{0} disliked %s's post"] = "{0} przestał lubić post %s"; -$a->strings["{0} is now friends with %s"] = "{0} jest teraz znajomym %s"; -$a->strings["{0} posted"] = "{0} utworzony"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} zaznaczony %s'go post z #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} wspomniał Cię w swoim wpisie"; $a->strings["No contacts."] = "brak kontaktów"; $a->strings["View Contacts"] = "widok kontaktów"; $a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania."; @@ -294,12 +298,17 @@ $a->strings["Approve"] = "Zatwierdź"; $a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:"; $a->strings["yes"] = "tak"; $a->strings["no"] = "nie"; -$a->strings["Approve as: "] = "Zatwierdź jako:"; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = ""; +$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = ""; $a->strings["Friend"] = "Znajomy"; $a->strings["Sharer"] = "Udostępniający/a"; $a->strings["Fan/Admirer"] = "Fan"; $a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; $a->strings["New Follower"] = "Nowy obserwator"; +$a->strings["Location:"] = "Lokalizacja"; +$a->strings["About:"] = "O:"; +$a->strings["Tags:"] = "Tagi:"; +$a->strings["Gender:"] = "Płeć:"; $a->strings["No introductions."] = "Brak wstępu."; $a->strings["Notifications"] = "Powiadomienia"; $a->strings["%s liked %s's post"] = "%s polubił wpis %s"; @@ -372,6 +381,7 @@ $a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; $a->strings["No mirroring"] = ""; $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; +$a->strings["Refetch contact data"] = ""; $a->strings["Name"] = "Imię"; $a->strings["Account Nickname"] = "Nazwa konta"; $a->strings["@Tagname - overrides Name/Nickname"] = ""; @@ -387,7 +397,8 @@ $a->strings["Mark this contact as remote_self, this will cause friendica to repo $a->strings["Login"] = "Login"; $a->strings["The post was created"] = ""; $a->strings["Access denied."] = "Brak dostępu"; -$a->strings["People Search"] = "Szukaj osób"; +$a->strings["People Search - %s"] = ""; +$a->strings["Connect"] = "Połącz"; $a->strings["No matches"] = "brak dopasowań"; $a->strings["Photos"] = "Zdjęcia"; $a->strings["Files"] = "Pliki"; @@ -398,6 +409,7 @@ $a->strings["Users"] = "Użytkownicy"; $a->strings["Plugins"] = "Wtyczki"; $a->strings["Themes"] = "Temat"; $a->strings["DB updates"] = "Aktualizacje DB"; +$a->strings["Inspect Queue"] = ""; $a->strings["Logs"] = "Logi"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; @@ -405,6 +417,13 @@ $a->strings["Admin"] = "Administator"; $a->strings["Plugin Features"] = "Polecane wtyczki"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie."; +$a->strings["Administration"] = "Administracja"; +$a->strings["ID"] = ""; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; $a->strings["Normal Account"] = "Konto normalne"; $a->strings["Soapbox Account"] = "Konto Soapbox"; $a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy"; @@ -412,7 +431,6 @@ $a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta"; $a->strings["Blog Account"] = "Konto Bloga"; $a->strings["Private Forum"] = "Forum Prywatne"; $a->strings["Message queues"] = "Wiadomości"; -$a->strings["Administration"] = "Administracja"; $a->strings["Summary"] = "Skrót"; $a->strings["Registered users"] = "Zarejestrowani użytkownicy"; $a->strings["Pending registrations"] = "Rejestracje w toku."; @@ -429,6 +447,12 @@ $a->strings["Frequently"] = "Jak najczęściej"; $a->strings["Hourly"] = "Godzinowo"; $a->strings["Twice daily"] = "Dwa razy dziennie"; $a->strings["Daily"] = "Dziennie"; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = "Miesiąc"; +$a->strings["Three months"] = "Trzy miesiące"; +$a->strings["Half a year"] = "Pół roku"; +$a->strings["One year"] = "Rok"; $a->strings["Multi user instance"] = "Tryb MultiUsera"; $a->strings["Closed"] = "Zamknięty"; $a->strings["Requires approval"] = "Wymagane zatwierdzenie."; @@ -436,21 +460,25 @@ $a->strings["Open"] = "Otwórz"; $a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL , linki będą śledzić stan SSL ."; $a->strings["Force all links to use SSL"] = "Wymuś by linki używały SSL."; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "; -$a->strings["Save Settings"] = ""; +$a->strings["Save Settings"] = "Zapisz ustawienia"; $a->strings["Registration"] = "Rejestracja"; $a->strings["File upload"] = "Plik załadowano"; $a->strings["Policies"] = "zasady"; $a->strings["Advanced"] = "Zaawansowany"; +$a->strings["Auto Discovered Contact Directory"] = ""; $a->strings["Performance"] = "Ustawienia"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; $a->strings["Site name"] = "Nazwa strony"; $a->strings["Host name"] = ""; $a->strings["Sender Email"] = ""; +$a->strings["The email address your server shall use to send notification emails from."] = ""; $a->strings["Banner/Logo"] = "Logo"; $a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; $a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; $a->strings["Additional Info"] = "Dodatkowe informacje"; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; $a->strings["System language"] = "Język systemu"; $a->strings["System theme"] = "Motyw systemowy"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów"; @@ -533,6 +561,18 @@ $a->strings["Poll interval"] = ""; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; $a->strings["Maximum Load Average"] = ""; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; $a->strings["Use MySQL full text engine"] = ""; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; $a->strings["Suppress Language"] = ""; @@ -540,13 +580,17 @@ $a->strings["Suppress language information in meta information about a posting." $a->strings["Suppress Tags"] = ""; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; $a->strings["Path to item cache"] = ""; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = ""; $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["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; $a->strings["Temp path"] = "Ścieżka do Temp"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; $a->strings["Base path to installation"] = ""; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; $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["Enable old style pager"] = ""; @@ -554,6 +598,11 @@ $a->strings["The old style pager has page numbers but slows down massively the p $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"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["RINO Encryption"] = ""; +$a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; $a->strings["Update has been marked successful"] = ""; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -627,7 +676,7 @@ $a->strings["FTP Host"] = "Założyciel FTP"; $a->strings["FTP Path"] = "Ścieżka FTP"; $a->strings["FTP User"] = "Użytkownik FTP"; $a->strings["FTP Password"] = "FTP Hasło"; -$a->strings["Search Results For:"] = "Szukaj wyników dla:"; +$a->strings["Search Results For: %s"] = ""; $a->strings["Remove term"] = "Usuń wpis"; $a->strings["Saved Searches"] = "Zapisane wyszukiwania"; $a->strings["add"] = "dodaj"; @@ -640,7 +689,7 @@ $a->strings["New"] = "Nowy"; $a->strings["Activity Stream - by date"] = ""; $a->strings["Shared Links"] = "Współdzielone linki"; $a->strings["Interesting Links"] = "Interesujące linki"; -$a->strings["Starred"] = ""; +$a->strings["Starred"] = "Ulubione"; $a->strings["Favourite Posts"] = "Ulubione posty"; $a->strings["Warning: This group contains %s member from an insecure network."] = array( 0 => "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci.", @@ -650,12 +699,13 @@ $a->strings["Warning: This group contains %s member from an insecure network."] $a->strings["Private messages to this group are at risk of public disclosure."] = "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia"; $a->strings["No such group"] = "Nie ma takiej grupy"; $a->strings["Group is empty"] = "Grupa jest pusta"; -$a->strings["Group: "] = "Grupa:"; -$a->strings["Contact: "] = "Kontakt: "; +$a->strings["Group: %s"] = ""; +$a->strings["Contact: %s"] = ""; $a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "; $a->strings["Invalid contact."] = "Zły kontakt"; $a->strings["Friends of %s"] = "Znajomy %s"; $a->strings["No friends to display."] = "Brak znajomych do wyświetlenia"; +$a->strings["Event can not end before it has started."] = ""; $a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; $a->strings["l, F j"] = "d, M d "; $a->strings["Edit event"] = "Edytuj wydarzenie"; @@ -664,18 +714,17 @@ $a->strings["Events"] = "Wydarzenia"; $a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; $a->strings["Previous"] = "Poprzedni"; $a->strings["Next"] = "Następny"; -$a->strings["hour:minute"] = "godzina:minuta"; $a->strings["Event details"] = "Szczegóły wydarzenia"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Wymagany format %s %s. Data rozpoczęcia i Tytuł są konieczne."; +$a->strings["Starting date and Title are required."] = ""; $a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; $a->strings["Required"] = "Wymagany"; $a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; $a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; $a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; $a->strings["Description:"] = "Opis:"; -$a->strings["Location:"] = "Lokalizacja"; $a->strings["Title:"] = "Tytuł:"; $a->strings["Share this event"] = "Udostępnij te wydarzenie"; +$a->strings["Preview"] = "Podgląd"; $a->strings["Select"] = "Wybierz"; $a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s"; $a->strings["%s from %s"] = "%s od %s"; @@ -708,7 +757,6 @@ $a->strings["Code"] = "Kod"; $a->strings["Image"] = "Obraz"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Podgląd"; $a->strings["Edit"] = "Edytuj"; $a->strings["add star"] = "dodaj gwiazdkę"; $a->strings["remove star"] = "anuluj gwiazdkę"; @@ -728,6 +776,7 @@ $a->strings["Could not create table."] = "Nie mogę stworzyć tabeli."; $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."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; $a->strings["System check"] = "Sprawdzanie systemu"; $a->strings["Check again"] = "Sprawdź ponownie"; $a->strings["Database connection"] = "Połączenie z bazą danych"; @@ -795,12 +844,11 @@ $a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; $a->strings["Welcome to %s"] = "Witamy w %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"] = "Plik przekracza dozwolony rozmiar %d"; +$a->strings["File exceeds size limit of %s"] = ""; $a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; $a->strings["Profile Match"] = "Profil zgodny "; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu."; $a->strings["is interested in:"] = "interesuje się:"; -$a->strings["Connect"] = "Połącz"; $a->strings["link"] = "Link"; $a->strings["Not available."] = "Niedostępne."; $a->strings["Community"] = "Społeczność"; @@ -846,11 +894,16 @@ $a->strings["Plugin Settings"] = "Ustawienia wtyczki"; $a->strings["Off"] = "Wyłącz"; $a->strings["On"] = "Włącz"; $a->strings["Additional Features"] = ""; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; $a->strings["Built-in support for %s connectivity is %s"] = ""; $a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "włączony"; $a->strings["disabled"] = "wyłączony"; -$a->strings["StatusNet"] = "StatusNet"; +$a->strings["GNU Social (OStatus)"] = ""; $a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"; $a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."; @@ -876,10 +929,11 @@ $a->strings["Number of items to display per page:"] = ""; $a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; $a->strings["Number of items to display per page when viewed from mobile device:"] = ""; $a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; +$a->strings["Don't show notices"] = "Nie pokazuj powiadomień"; +$a->strings["Infinite scroll"] = "Nieskończone przewijanie"; $a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = ""; +$a->strings["Theme settings"] = "Ustawienia motywu"; +$a->strings["User Types"] = "Użytkownik pisze"; $a->strings["Community Types"] = ""; $a->strings["Normal Account Page"] = ""; $a->strings["This account is a normal personal profile"] = "To konto jest normalnym osobistym profilem"; @@ -894,7 +948,6 @@ $a->strings["Private forum - approved members only"] = ""; $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "Przeznacz to OpenID do logowania się na to konto."; $a->strings["Publish your default profile in your local site directory?"] = "Czy publikować Twój profil w lokalnym katalogu tej instancji?"; -$a->strings["No"] = "Nie"; $a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; $a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?"; @@ -904,7 +957,7 @@ $a->strings["Allow friends to tag your posts?"] = "Zezwól na oznaczanie twoich $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."] = "Profil nie jest opublikowany"; -$a->strings["Your Identity Address is"] = "Twój adres identyfikacyjny to"; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; $a->strings["Automatically expire posts after this many days:"] = ""; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."; $a->strings["Advanced expiration settings"] = ""; @@ -953,6 +1006,8 @@ $a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomoś $a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych"; $a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście"; $a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; $a->strings["Text-only notification emails"] = ""; $a->strings["Send text only notification emails, without the html part"] = ""; $a->strings["Advanced Account/Page Type Settings"] = ""; @@ -986,22 +1041,17 @@ $a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; $a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; $a->strings["Please login to confirm introduction."] = "Proszę zalogować się do potwierdzenia wstępu."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; +$a->strings["Confirm"] = "Potwierdź"; $a->strings["Hide this contact"] = "Ukryj kontakt"; $a->strings["Welcome home %s."] = "Welcome home %s."; $a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; -$a->strings["Confirm"] = "Potwierdź"; $a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ."; -$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."] = "Jeśli nie jesteś członkiem darmowej sieci społecznościowej kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś ."; +$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"] = "Przyjaciel/Prośba o połączenie"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:"; -$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; -$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; $a->strings["Friendica"] = "Friendica"; $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Sieć społeczna"; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki."; -$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:"; -$a->strings["Submit Request"] = "Wyślij zgłoszenie"; $a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; $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."] = "Twoja rejestracja nie może zostać przeprowadzona. "; @@ -1015,6 +1065,7 @@ $a->strings["Membership on this site is by invitation only."] = "Członkostwo na $a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:"; $a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):"; $a->strings["Your Email Address: "] = "Twój adres email:"; +$a->strings["Leave empty for an auto generated password."] = ""; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@\$nazwastrony'."; $a->strings["Choose a nickname: "] = "Wybierz pseudonim:"; $a->strings["Register"] = "Zarejestruj"; @@ -1022,15 +1073,15 @@ $a->strings["Import"] = "Import"; $a->strings["Import your profile to this friendica instance"] = ""; $a->strings["System down for maintenance"] = ""; $a->strings["Search"] = "Szukaj"; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Search results for: %s"] = ""; $a->strings["Global Directory"] = "Globalne Położenie"; $a->strings["Find on this site"] = "Znajdź na tej stronie"; $a->strings["Site Directory"] = "Katalog Strony"; $a->strings["Age: "] = "Wiek: "; $a->strings["Gender: "] = "Płeć: "; -$a->strings["Gender:"] = "Płeć:"; $a->strings["Status:"] = "Status"; $a->strings["Homepage:"] = "Strona główna:"; -$a->strings["About:"] = "O:"; $a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; $a->strings["No potential page delegates located."] = ""; $a->strings["Delegate Page Management"] = ""; @@ -1094,7 +1145,7 @@ $a->strings["Profile Name:"] = "Nazwa profilu :"; $a->strings["Your Full Name:"] = "Twoje imię i nazwisko:"; $a->strings["Title/Description:"] = "Tytuł/Opis :"; $a->strings["Your Gender:"] = "Twoja płeć:"; -$a->strings["Birthday (%s):"] = "Urodziny (%s):"; +$a->strings["Birthday :"] = ""; $a->strings["Street Address:"] = "Ulica:"; $a->strings["Locality/City:"] = "Miejscowość/Miasto :"; $a->strings["Postal/Zip Code:"] = "Kod Pocztowy :"; @@ -1157,6 +1208,7 @@ $a->strings["This is Friendica, version"] = "To jest Friendica, wersja"; $a->strings["running at web location"] = "otwierane na serwerze"; $a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica."; $a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź"; +$a->strings["the bugtracker at github"] = ""; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; $a->strings["Installed plugins/addons/apps:"] = "Zainstalowane pluginy/dodatki/aplikacje:"; $a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji"; @@ -1200,8 +1252,9 @@ $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"] = ""; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"; $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"] = "Albumy zdjęć"; $a->strings["Contact Photos"] = "Zdjęcia kontaktu"; +$a->strings["Photo Albums"] = "Albumy zdjęć"; +$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; $a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; $a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne."; $a->strings["Album not found."] = "Album nie znaleziony"; @@ -1211,7 +1264,6 @@ $a->strings["Delete Photo"] = "Usuń zdjęcie"; $a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; $a->strings["a photo"] = "zdjęcie"; -$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru"; $a->strings["Image file is empty."] = "Plik obrazka jest pusty."; $a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; @@ -1234,16 +1286,17 @@ $a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; $a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; $a->strings["Tags: "] = "Tagi:"; $a->strings["[Remove any tag]"] = "[Usunąć znacznik]"; -$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; -$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; $a->strings["New album name"] = "Nazwa nowego albumu"; $a->strings["Caption"] = "Zawartość"; $a->strings["Add a Tag"] = "Dodaj tag"; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; +$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; $a->strings["Private photo"] = "Prywatne zdjęcie."; $a->strings["Public photo"] = "Zdjęcie publiczne"; $a->strings["Share"] = "Podziel się"; -$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; +$a->strings["Not Extended"] = ""; $a->strings["Account approved."] = "Konto zatwierdzone."; $a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana"; $a->strings["Please login."] = "Proszę się zalogować."; @@ -1269,26 +1322,6 @@ $a->strings["Website Terms of Service"] = ""; $a->strings["terms of service"] = "warunki użytkowania"; $a->strings["Website Privacy Policy"] = ""; $a->strings["privacy policy"] = "polityka prywatności"; -$a->strings["Requested account is not available."] = ""; -$a->strings["Edit profile"] = "Edytuj profil"; -$a->strings["Message"] = "Wiadomość"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "g A I F d"; -$a->strings["F d"] = ""; -$a->strings["[today]"] = "[dziś]"; -$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; -$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; -$a->strings["[No description]"] = "[Brak opisu]"; -$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; -$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; -$a->strings["Profile Details"] = "Szczegóły profilu"; -$a->strings["Videos"] = "Filmy"; -$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; -$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; $a->strings["This entry was edited"] = "Ten wpis został zedytowany"; $a->strings["ignore thread"] = ""; $a->strings["unignore thread"] = ""; @@ -1356,7 +1389,7 @@ $a->strings["Edit Sent Posts"] = ""; $a->strings["Edit and correct posts and comments after sending"] = ""; $a->strings["Tagging"] = "Oznaczanie"; $a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; +$a->strings["Post Categories"] = "Kategorie postów"; $a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów"; $a->strings["Ability to file posts under folders"] = ""; $a->strings["Dislike Posts"] = ""; @@ -1385,15 +1418,16 @@ $a->strings["Edit group"] = "Edytuj grupy"; $a->strings["Create a new group"] = "Stwórz nową grupę"; $a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; $a->strings["Miscellaneous"] = "Różny"; -$a->strings["year"] = "rok"; -$a->strings["month"] = "miesiąc"; -$a->strings["day"] = "dzień"; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; $a->strings["never"] = "nigdy"; $a->strings["less than a second ago"] = "mniej niż sekundę temu"; +$a->strings["year"] = "rok"; $a->strings["years"] = "lata"; +$a->strings["month"] = "miesiąc"; $a->strings["months"] = "miesiące"; $a->strings["week"] = "tydzień"; $a->strings["weeks"] = "tygodnie"; +$a->strings["day"] = "dzień"; $a->strings["days"] = "dni"; $a->strings["hour"] = "godzina"; $a->strings["hours"] = "godziny"; @@ -1404,6 +1438,43 @@ $a->strings["seconds"] = "sekundy"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu"; $a->strings["%s's birthday"] = "Urodziny %s"; $a->strings["Happy Birthday %s"] = "Urodziny %s"; +$a->strings["Requested account is not available."] = ""; +$a->strings["Edit profile"] = "Edytuj profil"; +$a->strings["Message"] = "Wiadomość"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "g A I F d"; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[dziś]"; +$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; +$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; +$a->strings["[No description]"] = "[Brak opisu]"; +$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; +$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; +$a->strings["j F, Y"] = "d M, R"; +$a->strings["j F"] = "d M"; +$a->strings["Birthday:"] = "Urodziny:"; +$a->strings["Age:"] = "Wiek:"; +$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; +$a->strings["Religion:"] = "Religia:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; +$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; +$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; +$a->strings["Books, literature:"] = "Książki, literatura:"; +$a->strings["Television:"] = "Telewizja:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Love/Romance:"] = "Miłość/Romans:"; +$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; +$a->strings["School/education:"] = "Szkoła/edukacja:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; +$a->strings["Profile Details"] = "Szczegóły profilu"; +$a->strings["Videos"] = "Filmy"; +$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; +$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; +$a->strings["Post to Email"] = "Wyślij poprzez email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; $a->strings["Visible to everybody"] = "Widoczny dla wszystkich"; $a->strings["show"] = "pokaż"; $a->strings["don't show"] = "nie pokazuj"; @@ -1423,7 +1494,6 @@ $a->strings["Welcome back "] = "Witaj ponownie "; $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"] = "wydarzenie"; $a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["poked"] = "zaczepiony"; $a->strings["post/item"] = ""; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; $a->strings["remove"] = "usuń"; @@ -1443,8 +1513,6 @@ $a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki"; $a->strings["Tag term:"] = ""; $a->strings["Where are you right now?"] = "Gdzie teraz jesteś?"; $a->strings["Delete item(s)?"] = "Usunąć pozycję (pozycje)?"; -$a->strings["Post to Email"] = "Wyślij poprzez email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; $a->strings["permissions"] = "zezwolenia"; $a->strings["Post to Groups"] = "Wstaw na strony grup"; $a->strings["Post to Contacts"] = "Wstaw do kontaktów"; @@ -1456,13 +1524,19 @@ $a->strings["prev"] = "poprzedni"; $a->strings["first"] = "pierwszy"; $a->strings["last"] = "ostatni"; $a->strings["next"] = "następny"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; $a->strings["No contacts"] = "Brak kontaktów"; $a->strings["%d Contact"] = array( 0 => "%d kontakt", 1 => "%d kontaktów", 2 => "%d kontakty", ); +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Forums"] = ""; $a->strings["poke"] = "zaczep"; +$a->strings["poked"] = "zaczepiony"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = ""; $a->strings["prod"] = ""; @@ -1514,6 +1588,8 @@ $a->strings["November"] = "Listopad"; $a->strings["December"] = "Grudzień"; $a->strings["bytes"] = "bajty"; $a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; $a->strings["default"] = "standardowe"; $a->strings["Select an alternate language"] = "Wybierz alternatywny język"; $a->strings["activity"] = "aktywność"; @@ -1547,25 +1623,10 @@ $a->strings["Twitter"] = ""; $a->strings["Diaspora Connector"] = ""; $a->strings["Statusnet"] = ""; $a->strings["App.net"] = ""; +$a->strings["Redmatrix"] = ""; $a->strings[" on Last.fm"] = "na Last.fm"; $a->strings["Starts:"] = "Start:"; $a->strings["Finishes:"] = "Wykończenia:"; -$a->strings["j F, Y"] = "d M, R"; -$a->strings["j F"] = "d M"; -$a->strings["Birthday:"] = "Urodziny:"; -$a->strings["Age:"] = "Wiek:"; -$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; -$a->strings["Tags:"] = "Tagi:"; -$a->strings["Religion:"] = "Religia:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; -$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; -$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; -$a->strings["Books, literature:"] = "Książki, literatura:"; -$a->strings["Television:"] = "Telewizja:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Love/Romance:"] = "Miłość/Romans:"; -$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; -$a->strings["School/education:"] = "Szkoła/edukacja:"; $a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować."; $a->strings["This action exceeds the limits set by your subscription plan."] = ""; $a->strings["This action is not available under your subscription plan."] = ""; @@ -1613,7 +1674,6 @@ $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"] = ""; @@ -1627,7 +1687,7 @@ $a->strings["That doesn't appear to be your full (First Last) name."] = "Zdaje m $a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; $a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; $a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. "; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Twój login może składać się tylko z \"a-z\", \"0-9\", \"-\", \"_\", i musi mieć na początku literę."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; $a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; $a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; @@ -1743,7 +1803,7 @@ $a->strings["Name:"] = "Imię:"; $a->strings["Photo:"] = "Zdjęcie:"; $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["'%1\$s' has accepted 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."] = ""; @@ -1769,7 +1829,6 @@ $a->strings["%d contact not imported"] = array( ); $a->strings["Done. You can now login with your username and password"] = "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła."; $a->strings["toggle mobile"] = "przełącz na mobilny"; -$a->strings["Theme settings"] = "Ustawienia motywu"; $a->strings["Set resize level for images in posts and comments (width and height)"] = ""; $a->strings["Set font-size for posts and comments"] = "Ustaw rozmiar fontów dla postów i komentarzy"; $a->strings["Set theme width"] = "Ustaw szerokość motywu"; diff --git a/view/templates/acl_selector.tpl b/view/templates/acl_selector.tpl index c1220bc1e..bf9470b64 100644 --- a/view/templates/acl_selector.tpl +++ b/view/templates/acl_selector.tpl @@ -1,7 +1,7 @@
    - {{$showall}} + {{$showall}}
    @@ -11,8 +11,8 @@ {{if $networks}} diff --git a/view/templates/admin_aside.tpl b/view/templates/admin_aside.tpl index 0f28a1cf3..4a6af8814 100644 --- a/view/templates/admin_aside.tpl +++ b/view/templates/admin_aside.tpl @@ -17,6 +17,7 @@ + {{if $admin.update}} diff --git a/view/templates/admin_plugins.tpl b/view/templates/admin_plugins.tpl index c194c46cc..6577ab8eb 100644 --- a/view/templates/admin_plugins.tpl +++ b/view/templates/admin_plugins.tpl @@ -1,7 +1,7 @@

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

    - + {{"Reload active plugins"|t}}
      {{foreach $plugins as $p}}
    • diff --git a/view/templates/admin_queue.tpl b/view/templates/admin_queue.tpl new file mode 100644 index 000000000..aaca9b014 --- /dev/null +++ b/view/templates/admin_queue.tpl @@ -0,0 +1,25 @@ +
      +

      {{$title}} - {{$page}} ({{$count}})

      + +

      {{$info}}

      + + + + + + + + + + {{foreach $entries as $e}} + + + + + + + + + {{/foreach}} +
      {{$id_header}}{{$to_header}}{{$url_header}}{{$network_header}}{{$created_header}}{{$last_header}}
      {{$e.id}}{{$e.name}}{{$e.nurl}}{{$e.network}}{{$e.created}}{{$e.last}}
      +
      diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 34c590b2e..b60c4f055 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -59,8 +59,6 @@ {{include file="field_checkbox.tpl" field=$old_share}} {{include file="field_checkbox.tpl" field=$hide_help}} {{include file="field_select.tpl" field=$singleuser}} - -

      {{$registration}}

      @@ -70,13 +68,13 @@ {{include file="field_checkbox.tpl" field=$no_multi_reg}} {{include file="field_checkbox.tpl" field=$no_openid}} {{include file="field_checkbox.tpl" field=$no_regfullname}} -

      {{$upload}}

      {{include file="field_input.tpl" field=$maximagesize}} {{include file="field_input.tpl" field=$maximagelength}} {{include file="field_input.tpl" field=$jpegimagequality}} +

      {{$corporate}}

      {{include file="field_input.tpl" field=$allowed_sites}} @@ -99,7 +97,7 @@

      {{$advanced}}

      - {{include file="field_select.tpl" field=$rino}} + {{include file="field_select.tpl" field=$rino}} {{include file="field_checkbox.tpl" field=$no_utf}} {{include file="field_checkbox.tpl" field=$verifyssl}} {{include file="field_input.tpl" field=$proxy}} @@ -115,6 +113,17 @@ {{include file="field_input.tpl" field=$basepath}} {{include file="field_checkbox.tpl" field=$suppress_language}} {{include file="field_checkbox.tpl" field=$suppress_tags}} + {{include file="field_checkbox.tpl" field=$nodeinfo}} + {{include file="field_input.tpl" field=$embedly}} +
      + +

      {{$portable_contacts}}

      + {{include file="field_checkbox.tpl" field=$poco_completion}} + {{include file="field_input.tpl" field=$poco_requery_days}} + {{include file="field_select.tpl" field=$poco_discovery}} + {{include file="field_select.tpl" field=$poco_discovery_since}} + {{include file="field_checkbox.tpl" field=$poco_local_search}} +

      {{$performance}}

      {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} diff --git a/view/templates/admin_summary.tpl b/view/templates/admin_summary.tpl index 8a3ac5bf0..282c2b6fb 100644 --- a/view/templates/admin_summary.tpl +++ b/view/templates/admin_summary.tpl @@ -4,7 +4,7 @@
      {{$queues.label}}
      -
      {{$queues.deliverq}} - {{$queues.queue}}
      +
      {{$queues.deliverq}} - {{$queues.queue}}
      {{$pending.0}}
      diff --git a/view/templates/common_tabs.tpl b/view/templates/common_tabs.tpl index 9f1270904..988c1acef 100644 --- a/view/templates/common_tabs.tpl +++ b/view/templates/common_tabs.tpl @@ -1,6 +1,6 @@ -
        + diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index c63166aa7..06141081c 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -20,6 +20,7 @@
      • {{$relation_text}}
      • {{/if}}
      • {{$nettype}}
      • +
      • {{$profileurllabel}}: {{$profileurl}}
      • {{if $lost_contact}}
      • {{$lost_contact}}
      • {{/if}} @@ -35,8 +36,8 @@ {{if $archived}}
      • {{$archived}}
      • {{/if}} - -
      •  
      • +
      +
        {{if $common_text}}
      • diff --git a/view/templates/diaspora_message.tpl b/view/templates/diaspora_message.tpl index fe0ab4b5f..f9adb833b 100644 --- a/view/templates/diaspora_message.tpl +++ b/view/templates/diaspora_message.tpl @@ -4,6 +4,9 @@ {{$msg.guid}} {{$msg.parent_guid}} + {{if $msg.parent_author_signature}} + {{$msg.parent_author_signature}} + {{/if}} {{$msg.author_signature}} {{$msg.text}} {{$msg.created_at}} diff --git a/view/templates/diaspora_vcard.tpl b/view/templates/diaspora_vcard.tpl index 25a0fe0fc..58419bd13 100644 --- a/view/templates/diaspora_vcard.tpl +++ b/view/templates/diaspora_vcard.tpl @@ -1,34 +1,45 @@
        +
        +
        Uid
        +
        + {{$diaspora.guid}} +
        +
        Nickname
        - {{$diaspora.nickname}} + {{$diaspora.nickname}}
        -
        -
        Full name
        +
        +
        Full_name
        {{$diaspora.fullname}}
        - -
        -
        First name
        +
        +
        Searchable
        +
        + {{$diaspora.searchable}} +
        +
        +
        +
        First_name
        {{$diaspora.firstname}}
        -
        Family name
        +
        Family_name
        {{$diaspora.lastname}}
        -
        URL
        +
        Url
        - {{$diaspora.podloc}}/ + {{$diaspora.podloc}}/
        @@ -38,21 +49,15 @@
        -
        Photo
        +
        Photo_medium
        -
        Photo
        +
        Photo_small
        -
        -
        Searchable
        -
        - {{$diaspora.searchable}} -
        -
        diff --git a/view/templates/fake_feed.tpl b/view/templates/fake_feed.tpl deleted file mode 100644 index c4c45bf4d..000000000 --- a/view/templates/fake_feed.tpl +++ /dev/null @@ -1,14 +0,0 @@ - - - - - fake feed - fake title - - 1970-01-01T00:00:00Z - - - Fake Name - http://example.com - - diff --git a/view/templates/filebrowser.tpl b/view/templates/filebrowser.tpl index b207277a7..c40b85474 100644 --- a/view/templates/filebrowser.tpl +++ b/view/templates/filebrowser.tpl @@ -1,10 +1,13 @@ - + + + + +
        + + +
        + {{foreach $path as $p}}{{$p.1}}{{/foreach}} +
        + + {{if $folders }} +
        +
          + {{foreach $folders as $f}}
        • {{$f.1}}
        • {{/foreach}} +
        +
        + {{/if}} + +
        + {{foreach $files as $f}} + + {{/foreach}} +
        + +
        + +
        +
        + + + + + diff --git a/view/templates/generic_links_widget.tpl b/view/templates/generic_links_widget.tpl index af1d8d1e3..124079a1d 100644 --- a/view/templates/generic_links_widget.tpl +++ b/view/templates/generic_links_widget.tpl @@ -3,9 +3,9 @@ {{if $title}}

        {{$title}}

        {{/if}} {{if $desc}}
        {{$desc}}
        {{/if}} -
          + diff --git a/view/templates/group_side.tpl b/view/templates/group_side.tpl index fa3a11148..c7e1aa895 100644 --- a/view/templates/group_side.tpl +++ b/view/templates/group_side.tpl @@ -2,9 +2,9 @@

          {{$title}}