Merge remote-tracking branch 'upstream/develop' into 1607-performance

This commit is contained in:
Michael 2016-12-10 12:18:11 +00:00
commit fc3c1601b1
1113 changed files with 22041 additions and 167040 deletions

50
Vagrantfile vendored
View file

@ -1,31 +1,55 @@
server_ip = "192.168.22.10"
server_ip_trusty = "192.168.22.10"
server_ip_xenial = "192.168.22.11"
server_memory = "1024" # MB
server_timezone = "UTC"
public_folder = "/vagrant"
Vagrant.configure(2) do |config|
######################################################################
# Set server to Ubuntu 14.04
config.vm.box = "ubuntu/trusty64"
config.vm.define "trusty" do |trusty|
trusty.vm.box = "ubuntu/trusty64"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a hostname, don't forget to put it to the `hosts` file
# This will point to the server's default virtual host
# TO DO: Make this work with virtualhost along-side xip.io URL
config.vm.hostname = "friendica.dev"
# Create a hostname, don't forget to put it to the `hosts` file
# This will point to the server's default virtual host
# TO DO: Make this work with virtualhost along-side xip.io URL
trusty.vm.hostname = "friendica-trusty.dev"
# Create a static IP
config.vm.network :private_network, ip: server_ip
# Create a static IP
trusty.vm.network :private_network, ip: server_ip_trusty
end
######################################################################
# Set server to Ubuntu 16.04
config.vm.define "xenial" do |xenial|
xenial.vm.box = "boxcutter/ubuntu1604"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a hostname, don't forget to put it to the `hosts` file
# This will point to the server's default virtual host
# TO DO: Make this work with virtualhost along-side xip.io URL
xenial.vm.hostname = "friendica-xenial.dev"
# Create a static IP
xenial.vm.network :private_network, ip: server_ip_xenial
end
######################################################################
# Share a folder between host and guest
config.vm.synced_folder "./", "/vagrant/", owner: "www-data", group: "vagrant"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
config.vm.provider "virtualbox" do |vb|

View file

@ -38,7 +38,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_CODENAME', 'Asparagus');
define ( 'FRIENDICA_VERSION', '3.5.1-dev' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1208 );
define ( 'DB_UPDATE_VERSION', 1209 );
/**
* @brief Constant with a HTML line break.
@ -530,6 +530,7 @@ class App {
public $videoheight = 350;
public $force_max_items = 0;
public $theme_thread_allow = true;
public $theme_richtext_editor = true;
public $theme_events_in_profile = true;
/**
@ -609,6 +610,7 @@ class App {
$this->performance["markstart"] = microtime(true);
$this->callstack["database"] = array();
$this->callstack["database_write"] = array();
$this->callstack["network"] = array();
$this->callstack["file"] = array();
$this->callstack["rendering"] = array();
@ -1384,6 +1386,10 @@ class App {
function proc_run($args) {
if (!function_exists("proc_open")) {
return;
}
// Add the php path if it is a php call
if (count($args) && ($args[0] === 'php' OR !is_string($args[0]))) {
@ -2359,6 +2365,36 @@ function get_lockpath() {
return "";
}
/**
* @brief Returns the path where spool files are stored
*
* @return string Spool path
*/
function get_spoolpath() {
$spoolpath = get_config('system','spoolpath');
if (($spoolpath != "") AND is_dir($spoolpath) AND is_writable($spoolpath)) {
return($spoolpath);
}
$temppath = get_temppath();
if ($temppath != "") {
$spoolpath = $temppath."/spool";
if (!is_dir($spoolpath)) {
mkdir($spoolpath);
} elseif (!is_writable($spoolpath)) {
$spoolpath = $temppath;
}
if (is_dir($spoolpath) AND is_writable($spoolpath)) {
set_config("system", "spoolpath", $spoolpath);
return($spoolpath);
}
}
return "";
}
function get_temppath() {
$a = get_app();

View file

@ -1,19 +0,0 @@
ALTER TABLE `profile` DROP INDEX `pub_keywords` ;
ALTER TABLE `profile` DROP INDEX `prv_keywords` ;
ALTER TABLE `item` DROP INDEX `title` ;
ALTER TABLE `item` DROP INDEX `body` ;
ALTER TABLE `item` DROP INDEX `allow_cid` ;
ALTER TABLE `item` DROP INDEX `allow_gid` ;
ALTER TABLE `item` DROP INDEX `deny_cid` ;
ALTER TABLE `item` DROP INDEX `deny_gid` ;
ALTER TABLE `item` DROP INDEX `tag` ;
ALTER TABLE `item` DROP INDEX `file` ;
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
FROM information_schema.tables
WHERE engine = 'MyISAM';

View file

@ -1,6 +1,6 @@
-- ------------------------------------------
-- Friendica 3.5.1-dev (Asparagus)
-- DB_UPDATE_VERSION 1205
-- DB_UPDATE_VERSION 1208
-- ------------------------------------------
@ -59,7 +59,8 @@ CREATE TABLE IF NOT EXISTS `cache` (
`expire_mode` int(11) NOT NULL DEFAULT 0,
`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY(`k`(191)),
INDEX `updated` (`updated`)
INDEX `updated` (`updated`),
INDEX `expire_mode_updated` (`expire_mode`,`updated`)
) DEFAULT CHARSET=utf8mb4;
--
@ -174,6 +175,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
`ffi_keyword_blacklist` mediumtext,
PRIMARY KEY(`id`),
INDEX `uid` (`uid`),
INDEX `addr_uid` (`addr`,`uid`),
INDEX `nurl` (`nurl`)
) DEFAULT CHARSET=utf8mb4;
@ -201,7 +203,8 @@ CREATE TABLE IF NOT EXISTS `deliverq` (
`cmd` varchar(32) NOT NULL DEFAULT '',
`item` int(11) NOT NULL DEFAULT 0,
`contact` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY(`id`)
PRIMARY KEY(`id`),
UNIQUE INDEX `cmd_item_contact` (`cmd`,`item`,`contact`)
) DEFAULT CHARSET=utf8mb4;
--
@ -656,7 +659,7 @@ CREATE TABLE IF NOT EXISTS `notify` (
`verb` varchar(255) NOT NULL DEFAULT '',
`otype` varchar(16) NOT NULL DEFAULT '',
`name_cache` tinytext,
`msg_name` mediumtext,
`msg_cache` mediumtext,
PRIMARY KEY(`id`),
INDEX `uid` (`uid`)
) DEFAULT CHARSET=utf8mb4;
@ -739,7 +742,9 @@ CREATE TABLE IF NOT EXISTS `photo` (
`deny_cid` mediumtext,
`deny_gid` mediumtext,
PRIMARY KEY(`id`),
INDEX `uid` (`uid`),
INDEX `uid_contactid` (`uid`,`contact-id`),
INDEX `uid_profile` (`uid`,`profile`),
INDEX `uid_album_created` (`uid`,`album`,`created`),
INDEX `resource-id` (`resource-id`),
INDEX `guid` (`guid`)
) DEFAULT CHARSET=utf8mb4;
@ -894,6 +899,7 @@ CREATE TABLE IF NOT EXISTS `register` (
`uid` int(11) unsigned NOT NULL DEFAULT 0,
`password` varchar(255) NOT NULL DEFAULT '',
`language` varchar(16) NOT NULL DEFAULT '',
`note` text,
PRIMARY KEY(`id`)
) DEFAULT CHARSET=utf8mb4;
@ -974,6 +980,7 @@ CREATE TABLE IF NOT EXISTS `term` (
INDEX `type_term` (`type`,`term`),
INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`,`global`,`created`),
INDEX `otype_type_term_tid` (`otype`,`type`,`term`,`tid`),
INDEX `uid_otype_type_url` (`uid`,`otype`,`type`,`url`),
INDEX `guid` (`guid`)
) DEFAULT CHARSET=utf8mb4;

View file

@ -1,6 +1,8 @@
Accesskeys in Friendica
=======================
* [Home](help)
General
-------
* p: profile

View file

@ -473,6 +473,10 @@ You can embed video, audio and more in a message.
<td>[vimeo]Vimeo video ID[/vimeo]</td>
<td>Vimeo player iframe embed.</td>
</tr>
<tr>
<td>[embed]URL[/embed]</td>
<td>Embed OEmbed rich content.</td>
</tr>
<tr>
<td>[iframe]URL[/iframe]</td>
<td>General embed, iframe size is limited by the theme size for video players.</td>

View file

@ -9,7 +9,7 @@ This helps us get new features faster.
You can also contact the [friendica support forum](https://helpers.pyxis.uberspace.de/profile/helpers) and report your problem there.
Maybe someone from another node encountered the problem as well and can help you.
If you're a technical user, or your site doesn't have a support page, you'll need to use the [Bug Tracker](http://bugs.friendica.com/).
If you're a technical user, or your site doesn't have a support page, you'll need to use the [Bug Tracker](https://github.com/friendica/friendica/issues).
Please perform a search to see if there's already an open bug that matches yours before submitting anything.
Try to provide as much information as you can about the bug, including the **full** text of any error messages or notices, and any steps required to replicate the problem in as much detail as possible.

View file

@ -7,11 +7,11 @@ Friendica Documentation and Resources
* [Account Basics](help/Account-Basics)
* [New User Quick Start](help/Quick-Start-guide)
* [Creating posts](help/Text_editor)
* [BBCode tag reference](help/BBCode)
* [BBCode tag reference](help/BBCode)
* [Comment, sort and delete posts](help/Text_comment)
* [Profiles](help/Profiles)
* [Accesskey reference](help/Accesskeys)
* [Events](help/events)
* [Events](help/events)
* You and other users
* [Connectors](help/Connectors)
* [Making Friends](help/Making-Friends)
@ -20,7 +20,6 @@ Friendica Documentation and Resources
* [Community Forums](help/Forums)
* [Chats](help/Chats)
* Further information
* [Improve Performance](help/Improve-Performance)
* [Move your account](help/Move-Account)
* [Delete your account](help/Remove-Account)
* [Frequently asked questions (FAQ)](help/FAQ)
@ -31,10 +30,9 @@ Friendica Documentation and Resources
* [Settings & Admin Panel](help/Settings)
* [Installing Connectors (Twitter/GNU Social)](help/Installing-Connectors)
* [Install an ejabberd server (XMPP chat) with synchronized credentials](help/install-ejabberd)
* [Message Flow](help/Message-Flow)
* [Using SSL with Friendica](help/SSL)
* [Twitter/GNU Social API Functions](help/api)
* [Config values that can only be set in .htconfig.php](help/htconfig)
* [Improve Performance](help/Improve-Performance)
**Developer Manual**
@ -46,9 +44,11 @@ Friendica Documentation and Resources
* [Plugin Development](help/Plugins)
* [Theme Development](help/themes)
* [Smarty 3 Templates](help/smarty3-templates)
* [Protocol Documentation](help/Protocol)
* [Database schema documantation](help/database)
* [Class Autoloading](help/autoloader)
* [Code - Reference(Doxygen generated - sets cookies)](doc/html/)
* [Twitter/GNU Social API Functions](help/api)
**External Resources**

View file

@ -4,7 +4,7 @@ Friendica Message Flow
This page documents some of the details of how messages get from one person to another in the Friendica network.
There are multiple paths, using multiple protocols and message formats.
Those attempting to understand these message flows should become familiar with (at the minimum) the [DFRN protocol document](http://dfrn.org/dfrn.pdf) and the message passing elements of the OStatus stack (salmon and Pubsubhubbub).
Those attempting to understand these message flows should become familiar with (at the minimum) the [DFRN protocol document](https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf) and the message passing elements of the OStatus stack (salmon and Pubsubhubbub).
Most message passing involves the file include/items.php, which has functions for several feed-related import/export activities.
@ -21,8 +21,8 @@ Push (pubsubhubbub) feeds arrive via mod/pubsub.php
DFRN-poll feed imports arrive via include/poller.php as a scheduled task, this implements the local side of the DFRN-poll protocol.
Scenario #1. Bob posts a public status message
---
### Scenario #1. Bob posts a public status message
This is a public message with no conversation members so no private transport is used.
There are two paths it can take - as a bbcode path to DFRN clients, and converted to HTML with the server's PuSH (pubsubhubbub) hubs notified.
When a PuSH hub is operational, dfrn-poll clients prefer to receive their information through the PuSH channel.
@ -30,31 +30,31 @@ They will fall back on a daily poll in case the hub has delivery issues (this is
If there is no specified hub or hubs, DFRN clients will poll at a configurable (per-contact) rate at up to 5-minute intervals.
Feeds retrieved via dfrn-poll are bbcode and may also contain private conversations which the poller has permissions to see.
Scenario #2. Jack replies to Bob's public message. Jack is on the Friendica/DFRN network.
---
### Scenario #2. Jack replies to Bob's public message. Jack is on the Friendica/DFRN network.
Jack uses dfrn-notify to send a direct reply to Bob.
Bob then creates a feed of the conversation and sends it to everybody involved in the conversation using dfrn-notify.
PuSH hubs are notified that new content is available.
The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks).
Scenario #3. Mary replies to Bob's public message. Mary is on the Friendica/DFRN network.
---
### Scenario #3. Mary replies to Bob's public message. Mary is on the Friendica/DFRN network.
Mary uses dfrn-notify to send a direct reply to Bob.
Bob then creates a feed of the conversation and sends it to everybody involved in the conversation (excluding himself, the conversation is now sent to both Jack and Mary).
Messages are sent using dfrn-notify.
Push hubs are also notified that new content is available.
The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks).
Scenario #4. William replies to Bob's public message. William is on the OStatus network.
---
### Scenario #4. William replies to Bob's public message. William is on the OStatus network.
William uses salmon to notify Bob of the reply.
Content is html embedded in salmon magic envelope.
Bob then creates a feed of the conversation and sends it to all Friendica participants involved in the conversation using dfrn-notify (excluding himself, the conversation is sent to both Jack and Mary).
Push hubs are notified that new content is available.
The hub or hubs will then retrieve the latest feed and transmit it to all hub subscribers (which may be on different networks).
Scenario #5. Bob posts a private message to Mary and Jack.
---
### Scenario #5. Bob posts a private message to Mary and Jack.
Message is delivered immediately to Mary and Jack using dfrn_notify.
Public hubs are not notified.
Requeueing is attempted in case of timeout.

42
doc/Protocol.md Normal file
View file

@ -0,0 +1,42 @@
Used Protocols
===============
* [Home](help)
Friendicas DFRN Protocol
---
* [Document with the DFRN specification](spec/dfrn2.pdf)
* [Schema of the contact request process](spec/dfrn2_contact_request.png)
* [Schema of the contact request confirmation](spec/dfrn2_contact_confirmation.png)
* [Description of the message flow](help/Message-Flow)
ActivityStreams
---
Friendica is using ActivityStreams in version 1.0 for its activities and object types.
Additional types are used for non standard activities.
* [Link to the specification](http://activitystrea.ms/head/activity-schema.html)
* [List of used ActivityStreams verbs and object types.](https://github.com/friendica/friendica/wiki/ActivityStreams)
Salmon
---
Salmon is used as a message exchange protocol for replies and mentions.
* [Link to the protocol summary](http://www.salmon-protocol.org/salmon-protocol-summary)
Portable Contacts
---
Portable Contacts is used for friends lists.
* [Link to the specification](https://web.archive.org/web/20160426223008/http://portablecontacts.net/draft-spec.html) (Link to archive.org)
pubsubhubbub
---
pubsubhubbub is used for OStatus.
* [Link to the specification](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html)

View file

@ -5,7 +5,7 @@ Using SSL with Friendica
Disclaimer
---
**This document has been updated in November 2015.
**This document has been updated in November 2016.
SSL encryption is relevant for security.
This means that recommended settings change fast.
Keep your setup up to date and do not rely on this document being updated as fast as technologies change!**
@ -40,65 +40,26 @@ If your Friendica instance is running on a shared hosting platform, you should f
They have instructions for you on how to do it there.
You can always order a paid certificate with your provider.
They will either install it for you or provide an easy way to upload the certificate and the key via a web interface.
It might be worth asking if your provider would install a certificate you provide yourself, to save money.
If so, read on.
Getting a free StartSSL certificate
---
StartSSL is a certificate authority that issues certificates for free.
They are valid for a year and are sufficient for our purposes.
### Step 1: Create a client certificate
When you initially sign up with StartSSL, you receive a certificate that is installed in your browser.
You need it for the login on startssl.com, also when coming back to the site later.
It has nothing to do with the SSL certificate for your server.
### Step 2: Validate your email address and your domain
To continue you have to prove that you own the email address you specified and the domain that you want a certificate for.
Specify your email address, request a validation link via email from the "validations wizard".
Same procedure for the domain validation.
### Step 3: Request the certificate
Go to the "certificates wizard".
Choose the target web server.
When you are first prompted for a domain to certify, you need to enter your main domain, e.g. example.com.
In the next step, you will be able to specify a subdomain for Friendica, if needed.
Example: If you have friendica.example.com, you first enter example.com, then specify the subdomain friendica later.
If you know how to generate an openssl key and a certificate signing request (csr) yourself, do so.
Paste the csr into your browser to get it signed by StartSSL.
If you do not know how to generate a key and a csr, accept StartSSL's offer to generate it for you.
This means: StartSSL has the key to your encryption but it is better than no certificate at all.
Download your certificate from the website.
(Or in the second case: Download your certificate and your key.)
To install your certificate on a server, you need one or two extra files: sub.class1.server.ca.pem and ca.pem, delivered by startssl.com
Go to the "Tool box" section and download "Class 1 Intermediate Server CA" and "StartCom Root CA (PEM encoded)".
If you want to send your certificate to your hosting provider, they need the certificate, the key and probably at least the intermediate server CA.
To be sure, send those three and the ca.pem file.
With some providers, you have to send them your certificate.
They need the certificate, the key and the CA's intermediate certificate.
To be sure, send those three files.
**You should send them to your provider via an encrypted channel!**
If you run your own server, upload the files and check out the Mozilla wiki link below.
Let's encrypt
Own server
---
If you run your own server, the "Let's encrypt" initiative might become an interesting alternative.
Their offer is in public beta right now.
Check out [their website](https://letsencrypt.org/) for status updates.
If you run your own server, we recommend to check out the ["Let's Encrypt" initiative](https://letsencrypt.org/).
Not only do they offer free SSL certificates, but also a way to automate their renewal.
You need to install a client software on your server to use it.
Instructions for the official client are [here](https://certbot.eff.org/).
Depending on your needs, you might want to look at the [list of alternative letsencrypt clients](https://letsencrypt.org/docs/client-options/).
Web server settings
---
Visit the [Mozilla's wiki](https://wiki.mozilla.org/Security/Server_Side_TLS) for instructions on how to configure a secure webserver.
They provide recommendations for [different web servers](https://wiki.mozilla.org/Security/Server_Side_TLS#Recommended_Server_Configurations).
They provide recommendations for [different web servers](https://mozilla.github.io/server-side-tls/ssl-config-generator/).
Test your SSL settings
---

View file

@ -1,5 +1,7 @@
# Settings
* [Home](help)
If you are the admin of a Friendica node, you have access to the so called **Admin Panel** where you can configure your Friendica node.
On the front page of the admin panel you will see a summary of information about your node.

View file

@ -8,7 +8,11 @@ Getting started
[Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers.
No need to setup up a webserver, database etc. before actually starting.
Vagrant creates a virtual machine (an Ubuntu 14.04) for you that you can just run inside VirtualBox and start to work directly on Friendica.
Vagrant creates a virtual machine for you that you can just run inside VirtualBox and start to work directly on Friendica.
You can choose between two different Ubuntu Linux versions:
1. Ubuntu Trusty (14.04) with PHP 5.5.9 and MySQL 5.5.53
2. Ubuntu Xenial (16.04) with PHP 7.0 and MySQL 5.7.16
What you need to do:
@ -16,21 +20,27 @@ What you need to do:
Please use an up-to-date vagrant version from https://www.vagrantup.com/downloads.html.
2. Git clone your Friendica repository.
Inside, you'll find a "Vagrantfile" and some scripts in the utils folder.
3. Run "vagrant up" from inside the friendica clone.
3. Choose the Ubuntu version you'll need und run "vagrant up <ubuntu-version>" from inside the friendica clone:
$> vagrant up trusty
$> vagrant up xenial
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.
4. Run "vagrant ssh <ubuntu-version>" to log into the virtual machine to log in to the VM:
$> vagrant ssh trusty
$> vagrant ssh xenial
5. Open you test installation in a browser.
If you selected an Ubuntu Trusty go to 192.168.22.10.
If you started a Xenial machine go to 192.168.22.11.
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).
Your local working directory is set up as a shared directory with the VM (/vagrant).
7. Check the changes in your browser in the VM.
Debug via the "vagrant ssh" login.
Debug via the "vagrant ssh <ubuntu-version>" login.
Find the Friendica log file /vagrant/logfile.out.
8. Commit and push your changes directly back to Github.
If you want to stop vagrant after finishing your work, run the following command
$> vagrant halt
$> vagrant halt <ubuntu-version>
in the development directory.
@ -44,10 +54,3 @@ You will then have the following accounts to login:
* friendica2 and friendica3 are conntected. friendica4 and friendica5 are connected.
For further documentation of vagrant, please see [the vagrant*docs*](https://docs.vagrantup.com/v2/).
**Important notice:**
If you already had an Ubuntu 12.04 Vagrant VM, please run
$> vagrant destroy
before starting the new 14.04 machine.

View file

@ -1,5 +1,8 @@
Friendica API
===
* [Home](help)
The Friendica API aims to be compatible to the [GNU Social API](http://wiki.gnusocial.de/gnusocial:api) and the [Twitter API](https://dev.twitter.com/rest/public).
Please refer to the linked documentation for further information.

View file

@ -474,6 +474,10 @@ Du kannst Videos, Musikdateien und weitere Dinge in Beitr&auml;gen einbinden.
<td>[vimeo]Vimeo video ID[/vimeo]</td>
<td>Vimeo-Player im iframe einbinden.</td>
</tr>
<tr>
<td>[embed]URL[/embed]</td>
<td>OEmbed rich content einbetten.</td>
</tr>
<tr>
<td>[iframe]URL[/iframe]</td>
<td>General embed, iframe size is limited by the theme size for video players.</td>

View file

@ -6,7 +6,7 @@ Bugs und Probleme
Du solltest jeden Bug und jedes Problem, den/das Du findest, zunächst dem Administrator (oder gegebenenfalls der Support-Seite) Deines Servers melden, statt auf der allgemeinen Bug-Seite.
Das erleichtert den Entwicklern ihre Arbeit (z. B. neue Features zu entwickeln), da sie sich nicht mit Fehlern beschäftigen müssen, mit denen sie nichts zu tun haben.
Wenn Du technisch versiert bist oder Dein Knoten keine Support-Seite hat, dann kannst Du den <a href="http://bugs.friendica.com/">Bug Tracker</a> nutzen.
Wenn Du technisch versiert bist oder Dein Knoten keine Support-Seite hat, dann kannst Du den <a href="https://github.com/friendica/friendica/issues">Bug Tracker</a> nutzen.
Bitte durchsuche zunächst die Seite, ob es bereits einen offenen Bug gibt, der Deiner Anfrage entspricht.
Liefere so viele Informationen wie möglich zu dem Bug.

View file

@ -20,38 +20,37 @@ Friendica - Dokumentation und Ressourcen
* [Community-Foren](help/Forums)
* [Chats](help/Chats)
* Weiterführende Informationen
* [Performance verbessern](help/Improve-Performance)
* [Account umziehen](help/Move-Account)
* [Account löschen](help/Remove-Account)
* [Bugs und Probleme](help/Bugs-and-Issues)
* [Häufig gestellte Fragen (FAQ)](help/FAQ)
**Technische Dokumentation**
**Dokumentation für Administratoren**
* [Installation](help/Install)
* [Konfigurationen & Admin-Panel](help/Settings)
* [Plugins](help/Plugins)
* [Konnektoren (Connectors) installieren (Twitter/GNU Social)](help/Installing-Connectors)
* [Installation eines ejabberd Servers (XMPP-Chat) mit synchronisierten Anmeldedaten](help/install-ejabberd) (EN)
* [Nachrichtenfluss](help/Message-Flow)
* [Betreibe deine Seite mit einem SSL-Zertifikat](help/SSL)
* [Entwickler](help/Developers)
* [Twitter/GNU Social API Functions](help/api) (EN)
* [Translation of Friendica](help/translations) (EN)
* [Konfigurationswerte, die nur in der .htconfig.php gesetzt werden können](help/htconfig) (EN)
* [Performance verbessern](help/Improve-Performance)
**Entwickler Dokumentation**
**Dokumentation für Entwickler**
* [Where to get started?](help/Developers-Intro)
* [Entwickler](help/Developers)
* [Where to get started?](help/Developers-Intro) (EN)
* [Help on Github](help/Github)
* [Help on Vagrant](help/Vagrant)
* [How to translate Friendica](help/translations)
* [How to translate Friendica](help/translations) (EN)
* [Bugs and Issues](help/Bugs-and-Issues)
* [Plugin Development](help/Plugins)
* [Theme Development](help/themes)
* [Smarty 3 Templates](help/smarty3-templates)
* [Protokoll Dokumentation](help/Protocol) (EN)
* [Datenbank-Schema](help/database)
* [Code-Referenz (mit doxygen generiert - setzt Cookies)](doc/html/)
* [Twitter/GNU Social API Functions](help/api) (EN)
**Externe Ressourcen**

View file

@ -6,7 +6,7 @@ Friendica Nachrichtenfluss
Diese Seite soll einige Infos darüber dokumentieren, wie Nachrichten innerhalb von Friendica von einer Person zur anderen übertragen werden.
Es gibt verschiedene Pfade, die verschiedene Protokolle und Nachrichtenformate nutzen.
Diejenigen, die den Nachrichtenfluss genauer verstehen wollen, sollten sich mindestens mit dem DFRN-Protokoll (http://dfrn.org/dfrn.pdf) und den Elementen zur Nachrichtenverarbeitung des OStatus Stack informieren (salmon und Pubsubhubbub).
Diejenigen, die den Nachrichtenfluss genauer verstehen wollen, sollten sich mindestens mit dem DFRN-Protokoll ([Dokument mit den DFRN Spezifikationen](https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf)) und den Elementen zur Nachrichtenverarbeitung des OStatus Stack informieren (salmon und Pubsubhubbub).
Der Großteil der Nachrichtenverarbeitung nutzt die Datei include/items.php, welche Funktionen für verschiedene Feed-bezogene Import-/Exportaktivitäten liefert.
@ -24,7 +24,7 @@ PuSh-Feeds (pubsubhubbub) kommen via mod/pubsub.php an.
DFRN-poll Feed-Imports kommen via include/poller.php als geplanter Task an, das implementiert die lokale Bearbeitung (local side) des DFRN-Protokolls.
Szenario #1. Bob schreibt eine öffentliche Statusnachricht
### Szenario #1. Bob schreibt eine öffentliche Statusnachricht
Dies ist eine öffentliche Nachricht ohne begrenzte Nutzerfreigabe, so dass keine private Übertragung notwendig ist.
Es gibt zwei Wege, die genutzt werden können - als bbcode an DFRN-Clients oder als durch den Server konvertierten HTML-Code (mit PuSH; pubsubhubbub).
@ -33,13 +33,13 @@ Sie fallen zurück auf eine tägliche Abfrage, wenn der Hub Übertragungsschwier
Wenn kein spezifizierter Hub oder Hubs ausgewählt sind, werden DFRN-Clients in einer pro Kontakt konfigurierbaren Rate mit bis zu 5-Minuten-Intervallen abfragen.
Feeds, die via DFRN-Poll abgerufen werden, sind bbcode und können auch private Unterhaltungen enthalten, die vom Poller auf ihre Zugriffsrechte hin geprüft werden.
Szenario #2. Jack antwortet auf Bobs öffentliche Nachricht. Jack ist im Friendica/DFRN-Netzwerk.
### Szenario #2. Jack antwortet auf Bobs öffentliche Nachricht. Jack ist im Friendica/DFRN-Netzwerk.
Jack nutzt dfrn-notify, um eine direkte Antwort an Bob zu schicken.
Bob erstellt dann einen Feed der Unterhaltung und sendet diesen an jeden, der an der Unterhaltung beteiligt ist und dfrn-notify nutzt.
Die PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. Der/die Hub/s erhalten dann die neuesten Feeds und übertragen diese an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können).
Szenario #3. Mary antwortet auf Bobs öffentliche Nachricht. Mary ist im Friendica/DFRN-Netzwerk.
### Szenario #3. Mary antwortet auf Bobs öffentliche Nachricht. Mary ist im Friendica/DFRN-Netzwerk.
Mary nutzt dfrn-notify, um eine direkte Antwort an Bob zu schicken.
Bob erstellt dann einen Feed der Unterhaltung und sendet diesen an jeden, der an der Unterhaltung beteiligt ist (mit Ausnahme von Bob selbst; die Unterhaltung wird nun an Jack und Mary geschickt).
@ -47,14 +47,14 @@ Die Nachrichten werden mit dfrn-notify übertragen.
PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist.
Der/die Hub/s erhalten dann die neuesten Feeds und übertragen sie an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können).
Szenario #4. William antwortet auf Bobs öffentliche Nachricht. William ist in einem OStatus-Netzwerk.
### Szenario #4. William antwortet auf Bobs öffentliche Nachricht. William ist in einem OStatus-Netzwerk.
William nutzt salmon, um Bob über seine Antwort zu benachrichtigen.
Der Inhalt ist HTML-Code, der in das Salmon Magic Envelope eingebettet ist.
Bob erstellt dann einen Feed der Unterhaltung und sendet es an alle Friendica-Nutzer, die an der Unterhaltung beteiligt sind und dfrn-notify nutzen (mit Ausnahme von William selbst; die Unterhaltung wird an Jack und Mary weitergeleitet).
PuSH-Hubs werden darüber informiert, dass neuer Inhalt verfügbar ist. Der/die Hub/s erhalten dann die neuesten Feeds und übertragen sie an alle Hub-Teilnehmer (die auch zu verschiedenen Netzwerken gehören können).
Szenario #5. Bob schreibt eine private Nachricht an Mary und Jack.
### Szenario #5. Bob schreibt eine private Nachricht an Mary und Jack.
Die Nachricht wird sofort an Mary und Jack mit Hilfe von dfrn_notify geschickt.
Öffentliche Hubs werden nicht benachrichtigt.

View file

@ -5,7 +5,7 @@ Friendica mit SSL nutzen
Disclaimer
---
**Dieses Dokument wurde im November 2015 aktualisiert.
**Dieses Dokument wurde im November 2016 aktualisiert.
SSL-Verschlüsselung ist sicherheitskritisch.
Das bedeutet, dass sich die empfohlenen Einstellungen schnell verändern.
Halte deine Installation auf dem aktuellen Stand und verlasse dich nicht darauf, dass dieses Dokument genau so schnell aktualisiert wird, wie sich Technologien verändern!**
@ -45,55 +45,15 @@ Sie installieren es für dich oder haben in der Weboberfläche eine einfache Upl
Um Geld zu sparen, kann es sich lohnen, dort auch nachzufragen, ob sie ein anderes Zertifikat, das du selbst beschaffst, für dich installieren würden.
Wenn ja, dann lies weiter.
Ein kostenloses StartSSL-Zertifikat besorgen
---
StartSSL ist eine Zertifizierungsstelle, die kostenlose Zertifikate ausstellt.
Sie sind für ein Jahr gültig und genügen für unsere Zwecke.
### Schritt 1: Client-Zertifikat erstellen
Wenn du dich erstmalig bei StartSSL anmeldest, erhältst du ein Zertifikat, das in deinem Browser installiert wird.
Du brauchst es, um dich bei StartSSL einzuloggen, auch wenn du später wiederkommst.
Dieses Client-Zertifikat hat nichts mit dem SSL-Zertifikat für deinen Server zu tun.
### Schritt 2: Email-Adresse und Domain validieren
Um fortzufahren musst du beweisen, dass du die Email-Adresse, die du angegeben hast, und die Domain, für die du das Zertifikat möchtest, besitzt.
Gehe in den "Validation wizard" und fordere einen Bestätigungslink per Mail an.
Dasselbe machst du auch für die Validierung der Domain.
### Schritt 3: Das Zertifikat bestellen
Gehe in den "Certificate wizard".
Wähle das Target Webserver.
Bei der ersten Abfrage der Domain gibst du deine Hauptdomain an.
Im nächsten Schritt kannst du eine Subdomain hinzufügen.
Ein Beispiel: Wenn die Adresse der Friendica-Instanz friendica.beispiel.net lautet, gibst du zuerst beispiel.net an und danach friendica.
Wenn du weißt, wie man einen openssl-Schlüssel und einen Certificate Signing Request (CSR) erstellt, tu das.
Kopiere den CSR in den Browser, um ihn von StartSSL signiert zu bekommen.
Wenn du nicht weißt, wie man Schlüssel und CSR erzeugt, nimm das Angebot von StartSSL an, beides für dich zu generieren.
Das bedeutet: StartSSL hat den Schlüssel zu deiner SSL-Verschlüsselung, aber das ist immer noch besser als gar kein Zertifikat.
Lade dein Zertifikat von der Website herunter.
(Oder im zweiten Fall: Lade Zertifikat und Schlüssel herunter.)
Um dein Zertifikat auf einem Webserver zu installieren, brauchst du noch ein oder zwei andere Dateien: sub.class1.server.ca.pem und ca.pem, auch von StartSSL.
Gehe in die Rubrik "Tool box" und lade "Class 1 Intermediate Server CA" und "StartCom Root CA (PEM encoded)" herunter.
Wenn du dein Zertifikat zu deinem Hosting-Provider schicken möchtest, brauchen Sie mindestens Zertifikat und Schlüssel.
Schick zur Sicherheit alle vier Dateien hin.
**Du solltest sie auf einem verschlüsselten Weg hinschicken!**
Wenn du deinen eigenen Server betreibst, lade die Dateien hoch und besuche das Mozilla-Wiki (Link unten).
Let's encrypt
---
Wenn du einen eigenen Server betreibst und den Nameserver kontrollierst, könnte auch die Initiative "Let's encrypt" interessant für dich werden.
Momentan ist deren Angebot noch nicht fertig.
Auf der [Website](https://letsencrypt.org/) kannst du dich über den Stand informieren.
Sie bietet nicht nur freie SSL Zertifikate sondern auch einen automatisierten Prozess zum Erneuern der Zertifikate.
Um letsencrypt Zertifikate verwenden zu können, musst du dir einen Client auf deinem Server installieren.
Eine Anleitung zum offiziellen Client findet du [hier](https://certbot.eff.org/).
Falls du dir andere Clients anschauen willst, kannst du einen Blick in diese [Liste von alternativen letsencrypt Clients](https://letsencrypt.org/docs/client-options/).
Webserver-Einstellungen
---

View file

@ -1,5 +1,7 @@
# Settings
* [Zur Startseite der Hilfe](help)
Wenn du der Administrator einer Friendica Instanz bist, hast du Zugriff auf das so genannte **Admin Panel** in dem du die Friendica Instanz konfigurieren kannst,
Auf der Startseite des Admin Panels werden die Informationen zu der Instanz zusammengefasst.

View file

@ -52,6 +52,8 @@ Cleanzero <img src="doc/img/editor_zero.png" alt="cleanzero.png" style="padding
Darkbubble <img src="doc/img/editor_darkbubble.png" alt="darkbubble.png" style="padding-left: 14px; vertical-align:middle;"> <i>(inkl. smoothly, testbubble)</i>
Frio <img src="doc/img/editor_frio.png" alt="frio.png" style="padding-left: 44px; vertical-align:middle;">
Frost <img src="doc/img/editor_frost.png" alt="frost.png" style="padding-left: 42px; vertical-align:middle;">
Vier <img src="doc/img/editor_vier.png" alt="vier.png" style="padding-left: 44px; vertical-align:middle;"> <i>(inkl. dispy)</i>

View file

@ -1,6 +1,8 @@
Config values that can only be set in .htconfig.php
===================================================
* [Home](help)
There are some config values that haven't found their way into the administration page.
This has several reasons.
Maybe they are part of a current development that isn't considered stable and will be added later in the administration page when it is considered safe.
@ -14,76 +16,78 @@ Example: To set the directory value please add this line to your .htconfig.php:
$a->config['system']['directory'] = 'http://dir.friendi.ca';
## Jabber ##
* debug (Boolean) - Enable debug level for the jabber account synchronisation.
* logfile - Logfile for the jabber account synchronisation.
## jabber ##
* **debug** (Boolean) - Enable debug level for the jabber account synchronisation.
* **logfile** - Logfile for the jabber account synchronisation.
## System ##
## system ##
* birthday_input_format - Default value is "ymd".
* block_local_dir (Boolean) - Blocks the access to the directory of the local users.
* default_service_class -
* delivery_batch_count - Number of deliveries per process. Default value is 1. (Disabled when using the worker)
* diaspora_test (Boolean) - For development only. Disables the message transfer.
* directory - The path to global directory. If not set then "http://dir.friendi.ca" is used.
* disable_email_validation (Boolean) - Disables the check if a mail address is in a valid format and can be resolved via DNS.
* disable_url_validation (Boolean) - Disables the DNS lookup of an URL.
* event_input_format - Default value is "ymd".
* ignore_cache (Boolean) - For development only. Disables the item cache.
* like_no_comment (Boolean) - Don't update the "commented" value of an item when it is liked.
* local_block (Boolean) - Used in conjunction with "block_public".
* local_search (Boolean) - Blocks the search for not logged in users to prevent crawlers from blocking your system.
* max_connections - The poller process isn't started when the maximum level of the possible database connections are used. When the system can't detect the maximum numbers of connection then this value can be used.
* max_connections_level - The maximum level of connections that are allowed to let the poller start. It is a percentage value. Default value is 75.
* max_contact_queue - Default value is 500.
* max_batch_queue - Default value is 1000.
* max_processes_backend - Maximum number of concurrent database processes for background tasks. Default value is 5.
* max_processes_frontend - Maximum number of concurrent database processes for foreground tasks. Default value is 20.
* memcache (Boolean) - Use memcache. To use memcache the PECL extension "memcache" has to be installed and activated.
* memcache_host - Hostname of the memcache daemon. Default is '127.0.0.1'.
* memcache_port- Portnumberof the memcache daemon. Default is 11211.
* no_oembed (Boolean) - Don't use OEmbed to fetch more information about a link.
* no_oembed_rich_content (Boolean) - Don't show the rich content (e.g. embedded PDF).
* no_smilies (Boolean) - Don't show smilies.
* no_view_full_size (Boolean) - Don't add the link "View full size" under a resized image.
* optimize_items (Boolean) - Triggers an SQL command to optimize the item table before expiring items.
* ostatus_poll_timeframe - Defines how old an item can be to try to complete the conversation with it.
* paranoia (Boolean) - Log out users if their IP address changed.
* permit_crawling (Boolean) - Restricts the search for not logged in users to one search per minute.
* profiler (Boolean) - Enable internal timings to help optimize code. Needed for "rendertime" addon. Default is false.
* free_crawls - Number of "free" searches when "permit_crawling" is activated (Default value is 10)
* crawl_permit_period - Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated (Default value is 60)
* png_quality - Default value is 8.
* proc_windows (Boolean) - Should be enabled if Friendica is running under Windows.
* proxy_cache_time - Time after which the cache is cleared. Default value is one day.
* pushpoll_frequency -
* qsearch_limit - Default value is 100.
* relay_server - Experimental Diaspora feature. Address of the relay server where public posts should be send to. For example https://podrelay.net
* relay_subscribe (Boolean) - Enables the receiving of public posts from the relay. They will be included in the search and on the community page when it is set up to show all public items.
* relay_scope - Can be "all" or "tags". "all" means that every public post should be received. "tags" means that only posts with selected tags should be received.
* relay_server_tags - Comma separated list of tags for the "tags" subscription (see "relay_scrope")
* relay_user_tags (Boolean) - If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".
* remove_multiplicated_lines (Boolean) - If enabled, multiple linefeeds in items are stripped to a single one.
* show_unsupported_addons (Boolean) - Show all addons including the unsupported ones.
* show_unsupported_themes (Boolean) - Show all themes including the unsupported ones.
* throttle_limit_day - Maximum number of posts that a user can send per day with the API.
* throttle_limit_week - Maximum number of posts that a user can send per week with the API.
* throttle_limit_month - Maximum number of posts that a user can send per month with the API.
* wall-to-wall_share (Boolean) - Displays forwarded posts like "wall-to-wall" posts.
* worker_cooldown - Cooldown time after each worker function call. Default value is 0 seconds.
* xrd_timeout - Timeout for fetching the XRD links. Default value is 20 seconds.
* **allowed_link_protocols** (Array) - Allowed protocols in links URLs, add at your own risk. http is always allowed.
* **birthday_input_format** - Default value is "ymd".
* **block_local_dir** (Boolean) - Blocks the access to the directory of the local users.
* **default_service_class** -
* **delivery_batch_count** - Number of deliveries per process. Default value is 1. (Disabled when using the worker)
* **diaspora_test** (Boolean) - For development only. Disables the message transfer.
* **directory** - The path to global directory. If not set then "http://dir.friendi.ca" is used.
* **disable_email_validation** (Boolean) - Disables the check if a mail address is in a valid format and can be resolved via DNS.
* **disable_url_validation** (Boolean) - Disables the DNS lookup of an URL.
* **event_input_format** - Default value is "ymd".
* **frontend_worker_timeout** - Value in minutes after we think that a frontend task was killed by the webserver. Default value is 10.
* **ignore_cache** (Boolean) - For development only. Disables the item cache.
* **like_no_comment** (Boolean) - Don't update the "commented" value of an item when it is liked.
* **local_block** (Boolean) - Used in conjunction with "block_public".
* **local_search** (Boolean) - Blocks the search for not logged in users to prevent crawlers from blocking your system.
* **max_connections** - The poller process isn't started when the maximum level of the possible database connections are used. When the system can't detect the maximum numbers of connection then this value can be used.
* **max_connections_level** - The maximum level of connections that are allowed to let the poller start. It is a percentage value. Default value is 75.
* **max_contact_queue** - Default value is 500.
* **max_batch_queue** - Default value is 1000.
* **max_processes_backend** - Maximum number of concurrent database processes for background tasks. Default value is 5.
* **max_processes_frontend** - Maximum number of concurrent database processes for foreground tasks. Default value is 20.
* **memcache** (Boolean) - Use memcache. To use memcache the PECL extension "memcache" has to be installed and activated.
* **memcache_host** - Hostname of the memcache daemon. Default is '127.0.0.1'.
* **memcache_port** - Portnumberof the memcache daemon. Default is 11211.
* **no_oembed** (Boolean) - Don't use OEmbed to fetch more information about a link.
* **no_oembed_rich_content** (Boolean) - Don't show the rich content (e.g. embedded PDF).
* **no_smilies** (Boolean) - Don't show smilies.
* **no_view_full_size** (Boolean) - Don't add the link "View full size" under a resized image.
* **optimize_items** (Boolean) - Triggers an SQL command to optimize the item table before expiring items.
* **ostatus_poll_timeframe** - Defines how old an item can be to try to complete the conversation with it.
* **paranoia** (Boolean) - Log out users if their IP address changed.
* **permit_crawling** (Boolean) - Restricts the search for not logged in users to one search per minute.
* **profiler** (Boolean) - Enable internal timings to help optimize code. Needed for "rendertime" addon. Default is false.
* **free_crawls** - Number of "free" searches when "permit_crawling" is activated (Default value is 10)
* **crawl_permit_period** - Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated (Default value is 60)
* **png_quality** - Default value is 8.
* **proc_windows** (Boolean) - Should be enabled if Friendica is running under Windows.
* **proxy_cache_time** - Time after which the cache is cleared. Default value is one day.
* **pushpoll_frequency** -
* **qsearch_limit** - Default value is 100.
* **relay_server** - Experimental Diaspora feature. Address of the relay server where public posts should be send to. For example https://podrelay.net
* **relay_subscribe** (Boolean) - Enables the receiving of public posts from the relay. They will be included in the search and on the community page when it is set up to show all public items.
* **relay_scope** - Can be "all" or "tags". "all" means that every public post should be received. "tags" means that only posts with selected tags should be received.
* **relay_server_tags** - Comma separated list of tags for the "tags" subscription (see "relay_scrope")
* **relay_user_tags** (Boolean) - If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".
* **remove_multiplicated_lines** (Boolean) - If enabled, multiple linefeeds in items are stripped to a single one.
* **show_unsupported_addons** (Boolean) - Show all addons including the unsupported ones.
* **show_unsupported_themes** (Boolean) - Show all themes including the unsupported ones.
* **throttle_limit_day** - Maximum number of posts that a user can send per day with the API.
* **throttle_limit_week** - Maximum number of posts that a user can send per week with the API.
* **throttle_limit_month** - Maximum number of posts that a user can send per month with the API.
* **wall-to-wall_share** (Boolean) - Displays forwarded posts like "wall-to-wall" posts.
* **worker_cooldown** - Cooldown time after each worker function call. Default value is 0 seconds.
* **xrd_timeout** - Timeout for fetching the XRD links. Default value is 20 seconds.
## service_class ##
* upgrade_link -
* **upgrade_link** -
## experimentals ##
* exp_themes (Boolean) - Show experimental themes as well.
* **exp_themes** (Boolean) - Show experimental themes as well.
## theme ##
* hide_eventlist (Boolean) - Don't show the birthdays and events on the profile and network page
* **hide_eventlist** (Boolean) - Don't show the birthdays and events on the profile and network page
# Administrator Options #

BIN
doc/img/editor_frio.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,6 +1,8 @@
Friendica translations
======================
* [Home](help)
Translation Process
-------------------

View file

@ -66,7 +66,7 @@ $a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero';
// default system theme
$a->config['system']['theme'] = 'duepuntozero';
$a->config['system']['theme'] = 'vier';
// By default allow pseudonyms
@ -78,3 +78,6 @@ $a->config['system']['no_regfullname'] = true;
// Location of the global directory
$a->config['system']['directory'] = 'http://dir.friendi.ca';
// Allowed protocols in link URLs; HTTP protocols always are accepted
$a->config['system']['allowed_link_protocols'] = array('ftp', 'ftps', 'mailto', 'cid', 'gopher');

View file

@ -22,6 +22,7 @@ function user_remove($uid) {
$r[0]['nickname']
);
/// @todo Should be done in a background job since this likely will run into a time out
// don't delete yet, will be done later when contacts have deleted my stuff
// q("DELETE FROM `contact` WHERE `uid` = %d", intval($uid));
q("DELETE FROM `gcign` WHERE `uid` = %d", intval($uid));
@ -74,25 +75,10 @@ function contact_remove($id) {
return;
}
q("DELETE FROM `contact` WHERE `id` = %d",
intval($id)
);
q("DELETE FROM `item` WHERE `contact-id` = %d ",
intval($id)
);
q("DELETE FROM `photo` WHERE `contact-id` = %d ",
intval($id)
);
q("DELETE FROM `mail` WHERE `contact-id` = %d ",
intval($id)
);
q("DELETE FROM `event` WHERE `cid` = %d ",
intval($id)
);
q("DELETE FROM `queue` WHERE `cid` = %d ",
intval($id)
);
q("DELETE FROM `contact` WHERE `id` = %d", intval($id));
// Delete the rest in the background
proc_run(PRIORITY_LOW, 'include/remove_contact.php', $id);
}
@ -145,7 +131,6 @@ function terminate_friendship($user,$self,$contact) {
// This provides for the possibility that their database is temporarily messed
// up or some other transient event and that there's a possibility we could recover from it.
if(! function_exists('mark_for_death')) {
function mark_for_death($contact) {
if($contact['archive'])
@ -156,14 +141,24 @@ function mark_for_death($contact) {
dbesc(datetime_convert()),
intval($contact['id'])
);
}
else {
if ($contact['url'] != '') {
q("UPDATE `contact` SET `term-date` = '%s'
WHERE `nurl` = '%s' AND `term-date` <= '1000-00-00'",
dbesc(datetime_convert()),
dbesc(normalise_link($contact['url']))
);
}
} else {
/// @todo
/// We really should send a notification to the owner after 2-3 weeks
/// so they won't be surprised when the contact vanishes and can take
/// remedial action if this was a serious mistake or glitch
/// @todo
/// Check for contact vitality via probing
$expiry = $contact['term-date'] . ' + 32 days ';
if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) {
@ -171,26 +166,45 @@ function mark_for_death($contact) {
// archive them rather than delete
// though if the owner tries to unarchive them we'll start the whole process over again
q("update contact set `archive` = 1 where id = %d",
q("UPDATE `contact` SET `archive` = 1 WHERE `id` = %d",
intval($contact['id'])
);
q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact['id']), intval($contact['uid']));
//contact_remove($contact['id']);
if ($contact['url'] != '') {
q("UPDATE `contact` SET `archive` = 1 WHERE `nurl` = '%s'",
dbesc(normalise_link($contact['url']))
);
}
}
}
}}
}
if(! function_exists('unmark_for_death')) {
function unmark_for_death($contact) {
$r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` > '%s'",
intval($contact['id']),
dbesc('1000-00-00 00:00:00')
);
// We don't need to update, we never marked this contact as dead
if (!dbm::is_result($r)) {
return;
}
// It's a miracle. Our dead contact has inexplicably come back to life.
q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d",
dbesc('0000-00-00 00:00:00'),
intval($contact['id'])
);
}}
if ($contact['url'] != '') {
q("UPDATE `contact` SET `term-date` = '%s' WHERE `nurl` = '%s'",
dbesc('0000-00-00 00:00:00'),
dbesc(normalise_link($contact['url']))
);
}
}
/**
* @brief Get contact data for a given profile link

View file

@ -252,7 +252,7 @@ class NotificationsManager {
$notif = array(
'label' => 'like',
'link' => $this->a->get_baseurl(true).'/display/'.$it['pguid'],
'$image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO),
'image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO),
'text' => sprintf(t("%s liked %s's post"), $it['author-name'], $it['pname']),
'when' => relative_date($it['created']),
'seen' => $it['seen']

552
include/ParseUrl.php Normal file
View file

@ -0,0 +1,552 @@
<?php
/**
* @file include/ParseUrl.php
* @brief Get informations about a given URL
*/
namespace Friendica;
use \Friendica\Core\Config;
require_once("include/network.php");
require_once("include/Photo.php");
require_once("include/oembed.php");
require_once("include/xml.php");
/**
* @brief Class with methods for extracting certain content from an url
*/
class ParseUrl {
/**
* @brief Search for chached embeddable data of an url otherwise fetch it
*
* @param type $url The url of the page which should be scraped
* @param type $no_guessing If true the parse doens't search for
* preview pictures
* @param type $do_oembed The false option is used by the function fetch_oembed()
* to avoid endless loops
*
* @return array which contains needed data for embedding
* string 'url' => The url of the parsed page
* string 'type' => Content type
* string 'title' => The title of the content
* string 'text' => The description for the content
* string 'image' => A preview image of the content (only available
* if $no_geuessing = false
* array'images' = Array of preview pictures
* string 'keywords' => The tags which belong to the content
*
* @see ParseUrl::getSiteinfo() for more information about scraping
* embeddable content
*/
public static function getSiteinfoCached($url, $no_guessing = false, $do_oembed = true) {
if ($url == "") {
return false;
}
$r = q("SELECT * FROM `parsed_url` WHERE `url` = '%s' AND `guessing` = %d AND `oembed` = %d",
dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed));
if ($r) {
$data = $r[0]["content"];
}
if (!is_null($data)) {
$data = unserialize($data);
return $data;
}
$data = self::getSiteinfo($url, $no_guessing, $do_oembed);
q("INSERT INTO `parsed_url` (`url`, `guessing`, `oembed`, `content`, `created`) VALUES ('%s', %d, %d, '%s', '%s')
ON DUPLICATE KEY UPDATE `content` = '%s', `created` = '%s'",
dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed),
dbesc(serialize($data)), dbesc(datetime_convert()),
dbesc(serialize($data)), dbesc(datetime_convert()));
return $data;
}
/**
* @brief Parse a page for embeddable content information
*
* This method parses to url for meta data which can be used to embed
* the content. If available it prioritizes Open Graph meta tags.
* If this is not available it uses the twitter cards meta tags.
* As fallback it uses standard html elements with meta informations
* like \<title\>Awesome Title\</title\> or
* \<meta name="description" content="An awesome description"\>
*
* @param type $url The url of the page which should be scraped
* @param type $no_guessing If true the parse doens't search for
* preview pictures
* @param type $do_oembed The false option is used by the function fetch_oembed()
* to avoid endless loops
* @param type $count Internal counter to avoid endless loops
*
* @return array which contains needed data for embedding
* string 'url' => The url of the parsed page
* string 'type' => Content type
* string 'title' => The title of the content
* string 'text' => The description for the content
* string 'image' => A preview image of the content (only available
* if $no_geuessing = false
* array'images' = Array of preview pictures
* string 'keywords' => The tags which belong to the content
*
* @todo https://developers.google.com/+/plugins/snippet/
* @verbatim
* <meta itemprop="name" content="Awesome title">
* <meta itemprop="description" content="An awesome description">
* <meta itemprop="image" content="http://maple.libertreeproject.org/images/tree-icon.png">
*
* <body itemscope itemtype="http://schema.org/Product">
* <h1 itemprop="name">Shiny Trinket</h1>
* <img itemprop="image" src="{image-url}" />
* <p itemprop="description">Shiny trinkets are shiny.</p>
* </body>
* @endverbatim
*/
public static function getSiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1) {
$a = get_app();
$siteinfo = array();
// Check if the URL does contain a scheme
$scheme = parse_url($url, PHP_URL_SCHEME);
if ($scheme == "") {
$url = "http://".trim($url, "/");
}
if ($count > 10) {
logger("parseurl_getsiteinfo: Endless loop detected for ".$url, LOGGER_DEBUG);
return($siteinfo);
}
$url = trim($url, "'");
$url = trim($url, '"');
$url = original_url($url);
$siteinfo["url"] = $url;
$siteinfo["type"] = "link";
$check_cert = Config::get("system", "verifyssl");
$stamp1 = microtime(true);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
$header = curl_exec($ch);
$curl_info = @curl_getinfo($ch);
$http_code = $curl_info["http_code"];
curl_close($ch);
$a->save_timestamp($stamp1, "network");
if ((($curl_info["http_code"] == "301") || ($curl_info["http_code"] == "302") || ($curl_info["http_code"] == "303") || ($curl_info["http_code"] == "307"))
&& (($curl_info["redirect_url"] != "") || ($curl_info["location"] != ""))) {
if ($curl_info["redirect_url"] != "") {
$siteinfo = self::getSiteinfo($curl_info["redirect_url"], $no_guessing, $do_oembed, ++$count);
} else {
$siteinfo = self::getSiteinfo($curl_info["location"], $no_guessing, $do_oembed, ++$count);
}
return($siteinfo);
}
// If the file is too large then exit
if ($curl_info["download_content_length"] > 1000000) {
return($siteinfo);
}
// If it isn't a HTML file then exit
if (($curl_info["content_type"] != "") && !strstr(strtolower($curl_info["content_type"]), "html")) {
return($siteinfo);
}
if ($do_oembed) {
$oembed_data = oembed_fetch_url($url);
if (!in_array($oembed_data->type, array("error", "rich"))) {
$siteinfo["type"] = $oembed_data->type;
}
if (($oembed_data->type == "link") && ($siteinfo["type"] != "photo")) {
if (isset($oembed_data->title)) {
$siteinfo["title"] = $oembed_data->title;
}
if (isset($oembed_data->description)) {
$siteinfo["text"] = trim($oembed_data->description);
}
if (isset($oembed_data->thumbnail_url)) {
$siteinfo["image"] = $oembed_data->thumbnail_url;
}
}
}
$stamp1 = microtime(true);
// Now fetch the body as well
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
$header = curl_exec($ch);
$curl_info = @curl_getinfo($ch);
$http_code = $curl_info["http_code"];
curl_close($ch);
$a->save_timestamp($stamp1, "network");
// Fetch the first mentioned charset. Can be in body or header
$charset = "";
if (preg_match('/charset=(.*?)['."'".'"\s\n]/', $header, $matches)) {
$charset = trim(trim(trim(array_pop($matches)), ';,'));
}
if ($charset == "") {
$charset = "utf-8";
}
$pos = strpos($header, "\r\n\r\n");
if ($pos) {
$body = trim(substr($header, $pos));
} else {
$body = $header;
}
if (($charset != "") && (strtoupper($charset) != "UTF-8")) {
logger("parseurl_getsiteinfo: detected charset ".$charset, LOGGER_DEBUG);
//$body = mb_convert_encoding($body, "UTF-8", $charset);
$body = iconv($charset, "UTF-8//TRANSLIT", $body);
}
$body = mb_convert_encoding($body, 'HTML-ENTITIES', "UTF-8");
$doc = new \DOMDocument();
@$doc->loadHTML($body);
\xml::deleteNode($doc, "style");
\xml::deleteNode($doc, "script");
\xml::deleteNode($doc, "option");
\xml::deleteNode($doc, "h1");
\xml::deleteNode($doc, "h2");
\xml::deleteNode($doc, "h3");
\xml::deleteNode($doc, "h4");
\xml::deleteNode($doc, "h5");
\xml::deleteNode($doc, "h6");
\xml::deleteNode($doc, "ol");
\xml::deleteNode($doc, "ul");
$xpath = new \DomXPath($doc);
$list = $xpath->query("//meta[@content]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length) {
foreach ($node->attributes as $attribute) {
$attr[$attribute->name] = $attribute->value;
}
}
if (@$attr["http-equiv"] == "refresh") {
$path = $attr["content"];
$pathinfo = explode(";", $path);
$content = "";
foreach ($pathinfo as $value) {
if (substr(strtolower($value), 0, 4) == "url=") {
$content = substr($value, 4);
}
}
if ($content != "") {
$siteinfo = self::getSiteinfo($content, $no_guessing, $do_oembed, ++$count);
return($siteinfo);
}
}
}
$list = $xpath->query("//title");
if ($list->length > 0) {
$siteinfo["title"] = $list->item(0)->nodeValue;
}
//$list = $xpath->query("head/meta[@name]");
$list = $xpath->query("//meta[@name]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length) {
foreach ($node->attributes as $attribute) {
$attr[$attribute->name] = $attribute->value;
}
}
$attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
if ($attr["content"] != "") {
switch (strtolower($attr["name"])) {
case "fulltitle":
$siteinfo["title"] = $attr["content"];
break;
case "description":
$siteinfo["text"] = $attr["content"];
break;
case "thumbnail":
$siteinfo["image"] = $attr["content"];
break;
case "twitter:image":
$siteinfo["image"] = $attr["content"];
break;
case "twitter:image:src":
$siteinfo["image"] = $attr["content"];
break;
case "twitter:card":
if (($siteinfo["type"] == "") || ($attr["content"] == "photo")) {
$siteinfo["type"] = $attr["content"];
}
break;
case "twitter:description":
$siteinfo["text"] = $attr["content"];
break;
case "twitter:title":
$siteinfo["title"] = $attr["content"];
break;
case "dc.title":
$siteinfo["title"] = $attr["content"];
break;
case "dc.description":
$siteinfo["text"] = $attr["content"];
break;
case "keywords":
$keywords = explode(",", $attr["content"]);
break;
case "news_keywords":
$keywords = explode(",", $attr["content"]);
break;
}
}
if ($siteinfo["type"] == "summary") {
$siteinfo["type"] = "link";
}
}
if (isset($keywords)) {
$siteinfo["keywords"] = array();
foreach ($keywords as $keyword) {
if (!in_array(trim($keyword), $siteinfo["keywords"])) {
$siteinfo["keywords"][] = trim($keyword);
}
}
}
//$list = $xpath->query("head/meta[@property]");
$list = $xpath->query("//meta[@property]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length) {
foreach ($node->attributes as $attribute) {
$attr[$attribute->name] = $attribute->value;
}
}
$attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
if ($attr["content"] != "") {
switch (strtolower($attr["property"])) {
case "og:image":
$siteinfo["image"] = $attr["content"];
break;
case "og:title":
$siteinfo["title"] = $attr["content"];
break;
case "og:description":
$siteinfo["text"] = $attr["content"];
break;
}
}
}
if ((@$siteinfo["image"] == "") && !$no_guessing) {
$list = $xpath->query("//img[@src]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length) {
foreach ($node->attributes as $attribute) {
$attr[$attribute->name] = $attribute->value;
}
}
$src = self::completeUrl($attr["src"], $url);
$photodata = get_photo_info($src);
if (($photodata) && ($photodata[0] > 150) && ($photodata[1] > 150)) {
if ($photodata[0] > 300) {
$photodata[1] = round($photodata[1] * (300 / $photodata[0]));
$photodata[0] = 300;
}
if ($photodata[1] > 300) {
$photodata[0] = round($photodata[0] * (300 / $photodata[1]));
$photodata[1] = 300;
}
$siteinfo["images"][] = array("src" => $src,
"width" => $photodata[0],
"height" => $photodata[1]);
}
}
} elseif ($siteinfo["image"] != "") {
$src = self::completeUrl($siteinfo["image"], $url);
unset($siteinfo["image"]);
$photodata = get_photo_info($src);
if (($photodata) && ($photodata[0] > 10) && ($photodata[1] > 10)) {
$siteinfo["images"][] = array("src" => $src,
"width" => $photodata[0],
"height" => $photodata[1]);
}
}
if ((@$siteinfo["text"] == "") && (@$siteinfo["title"] != "") && !$no_guessing) {
$text = "";
$list = $xpath->query("//div[@class='article']");
foreach ($list as $node) {
if (strlen($node->nodeValue) > 40) {
$text .= " ".trim($node->nodeValue);
}
}
if ($text == "") {
$list = $xpath->query("//div[@class='content']");
foreach ($list as $node) {
if (strlen($node->nodeValue) > 40) {
$text .= " ".trim($node->nodeValue);
}
}
}
// If none text was found then take the paragraph content
if ($text == "") {
$list = $xpath->query("//p");
foreach ($list as $node) {
if (strlen($node->nodeValue) > 40) {
$text .= " ".trim($node->nodeValue);
}
}
}
if ($text != "") {
$text = trim(str_replace(array("\n", "\r"), array(" ", " "), $text));
while (strpos($text, " ")) {
$text = trim(str_replace(" ", " ", $text));
}
$siteinfo["text"] = trim(html_entity_decode(substr($text, 0, 350), ENT_QUOTES, "UTF-8").'...');
}
}
logger("parseurl_getsiteinfo: Siteinfo for ".$url." ".print_r($siteinfo, true), LOGGER_DEBUG);
call_hooks("getsiteinfo", $siteinfo);
return($siteinfo);
}
/**
* @brief Convert tags from CSV to an array
*
* @param string $string Tags
* @return array with formatted Hashtags
*/
public static function convertTagsToArray($string) {
$arr_tags = str_getcsv($string);
if (count($arr_tags)) {
// add the # sign to every tag
array_walk($arr_tags, array("self", "arrAddHashes"));
return $arr_tags;
}
}
/**
* @brief Add a hasht sign to a string
*
* This method is used as callback function
*
* @param string $tag The pure tag name
* @param int $k Counter for internal use
*/
private static function arrAddHashes(&$tag, $k) {
$tag = "#" . $tag;
}
/**
* @brief Add a scheme to an url
*
* The src attribute of some html elements (e.g. images)
* can miss the scheme so we need to add the correct
* scheme
*
* @param string $url The url which possibly does have
* a missing scheme (a link to an image)
* @param string $scheme The url with a correct scheme
* (e.g. the url from the webpage which does contain the image)
*
* @return string The url with a scheme
*/
private static function completeUrl($url, $scheme) {
$urlarr = parse_url($url);
// If the url does allready have an scheme
// we can stop the process here
if (isset($urlarr["scheme"])) {
return($url);
}
$schemearr = parse_url($scheme);
$complete = $schemearr["scheme"]."://".$schemearr["host"];
if (@$schemearr["port"] != "") {
$complete .= ":".$schemearr["port"];
}
if (strpos($urlarr["path"],"/") !== 0) {
$complete .= "/";
}
$complete .= $urlarr["path"];
if (@$urlarr["query"] != "") {
$complete .= "?".$urlarr["query"];
}
if (@$urlarr["fragment"] != "") {
$complete .= "#".$urlarr["fragment"];
}
return($complete);
}
}

View file

@ -623,7 +623,7 @@
// count friends
$r = q("SELECT count(*) as `count` FROM `contact`
WHERE `uid` = %d AND `rel` IN ( %d, %d )
AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0",
AND `self`=0 AND NOT `blocked` AND `hidden`=0",
intval($uinfo[0]['uid']),
intval(CONTACT_IS_SHARING),
intval(CONTACT_IS_FRIEND)
@ -632,7 +632,7 @@
$r = q("SELECT count(*) as `count` FROM `contact`
WHERE `uid` = %d AND `rel` IN ( %d, %d )
AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0",
AND `self`=0 AND NOT `blocked` AND `hidden`=0",
intval($uinfo[0]['uid']),
intval(CONTACT_IS_FOLLOWER),
intval(CONTACT_IS_FRIEND)
@ -1399,7 +1399,7 @@
`contact`.`id` AS `cid`
FROM `item`
STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `item`.`uid` = %d AND `verb` = '%s'
AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
$sql_extra
@ -1476,7 +1476,7 @@
`user`.`nickname`, `user`.`hidewall`
FROM `item`
STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
STRAIGHT_JOIN `user` ON `user`.`uid` = `item`.`uid`
AND NOT `user`.`hidewall`
WHERE `verb` = '%s' AND `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
@ -1543,7 +1543,7 @@
`contact`.`id` AS `cid`
FROM `item`
INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
AND `item`.`uid` = %d AND `item`.`verb` = '%s'
$sql_extra",
@ -1619,7 +1619,7 @@
`contact`.`id` AS `cid`
FROM `item`
STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `item`.`parent` = %d AND `item`.`visible`
AND NOT `item`.`moderated` AND NOT `item`.`deleted`
AND `item`.`uid` = %d AND `item`.`verb` = '%s'
@ -1673,7 +1673,7 @@
`contact`.`id` AS `cid`
FROM `item`
INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
AND NOT `item`.`private` AND `item`.`allow_cid` = '' AND `item`.`allow`.`gid` = ''
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
@ -1792,7 +1792,7 @@
`contact`.`id` AS `cid`
FROM `item` FORCE INDEX (`uid_id`)
STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `item`.`uid` = %d AND `verb` = '%s'
AND NOT (`item`.`author-link` IN ('https://%s', 'http://%s'))
AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
@ -1866,7 +1866,7 @@
`contact`.`id` AS `cid`
FROM `item` FORCE INDEX (`uid_contactid_id`)
STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `item`.`uid` = %d AND `verb` = '%s'
AND `item`.`contact-id` = %d
AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
@ -2002,7 +2002,7 @@
AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
AND `item`.`starred` = 1
AND `contact`.`id` = `item`.`contact-id`
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
$sql_extra
AND `item`.`id`>%d
ORDER BY `item`.`id` DESC LIMIT %d ,%d ",
@ -2436,18 +2436,18 @@
'religion' => $profile['religion'],
'public_keywords' => $profile['pub_keywords'],
'private_keywords' => $profile['prv_keywords'],
'likes' => bbcode(api_clean_plain_items($profile['likes']), false, false, 2, true),
'dislikes' => bbcode(api_clean_plain_items($profile['dislikes']), false, false, 2, true),
'about' => bbcode(api_clean_plain_items($profile['about']), false, false, 2, true),
'music' => bbcode(api_clean_plain_items($profile['music']), false, false, 2, true),
'book' => bbcode(api_clean_plain_items($profile['book']), false, false, 2, true),
'tv' => bbcode(api_clean_plain_items($profile['tv']), false, false, 2, true),
'film' => bbcode(api_clean_plain_items($profile['film']), false, false, 2, true),
'interest' => bbcode(api_clean_plain_items($profile['interest']), false, false, 2, true),
'romance' => bbcode(api_clean_plain_items($profile['romance']), false, false, 2, true),
'work' => bbcode(api_clean_plain_items($profile['work']), false, false, 2, true),
'education' => bbcode(api_clean_plain_items($profile['education']), false, false, 2, true),
'social_networks' => bbcode(api_clean_plain_items($profile['contact']), false, false, 2, true),
'likes' => bbcode(api_clean_plain_items($profile['likes']), false, false, 2, false),
'dislikes' => bbcode(api_clean_plain_items($profile['dislikes']), false, false, 2, false),
'about' => bbcode(api_clean_plain_items($profile['about']), false, false, 2, false),
'music' => bbcode(api_clean_plain_items($profile['music']), false, false, 2, false),
'book' => bbcode(api_clean_plain_items($profile['book']), false, false, 2, false),
'tv' => bbcode(api_clean_plain_items($profile['tv']), false, false, 2, false),
'film' => bbcode(api_clean_plain_items($profile['film']), false, false, 2, false),
'interest' => bbcode(api_clean_plain_items($profile['interest']), false, false, 2, false),
'romance' => bbcode(api_clean_plain_items($profile['romance']), false, false, 2, false),
'work' => bbcode(api_clean_plain_items($profile['work']), false, false, 2, false),
'education' => bbcode(api_clean_plain_items($profile['education']), false, false, 2, false),
'social_networks' => bbcode(api_clean_plain_items($profile['contact']), false, false, 2, false),
'homepage' => $profile['homepage'],
'users' => null);
return $profile;
@ -2648,7 +2648,7 @@
if ($user_info['self'] == 0)
$sql_extra = " AND false ";
$r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
$r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND NOT `self` AND (NOT `blocked` OR `pending`) $sql_extra",
intval(api_user())
);

View file

@ -15,24 +15,27 @@ require_once("library/html-to-markdown/HTML_To_Markdown.php");
function diaspora2bb($s) {
$s = html_entity_decode($s,ENT_COMPAT,'UTF-8');
$s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
// Remove CR to avoid problems with following code
$s = str_replace("\r","",$s);
// Handles single newlines
$s = str_replace("\r", '<br>', $s);
$s = str_replace("\n"," \n",$s);
$s = str_replace("\n", " \n", $s);
// Replace lonely stars in lines not starting with it with literal stars
$s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
// The parser cannot handle paragraphs correctly
$s = str_replace(array("</p>", "<p>", '<p dir="ltr">'),array("<br>", "<br>", "<br>"),$s);
$s = str_replace(array('</p>', '<p>', '<p dir="ltr">'), array('<br>', '<br>', '<br>'), $s);
// Escaping the hash tags
$s = preg_replace('/\#([^\s\#])/','&#35;$1',$s);
$s = preg_replace('/\#([^\s\#])/', '&#35;$1', $s);
$s = Markdown($s);
$s = preg_replace('/\@\{(.+?)\; (.+?)\@(.+?)\}/','@[url=https://$3/u/$2]$1[/url]',$s);
$s = preg_replace('/\@\{(.+?)\; (.+?)\@(.+?)\}/', '@[url=https://$3/u/$2]$1[/url]', $s);
$s = str_replace('&#35;','#',$s);
$s = str_replace('&#35;', '#', $s);
$search = array(" \n", "\n ");
$replace = array("\n", "\n");
@ -41,23 +44,24 @@ function diaspora2bb($s) {
$s = str_replace($search, $replace, $s);
} while ($oldtext != $s);
$s = str_replace("\n\n", "<br>", $s);
$s = str_replace("\n\n", '<br>', $s);
$s = html2bbcode($s);
// protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
$s = str_replace('&#x2672;',html_entity_decode('&#x2672;',ENT_QUOTES,'UTF-8'),$s);
$s = str_replace('&#x2672;', html_entity_decode('&#x2672;', ENT_QUOTES, 'UTF-8'), $s);
// Convert everything that looks like a link to a link
$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3]$2$3[/url]',$s);
$s = preg_replace('/([^\]=]|^)(https?\:\/\/)([a-zA-Z0-9:\/\-?&;.=_~#%$!+,@]+(?<!,))/ism', '$1[url=$2$3]$2$3[/url]', $s);
//$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3$4]$2$3$4[/url]',$s);
$s = bb_tag_preg_replace("/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism",'[youtube]$2[/youtube]','url',$s);
$s = bb_tag_preg_replace("/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism",'[youtube]$1[/youtube]','url',$s);
$s = bb_tag_preg_replace("/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism",'[vimeo]$2[/vimeo]','url',$s);
$s = bb_tag_preg_replace("/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism",'[vimeo]$1[/vimeo]','url',$s);
$s = bb_tag_preg_replace('/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism', '[youtube]$2[/youtube]', 'url', $s);
$s = bb_tag_preg_replace('/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism' , '[youtube]$1[/youtube]', 'url', $s);
$s = bb_tag_preg_replace('/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism' , '[vimeo]$2[/vimeo]' , 'url', $s);
$s = bb_tag_preg_replace('/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism' , '[vimeo]$1[/vimeo]' , 'url', $s);
// remove duplicate adjacent code tags
$s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s);
$s = preg_replace('/(\[code\])+(.*?)(\[\/code\])+/ism', '[code]$2[/code]', $s);
// Don't show link to full picture (until it is fixed)
$s = scale_external_images($s, false);

View file

@ -1,4 +1,6 @@
<?php
use \Friendica\Core\Config;
require_once("include/oembed.php");
require_once('include/event.php');
require_once('include/map.php');
@ -1161,11 +1163,24 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
$Text = preg_replace('/\&quot\;/','"',$Text);
// fix any escaped ampersands that may have been converted into links
$Text = preg_replace("/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
$Text = preg_replace("/\<([^>]*?)(src|href)=\"(?!http|ftp|mailto|gopher|cid)(.*?)\>/ism",'<$1$2="">',$Text);
$Text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism', '<$1$2=$3&$4>', $Text);
if($saved_image)
// sanitizes src attributes (only relative redir URIs or http URLs)
$Text = preg_replace('#<([^>]*?)(src)="(?!http|redir)(.*?)"(.*?)>#ism', '<$1$2=""$4 class="invalid-src" title="' . t('Invalid source protocol') . '">', $Text);
// sanitize href attributes (only whitelisted protocols URLs)
// default value for backward compatibility
$allowed_link_protocols = Config::get('system', 'allowed_link_protocols', array('ftp', 'mailto', 'gopher', 'cid'));
// Always allowed protocol even if config isn't set or not including it
$allowed_link_protocols[] = 'http';
$regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
$Text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 class="invalid-href" title="' . t('Invalid link protocol') . '">', $Text);
if($saved_image) {
$Text = bb_replace_images($Text, $saved_image);
}
// Clean up the HTML by loading and saving the HTML with the DOM.
// Bad structured html can break a whole page.

View file

@ -84,9 +84,14 @@ class Cache {
$memcache = self::memcache();
if (is_object($memcache)) {
// We fetch with the hostname as key to avoid problems with other applications
$value = $memcache->get(get_app()->get_hostname().":".$key);
if (!is_bool($value)) {
return unserialize($value);
$cached = $memcache->get(get_app()->get_hostname().":".$key);
$value = @unserialize($cached);
// Only return a value if the serialized value is valid.
// We also check if the db entry is a serialized
// boolean 'false' value (which we want to return).
if ($cached === serialize(false) || $value !== false) {
return $value;
}
return null;
@ -100,7 +105,15 @@ class Cache {
);
if (dbm::is_result($r)) {
return unserialize($r[0]['v']);
$cached = $r[0]['v'];
$value = @unserialize($cached);
// Only return a value if the serialized value is valid.
// We also check if the db entry is a serialized
// boolean 'false' value (which we want to return).
if ($cached === serialize(false) || $value !== false) {
return $value;
}
}
return null;

View file

@ -439,7 +439,7 @@ These Fields are not added below (yet). They are here to for bug search.
function item_joins() {
return "STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND
NOT `contact`.`blocked` AND NOT `contact`.`pending`
(NOT `contact`.`blocked` OR `contact`.`pending`)
LEFT JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id`
LEFT JOIN `contact` AS `owner` ON `owner`.`id`=`item`.`owner-id`";
}
@ -1064,6 +1064,9 @@ function builtin_activity_puller($item, &$conv_responses) {
else
$conv_responses[$mode][$item['thr-parent']] ++;
if((local_user()) && (local_user() == $item['uid']) && ($item['self']))
$conv_responses[$mode][$item['thr-parent'] . '-self'] = 1;
$conv_responses[$mode][$item['thr-parent'] . '-l'][] = $url;
// there can only be one activity verb per item so if we found anything, we can stop looking
@ -1443,6 +1446,7 @@ function get_responses($conv_responses,$response_verbs,$ob,$item) {
$ret[$v] = array();
$ret[$v]['count'] = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri']] : '');
$ret[$v]['list'] = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri'] . '-l'] : '');
$ret[$v]['self'] = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri'] . '-self'] : '0');
if(count($ret[$v]['list']) > MAX_LIKERS) {
$ret[$v]['list_part'] = array_slice($ret[$v]['list'], 0, MAX_LIKERS);
array_push($ret[$v]['list_part'], '<a href="#" data-toggle="modal" data-target="#' . $v . 'Modal-'

View file

@ -325,7 +325,7 @@ function cron_poll_contacts($argc, $argv) {
logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
if ($contact["remote_self"]) {
if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) {
proc_run(PRIORITY_MEDIUM, 'include/onepoll.php', $contact['id']);
} else {
proc_run(PRIORITY_LOW, 'include/onepoll.php', $contact['id']);

View file

@ -109,6 +109,17 @@ class dba {
return $return;
}
/**
* @brief Returns the selected database name
*
* @return string
*/
public function database_name() {
$r = $this->q("SELECT DATABASE() AS `db`");
return $r[0]['db'];
}
/**
* @brief Returns the number of rows
*

View file

@ -1281,6 +1281,7 @@ function db_definition($charset) {
"uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
"password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
"language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
"note" => array("type" => "text"),
),
"indexes" => array(
"PRIMARY" => array("id"),

View file

@ -381,7 +381,14 @@ function delivery_run(&$argv, &$argc){
if ($deliver_status == (-1)) {
logger('notifier: delivery failed: queuing message');
add_to_queue($contact['id'],NETWORK_DFRN,$atom);
// The message could not be delivered. We mark the contact as "dead"
mark_for_death($contact);
} else {
// We successfully delivered a message, the contact is alive
unmark_for_death($contact);
}
break;
case NETWORK_OSTATUS:

View file

@ -3,7 +3,8 @@
* @file include/dfrn.php
* @brief The implementation of the dfrn protocol
*
* https://github.com/friendica/friendica/wiki/Protocol
* @see https://github.com/friendica/friendica/wiki/Protocol and
* https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
*/
require_once("include/Contact.php");
@ -134,7 +135,7 @@ class dfrn {
break; // NOTREACHED
}
$r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
$r = q("SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
intval($owner_id)
);
@ -193,7 +194,7 @@ class dfrn {
`sign`.`signed_text`, `sign`.`signature`, `sign`.`signer`
FROM `item` USE INDEX (`uid_wall_changed`, `uid_type_changed`) $sql_post_table
STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
AND NOT `contact`.`blocked`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id`
WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`moderated` AND `item`.`parent` != 0
AND `item`.`wall` AND `item`.`changed` > '%s'

View file

@ -999,17 +999,21 @@ class diaspora {
*/
private function author_contact_by_url($contact, $person, $uid) {
$r = q("SELECT `id`, `network` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
$r = q("SELECT `id`, `network`, `url` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
dbesc(normalise_link($person["url"])), intval($uid));
if ($r) {
$cid = $r[0]["id"];
$network = $r[0]["network"];
// We are receiving content from a user that is about to be terminated
// This means the user is vital, so we remove a possible termination date.
unmark_for_death($contact);
} else {
$cid = $contact["id"];
$network = NETWORK_DIASPORA;
}
return (array("cid" => $cid, "network" => $network));
return array("cid" => $cid, "network" => $network);
}
/**
@ -2633,7 +2637,13 @@ class diaspora {
} else {
// queue message for redelivery
add_to_queue($contact["id"], NETWORK_DIASPORA, $slap, $public_batch);
// The message could not be delivered. We mark the contact as "dead"
mark_for_death($contact);
}
} elseif (($return_code >= 200) AND ($return_code <= 299)) {
// We successfully delivered a message, the contact is alive
unmark_for_death($contact);
}
return(($return_code) ? $return_code : (-1));

View file

@ -7,20 +7,27 @@
/**
* @brief check if feature is enabled
*
*
* @return boolean
*/
function feature_enabled($uid,$feature) {
function feature_enabled($uid, $feature) {
$x = get_config('feature_lock',$feature);
if($x === false) {
$x = get_pconfig($uid,'feature',$feature);
if($x === false) {
$x = get_config('feature',$feature);
if($x === false)
if (($feature == 'richtext') AND !get_app()->theme_richtext_editor) {
return false;
}
$x = get_config('feature_lock', $feature);
if ($x === false) {
$x = get_pconfig($uid, 'feature', $feature);
if ($x === false) {
$x = get_config('feature', $feature);
if ($x === false) {
$x = get_feature_default($feature);
}
}
}
$arr = array('uid' => $uid, 'feature' => $feature, 'enabled' => $x);
call_hooks('feature_enabled',$arr);
return($arr['enabled']);
@ -135,6 +142,11 @@ function get_features($filtered = true) {
}
}
// Remove the richtext editor setting if the theme doesn't support it
if (!get_app()->theme_richtext_editor) {
unset($arr['composition'][1]);
}
call_hooks('get_features',$arr);
return $arr;
}

View file

@ -1,11 +1,14 @@
<?php
/*
html2bbcode.php
Converter for HTML to BBCode
Made by: ike@piratenpartei.de
Originally made for the syncom project: http://wiki.piratenpartei.de/Syncom
https://github.com/annando/Syncom
*/
/**
* @file include/html2bbcode.php
* @brief Converter for HTML to BBCode
*
* Made by: ike@piratenpartei.de
* Originally made for the syncom project: http://wiki.piratenpartei.de/Syncom
* https://github.com/annando/Syncom
*/
require_once("include/xml.php");
function node2bbcode(&$doc, $oldnode, $attributes, $startbb, $endbb)
{
@ -76,15 +79,6 @@ function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb)
return($replace);
}
if(!function_exists('deletenode')) {
function deletenode(&$doc, $node)
{
$xpath = new DomXPath($doc);
$list = $xpath->query("//".$node);
foreach ($list as $child)
$child->parentNode->removeChild($child);
}}
function _replace_code_cb($m){
return "<code>".str_replace("\n","<br>\n",$m[1]). "</code>";
}
@ -117,12 +111,12 @@ function html2bbcode($message)
@$doc->loadHTML($message);
deletenode($doc, 'style');
deletenode($doc, 'head');
deletenode($doc, 'title');
deletenode($doc, 'meta');
deletenode($doc, 'xml');
deletenode($doc, 'removeme');
xml::deleteNode($doc, 'style');
xml::deleteNode($doc, 'head');
xml::deleteNode($doc, 'title');
xml::deleteNode($doc, 'meta');
xml::deleteNode($doc, 'xml');
xml::deleteNode($doc, 'removeme');
$xpath = new DomXPath($doc);
$list = $xpath->query("//pre");
@ -239,7 +233,7 @@ function html2bbcode($message)
node2bbcode($doc, 'iframe', array('src'=>'/(.+)/'), '[iframe]$1', '[/iframe]');
node2bbcode($doc, 'code', array(), '[code]', '[/code]');
node2bbcode($doc, 'key', array(), '[code]', '[/code]');
node2bbcode($doc, 'key', array(), '[code]', '[/code]');
$message = $doc->saveHTML();

View file

@ -371,7 +371,7 @@ function profile_sidebar($profile, $block = 0) {
if(count($r))
$updated = date("c", strtotime($r[0]['updated']));
$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
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `hidden` AND NOT `archive`
AND `network` IN ('%s', '%s', '%s', '')",
intval($profile['uid']),
dbesc(NETWORK_DFRN),
@ -813,7 +813,6 @@ function zrl_init(&$a) {
$result = Cache::get("gprobe:".$urlparts["host"]);
if (!is_null($result)) {
$result = unserialize($result);
if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG);
return;

View file

@ -1,5 +1,11 @@
<?php
/**
* @file include/items.php
*/
use \Friendica\ParseUrl;
require_once('include/bbcode.php');
require_once('include/oembed.php');
require_once('include/salmon.php');
@ -216,9 +222,8 @@ function add_page_info_data($data) {
}
function query_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") {
require_once("mod/parse_url.php");
$data = parseurl_getsiteinfo_cached($url, true);
$data = ParseUrl::getSiteinfoCached($url, true);
if ($photo != "")
$data["images"][0]["src"] = $photo;
@ -412,6 +417,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
$dsprsig = null;
if (x($arr,'dsprsig')) {
$encoded_signature = $arr['dsprsig'];
$dsprsig = json_decode(base64_decode($arr['dsprsig']));
unset($arr['dsprsig']);
}
@ -840,15 +846,27 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
}
} else {
// This can happen - for example - if there are locking timeouts.
logger("Item wasn't stored - we quit here.");
q("COMMIT");
q("ROLLBACK");
// Store the data into a spool file so that we can try again later.
// At first we restore the Diaspora signature that we removed above.
if (isset($encoded_signature)) {
$arr['dsprsig'] = $encoded_signature;
}
// Now we store the data in the spool directory
$file = 'item-'.round(microtime(true) * 10000).".msg";
$spool = get_spoolpath().'/'.$file;
file_put_contents($spool, json_encode($arr));
logger("Item wasn't stored - Item was spooled into file ".$file, LOGGER_DEBUG);
return 0;
}
if ($current_post == 0) {
// This is one of these error messages that never should occur.
logger("couldn't find created item - we better quit now.");
q("COMMIT");
q("ROLLBACK");
return 0;
}
@ -863,7 +881,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
if (!dbm::is_result($r)) {
// This shouldn't happen, since COUNT always works when the database connection is there.
logger("We couldn't count the stored entries. Very strange ...");
q("COMMIT");
q("ROLLBACK");
return 0;
}
@ -878,7 +896,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
} elseif ($r[0]["entries"] == 0) {
// This really should never happen since we quit earlier if there were problems.
logger("Something is terribly wrong. We haven't found our created entry.");
q("COMMIT");
q("ROLLBACK");
return 0;
}

View file

@ -1,8 +1,17 @@
<?php
/**
* @file include/oembed.php
*/
use \Friendica\ParseUrl;
use \Friendica\Core\Config;
function oembed_replacecb($matches){
$embedurl=$matches[1];
$j = oembed_fetch_url($embedurl);
$s = oembed_format_object($j);
return $s;
}
@ -66,7 +75,7 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
}
if ($txt==false || $txt=="") {
$embedly = get_config("system", "embedly");
$embedly = Config::get("system", "embedly");
if ($embedly != "") {
// try embedly service
$ourl = "https://api.embed.ly/1/oembed?key=".$embedly."&url=".urlencode($embedurl);
@ -110,8 +119,7 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
// If fetching information doesn't work, then improve via internal functions
if (($j->type == "error") OR ($no_rich_type AND ($j->type == "rich"))) {
require_once("mod/parse_url.php");
$data = parseurl_getsiteinfo_cached($embedurl, true, false);
$data = ParseUrl::getSiteinfoCached($embedurl, true, false);
$j->type = $data["type"];
if ($j->type == "photo") {
@ -143,12 +151,11 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
function oembed_format_object($j){
require_once("mod/proxy.php");
$a = get_app();
$embedurl = $j->embedurl;
$jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null) );
$ret="<span class='oembed ".$j->type."'>";
switch ($j->type) {
case "video": {
case "video":
if (isset($j->thumbnail_url)) {
$tw = (isset($j->thumbnail_width) && intval($j->thumbnail_width)) ? $j->thumbnail_width:200;
$th = (isset($j->thumbnail_height) && intval($j->thumbnail_height)) ? $j->thumbnail_height:180;
@ -158,7 +165,7 @@ function oembed_format_object($j){
$th=120; $tw = $th*$tr;
$tpl=get_markup_template('oembed_video.tpl');
$ret.=replace_macros($tpl, array(
'$baseurl' => $a->get_baseurl(),
'$baseurl' => App::get_baseurl(),
'$embedurl'=>$embedurl,
'$escapedhtml'=>base64_encode($jhtml),
'$tw'=>$tw,
@ -170,43 +177,49 @@ function oembed_format_object($j){
$ret=$jhtml;
}
//$ret.="<br>";
}; break;
case "photo": {
break;
case "photo":
$ret.= "<img width='".$j->width."' src='".proxy_url($j->url)."'>";
}; break;
case "link": {
}; break;
case "rich": {
break;
case "link":
break;
case "rich":
// not so safe..
if (!get_config("system","no_oembed_rich_content"))
if (!Config::get("system","no_oembed_rich_content")) {
$ret.= proxy_parse_html($jhtml);
}; break;
}
break;
}
// add link to source if not present in "rich" type
if ($j->type!='rich' || !strpos($j->html,$embedurl) ){
$ret .= "<h4>";
if (isset($j->title)) {
if (isset($j->provider_name))
if (isset($j->provider_name)) {
$ret .= $j->provider_name.": ";
}
$embedlink = (isset($j->title))?$j->title:$embedurl;
$ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
if (isset($j->author_name))
if (isset($j->author_name)) {
$ret.=" (".$j->author_name.")";
}
} elseif (isset($j->provider_name) OR isset($j->author_name)) {
$embedlink = "";
if (isset($j->provider_name))
if (isset($j->provider_name)) {
$embedlink .= $j->provider_name;
}
if (isset($j->author_name)) {
if ($embedlink != "")
if ($embedlink != "") {
$embedlink .= ": ";
}
$embedlink .= $j->author_name;
}
if (trim($embedlink) == "")
if (trim($embedlink) == "") {
$embedlink = $embedurl;
}
$ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
}
@ -247,15 +260,14 @@ function oembed_iframe($src, $width, $height) {
}
$width = '100%';
$a = get_app();
$s = $a->get_baseurl() . '/oembed/'.base64url_encode($src);
return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
$s = App::get_baseurl() . '/oembed/'.base64url_encode($src);
return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
}
function oembed_bbcode2html($text){
$stopoembed = get_config("system","no_oembed");
$stopoembed = Config::get("system","no_oembed");
if ($stopoembed == true){
return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>". t('Embedding disabled') ." : $1</i><!-- /oembed $1 -->" ,$text);
}
@ -268,13 +280,13 @@ function oe_build_xpath($attr, $value){
return "contains( normalize-space( @$attr ), ' $value ' ) or substring( normalize-space( @$attr ), 1, string-length( '$value' ) + 1 ) = '$value ' or substring( normalize-space( @$attr ), string-length( @$attr ) - string-length( '$value' ) ) = ' $value' or @$attr = '$value'";
}
function oe_get_inner_html( $node ) {
$innerHTML= '';
$children = $node->childNodes;
foreach ($children as $child) {
$innerHTML .= $child->ownerDocument->saveXML( $child );
}
return $innerHTML;
function oe_get_inner_html($node) {
$innerHTML= '';
$children = $node->childNodes;
foreach ($children as $child) {
$innerHTML .= $child->ownerDocument->saveXML($child);
}
return $innerHTML;
}
/**
@ -283,15 +295,16 @@ function oe_get_inner_html( $node ) {
*/
function oembed_html2bbcode($text) {
// start parser only if 'oembed' is in text
if (strpos($text, "oembed")){
if (strpos($text, "oembed")) {
// convert non ascii chars to html entities
$html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text));
// If it doesn't parse at all, just return the text.
$dom = @DOMDocument::loadHTML($html_text);
if(! $dom)
if (! $dom) {
return $text;
}
$xpath = new DOMXPath($dom);
$attr = "oembed";

View file

@ -1,6 +1,15 @@
<?php
/**
* @file include/plaintext.php
*/
use \Friendica\ParseUrl;
require_once("include/Photo.php");
require_once("include/bbcode.php");
require_once("include/html2plain.php");
require_once("include/network.php");
/**
* @brief Fetches attachment data that were generated the old way
@ -181,20 +190,17 @@ function get_attached_data($body) {
// if nothing is found, it maybe having an image.
if (!isset($post["type"])) {
require_once("mod/parse_url.php");
require_once("include/Photo.php");
$URLSearchString = "^\[\]";
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_cached($pictures[0][1], true);
$data = ParseUrl::getSiteinfoCached($pictures[0][1], true);
// Workaround:
// Sometimes photo posts to the own album are not detected at the start.
// So we seem to cannot use the cache for these cases. That's strange.
if (($data["type"] != "photo") AND strstr($pictures[0][1], "/photos/"))
$data = parseurl_getsiteinfo($pictures[0][1], true);
$data = ParseUrl::getSiteinfo($pictures[0][1], true);
if ($data["type"] == "photo") {
$post["type"] = "photo";
@ -246,8 +252,7 @@ function get_attached_data($body) {
$post["text"] = trim($body);
}
} elseif (isset($post["url"]) AND ($post["type"] == "video")) {
require_once("mod/parse_url.php");
$data = parseurl_getsiteinfo_cached($post["url"], true);
$data = ParseUrl::getSiteinfoCached($post["url"], true);
if (isset($data["images"][0]))
$post["image"] = $data["images"][0]["src"];
@ -288,9 +293,6 @@ function shortenmsg($msg, $limit, $twitter = false) {
* @return string The converted message
*/
function plaintext($a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "") {
require_once("include/bbcode.php");
require_once("include/html2plain.php");
require_once("include/network.php");
// Remove the hash tags
$URLSearchString = "^\[\]";

View file

@ -15,7 +15,7 @@ use \Friendica\Core\PConfig;
require_once("boot.php");
function poller_run(&$argv, &$argc){
function poller_run($argv, $argc){
global $a, $db;
if(is_null($a)) {
@ -35,16 +35,21 @@ function poller_run(&$argv, &$argc){
$a->start_process();
$mypid = getmypid();
if ($a->max_processes_reached())
if (poller_max_connections_reached()) {
return;
}
if (poller_max_connections_reached())
if (App::maxload_reached()) {
return;
}
if (App::maxload_reached())
if(($argc <= 1) OR ($argv[1] != "no_cron")) {
poller_run_cron();
}
if ($a->max_processes_reached()) {
return;
}
// Checking the number of workers
if (poller_too_much_workers()) {
@ -52,112 +57,18 @@ function poller_run(&$argv, &$argc){
return;
}
if(($argc <= 1) OR ($argv[1] != "no_cron")) {
// Run the cron job that calls all other jobs
proc_run(PRIORITY_MEDIUM, "include/cron.php");
// Run the cronhooks job separately from cron for being able to use a different timing
proc_run(PRIORITY_MEDIUM, "include/cronhooks.php");
// Cleaning dead processes
poller_kill_stale_workers();
} else
// Sleep four seconds before checking for running processes again to avoid having too many workers
sleep(4);
// Checking number of workers
if (poller_too_much_workers())
return;
$cooldown = Config::get("system", "worker_cooldown", 0);
$starttime = time();
while ($r = poller_worker_process()) {
// Quit when in maintenance
if (get_config('system', 'maintenance', true))
return;
// Constantly check the number of parallel database processes
if ($a->max_processes_reached())
return;
// Constantly check the number of available database connections to let the frontend be accessible at any time
if (poller_max_connections_reached())
return;
// Count active workers and compare them with a maximum value that depends on the load
if (poller_too_much_workers())
if (poller_too_much_workers()) {
return;
$upd = q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d AND `pid` = 0",
dbesc(datetime_convert()),
intval($mypid),
intval($r[0]["id"]));
if (!$upd) {
logger("Couldn't update queue entry ".$r[0]["id"]." - skip this execution", LOGGER_DEBUG);
q("COMMIT");
continue;
}
// Assure that there are no tasks executed twice
$id = q("SELECT `pid`, `executed` FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"]));
if (!$id) {
logger("Queue item ".$r[0]["id"]." vanished - skip this execution", LOGGER_DEBUG);
q("COMMIT");
continue;
} elseif ((strtotime($id[0]["executed"]) <= 0) OR ($id[0]["pid"] == 0)) {
logger("Entry for queue item ".$r[0]["id"]." wasn't stored - skip this execution", LOGGER_DEBUG);
q("COMMIT");
continue;
} elseif ($id[0]["pid"] != $mypid) {
logger("Queue item ".$r[0]["id"]." is to be executed by process ".$id[0]["pid"]." and not by me (".$mypid.") - skip this execution", LOGGER_DEBUG);
q("COMMIT");
continue;
if (!poller_execute($r[0])) {
return;
}
q("COMMIT");
$argv = json_decode($r[0]["parameter"]);
$argc = count($argv);
// Check for existance and validity of the include file
$include = $argv[0];
if (!validate_include($include)) {
logger("Include file ".$argv[0]." is not valid!");
q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"]));
continue;
}
require_once($include);
$funcname = str_replace(".php", "", basename($argv[0]))."_run";
if (function_exists($funcname)) {
logger("Process ".$mypid." - Prio ".$r[0]["priority"]." - ID ".$r[0]["id"].": ".$funcname." ".$r[0]["parameter"]);
// For better logging create a new process id for every worker call
// But preserve the old one for the worker
$old_process_id = $a->process_id;
$a->process_id = uniqid("wrk", true);
$funcname($argv, $argc);
$a->process_id = $old_process_id;
if ($cooldown > 0) {
logger("Process ".$mypid." - Prio ".$r[0]["priority"]." - ID ".$r[0]["id"].": ".$funcname." - in cooldown for ".$cooldown." seconds");
sleep($cooldown);
}
logger("Process ".$mypid." - Prio ".$r[0]["priority"]." - ID ".$r[0]["id"].": ".$funcname." - done");
q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"]));
} else
logger("Function ".$funcname." does not exist");
// Quit the poller once every hour
if (time() > ($starttime + 3600))
@ -166,6 +77,108 @@ function poller_run(&$argv, &$argc){
}
/**
* @brief Execute a worker entry
*
* @param array $queue Workerqueue entry
*
* @return boolean "true" if further processing should be stopped
*/
function poller_execute($queue) {
$a = get_app();
$mypid = getmypid();
$cooldown = Config::get("system", "worker_cooldown", 0);
// Quit when in maintenance
if (get_config('system', 'maintenance', true)) {
return false;
}
// Constantly check the number of parallel database processes
if ($a->max_processes_reached()) {
return false;
}
// Constantly check the number of available database connections to let the frontend be accessible at any time
if (poller_max_connections_reached()) {
return false;
}
$upd = q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d AND `pid` = 0",
dbesc(datetime_convert()),
intval($mypid),
intval($queue["id"]));
if (!$upd) {
logger("Couldn't update queue entry ".$queue["id"]." - skip this execution", LOGGER_DEBUG);
q("COMMIT");
return true;
}
// Assure that there are no tasks executed twice
$id = q("SELECT `pid`, `executed` FROM `workerqueue` WHERE `id` = %d", intval($queue["id"]));
if (!$id) {
logger("Queue item ".$queue["id"]." vanished - skip this execution", LOGGER_DEBUG);
q("COMMIT");
return true;
} elseif ((strtotime($id[0]["executed"]) <= 0) OR ($id[0]["pid"] == 0)) {
logger("Entry for queue item ".$queue["id"]." wasn't stored - skip this execution", LOGGER_DEBUG);
q("COMMIT");
return true;
} elseif ($id[0]["pid"] != $mypid) {
logger("Queue item ".$queue["id"]." is to be executed by process ".$id[0]["pid"]." and not by me (".$mypid.") - skip this execution", LOGGER_DEBUG);
q("COMMIT");
return true;
}
q("COMMIT");
$argv = json_decode($queue["parameter"]);
$argc = count($argv);
// Check for existance and validity of the include file
$include = $argv[0];
if (!validate_include($include)) {
logger("Include file ".$argv[0]." is not valid!");
q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($queue["id"]));
return true;
}
require_once($include);
$funcname = str_replace(".php", "", basename($argv[0]))."_run";
if (function_exists($funcname)) {
logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." ".$queue["parameter"]);
// For better logging create a new process id for every worker call
// But preserve the old one for the worker
$old_process_id = $a->process_id;
$a->process_id = uniqid("wrk", true);
$funcname($argv, $argc);
$a->process_id = $old_process_id;
if ($cooldown > 0) {
logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - in cooldown for ".$cooldown." seconds");
sleep($cooldown);
}
logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done");
q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($queue["id"]));
} else {
logger("Function ".$funcname." does not exist");
}
return true;
}
/**
* @brief Checks if the number of database connections has reached a critical limit.
*
@ -177,9 +190,7 @@ function poller_max_connections_reached() {
$max = get_config("system", "max_connections");
// Fetch the percentage level where the poller will get active
$maxlevel = get_config("system", "max_connections_level");
if ($maxlevel == 0)
$maxlevel = 75;
$maxlevel = Config::get("system", "max_connections_level", 75);
if ($max == 0) {
// the maximum number of possible user connections can be a system variable
@ -295,13 +306,13 @@ function poller_kill_stale_workers() {
}
}
/**
* @brief Checks if the number of active workers exceeds the given limits
*
* @return bool Are there too much workers running?
*/
function poller_too_much_workers() {
$queues = get_config("system", "worker_queues");
if ($queues == 0)
$queues = 4;
$queues = Config::get("system", "worker_queues", 4);
$maxqueues = $queues;
@ -310,9 +321,7 @@ function poller_too_much_workers() {
// Decrease the number of workers at higher load
$load = current_load();
if($load) {
$maxsysload = intval(get_config('system','maxloadavg'));
if($maxsysload < 1)
$maxsysload = 50;
$maxsysload = intval(Config::get("system", "maxloadavg", 50));
$maxworkers = $queues;
@ -373,6 +382,11 @@ function poller_too_much_workers() {
return($active >= $queues);
}
/**
* @brief Returns the number of active poller processes
*
* @return integer Number of active poller processes
*/
function poller_active_workers() {
$workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'poller.php'");
@ -394,8 +408,7 @@ function poller_passing_slow(&$highest_priority) {
$r = q("SELECT `priority`
FROM `process`
INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
WHERE `process`.`command` = 'poller.php'");
INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`");
// No active processes at all? Fine
if (!dbm::is_result($r))
@ -435,7 +448,6 @@ function poller_passing_slow(&$highest_priority) {
*
* @return string SQL statement
*/
function poller_worker_process() {
q("START TRANSACTION;");
@ -464,6 +476,99 @@ function poller_worker_process() {
return $r;
}
/**
* @brief Call the front end worker
*/
function call_worker() {
if (!Config::get("system", "frontend_worker") OR !Config::get("system", "worker")) {
return;
}
$url = get_app()->get_baseurl()."/worker";
fetch_url($url, false, $redirects, 1);
}
/**
* @brief Call the front end worker if there aren't any active
*/
function call_worker_if_idle() {
if (!Config::get("system", "frontend_worker") OR !Config::get("system", "worker")) {
return;
}
// Do we have "proc_open"? Then we can fork the poller
if (function_exists("proc_open")) {
// When was the last time that we called the worker?
// Less than one minute? Then we quit
if ((time() - get_config("system", "worker_started")) < 60) {
return;
}
set_config("system", "worker_started", time());
// Do we have enough running workers? Then we quit here.
if (poller_too_much_workers()) {
// Cleaning dead processes
poller_kill_stale_workers();
get_app()->remove_inactive_processes();
return;
}
poller_run_cron();
logger('Call poller', LOGGER_DEBUG);
$args = array("php", "include/poller.php", "no_cron");
$a = get_app();
$a->proc_run($args);
return;
}
// We cannot execute background processes.
// We now run the processes from the frontend.
// This won't work with long running processes.
poller_run_cron();
clear_worker_processes();
$workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'worker.php'");
if ($workers[0]["processes"] == 0) {
call_worker();
}
}
/**
* @brief Removes long running worker processes
*/
function clear_worker_processes() {
$timeout = Config::get("system", "frontend_worker_timeout", 10);
/// @todo We should clean up the corresponding workerqueue entries as well
q("DELETE FROM `process` WHERE `created` < '%s' AND `command` = 'worker.php'",
dbesc(datetime_convert('UTC','UTC',"now - ".$timeout." minutes")));
}
/**
* @brief Runs the cron processes
*/
function poller_run_cron() {
logger('Add cron entries', LOGGER_DEBUG);
// Check for spooled items
proc_run(PRIORITY_HIGH, "include/spool_post.php");
// Run the cron job that calls all other jobs
proc_run(PRIORITY_MEDIUM, "include/cron.php");
// Run the cronhooks job separately from cron for being able to use a different timing
proc_run(PRIORITY_MEDIUM, "include/cronhooks.php");
// Cleaning dead processes
poller_kill_stale_workers();
}
if (array_search(__file__,get_included_files())===0){
poller_run($_SERVER["argv"],$_SERVER["argc"]);

View file

@ -15,22 +15,35 @@ function remove_queue_item($id) {
);
}
/**
* @brief Checks if the communication with a given contact had problems recently
*
* @param int $cid Contact id
*
* @return bool The communication with this contact has currently problems
*/
function was_recently_delayed($cid) {
$r = q("SELECT `id` FROM `queue` WHERE `cid` = %d
and last > UTC_TIMESTAMP() - interval 15 minute limit 1",
$was_delayed = false;
// Are there queue entries that were recently added?
$r = q("SELECT `id` FROM `queue` WHERE `cid` = %d
AND `last` > UTC_TIMESTAMP() - interval 15 minute LIMIT 1",
intval($cid)
);
if(count($r))
return true;
$r = q("select `term-date` from contact where id = %d and `term-date` != '' and `term-date` != '0000-00-00 00:00:00' limit 1",
intval($cid)
);
if(count($r))
return true;
$was_delayed = dbm::is_result($r);
return false;
// We set "term-date" to a current date if the communication has problems.
// If the communication works again we reset this value.
if ($was_delayed) {
$r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` <= '1000-01-01' LIMIT 1",
intval($cid)
);
$was_delayed = !dbm::is_result($r);
}
return $was_delayed;
}

View file

@ -0,0 +1,52 @@
<?php
/**
* @file include/remove_contact.php
* @brief Removes orphaned data from deleted contacts
*/
require_once("boot.php");
function remove_contact_run($argv, $argc) {
global $a, $db;
if (is_null($a)) {
$a = new App;
}
if (is_null($db)) {
@include(".htconfig.php");
require_once("include/dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
}
load_config('config');
load_config('system');
if ($argc != 2) {
return;
}
$id = intval($argv[1]);
// Only delete if the contact doesn't exist (anymore)
$r = q("SELECT `id` FROM `contact` WHERE `id` = %d", intval($id));
if (dbm::is_result($r)) {
return;
}
q("DELETE FROM `item` WHERE `contact-id` = %d", intval($id));
q("DELETE FROM `photo` WHERE `contact-id` = %d", intval($id));
q("DELETE FROM `mail` WHERE `contact-id` = %d", intval($id));
q("DELETE FROM `event` WHERE `cid` = %d", intval($id));
q("DELETE FROM `queue` WHERE `cid` = %d", intval($id));
}
if (array_search(__file__, get_included_files()) === 0) {
remove_contact_run($_SERVER["argv"], $_SERVER["argc"]);
killme();
}
?>

View file

@ -1079,10 +1079,12 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
return array();
}
$list = Cache::get("suggestion_query:".$uid.":".$start.":".$limit);
if (!is_null($list)) {
return $list;
}
// Uncommented because the result of the queries are to big to store it in the cache.
// We need to decide if we want to change the db column type or if we want to delete it.
// $list = Cache::get("suggestion_query:".$uid.":".$start.":".$limit);
// if (!is_null($list)) {
// return $list;
// }
$network = array(NETWORK_DFRN);
@ -1116,7 +1118,10 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
);
if (count($r) && count($r) >= ($limit -1)) {
Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES);
// Uncommented because the result of the queries are to big to store it in the cache.
// We need to decide if we want to change the db column type or if we want to delete it.
// Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES);
return $r;
}
@ -1147,7 +1152,9 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
while (sizeof($list) > ($limit))
array_pop($list);
Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $list, CACHE_FIVE_MINUTES);
// Uncommented because the result of the queries are to big to store it in the cache.
// We need to decide if we want to change the db column type or if we want to delete it.
// Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $list, CACHE_FIVE_MINUTES);
return $list;
}

49
include/spool_post.php Normal file
View file

@ -0,0 +1,49 @@
<?php
/**
* @file include/spool_post.php
* @brief Posts items that wer spooled because they couldn't be posted.
*/
require_once("boot.php");
require_once("include/items.php");
function spool_post_run($argv, $argc) {
global $a, $db;
if (is_null($a)) {
$a = new App;
}
if (is_null($db)) {
@include(".htconfig.php");
require_once("include/dba.php");
$db = new dba($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
}
load_config('config');
load_config('system');
$path = get_spoolpath();
if (is_writable($path)){
if ($dh = opendir($path)) {
while (($file = readdir($dh)) !== false) {
$fullfile = $path."/".$file;
if (filetype($fullfile) != "file") {
continue;
}
$arr = json_decode(file_get_contents($fullfile), true);
$result = item_store($arr);
logger("Spool file ".$file." stored: ".$result, LOGGER_DEBUG);
unlink($fullfile);
}
closedir($dh);
}
}
}
if (array_search(__file__, get_included_files()) === 0) {
spool_post_run($_SERVER["argv"], $_SERVER["argc"]);
killme();
}
?>

View file

@ -12,7 +12,7 @@ if(! function_exists('replace_macros')) {
* This is our template processor
*
* @param string|FriendicaSmarty $s the string requiring macro substitution,
* or an instance of FriendicaSmarty
* or an instance of FriendicaSmarty
* @param array $r key value pairs (search => replace)
* @return string substituted string
*/
@ -771,7 +771,7 @@ function activity_match($haystack,$needle) {
/**
* @brief Pull out all #hashtags and @person tags from $string.
*
*
* We also get @person@domain.com - which would make
* the regex quite complicated as tags can also
* end a sentence. So we'll run through our results
@ -874,8 +874,8 @@ 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
WHERE `uid` = %d AND NOT `self` AND NOT `blocked`
AND NOT `hidden` AND NOT `archive`
AND `network` IN ('%s', '%s', '%s')",
intval($a->profile['uid']),
dbesc(NETWORK_DFRN),
@ -892,7 +892,7 @@ function contact_block() {
} else {
// Splitting the query in two parts makes it much faster
$r = q("SELECT `id` FROM `contact`
WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending`
WHERE `uid` = %d AND NOT `self` AND NOT `blocked`
AND NOT `hidden` AND NOT `archive`
AND `network` IN ('%s', '%s', '%s') ORDER BY RAND() LIMIT %d",
intval($a->profile['uid']),
@ -1170,33 +1170,29 @@ function link_compare($a,$b) {
return false;
}}
if(! function_exists('redir_private_images')) {
/**
* Find any non-embedded images in private items and add redir links to them
* @brief Find any non-embedded images in private items and add redir links to them
*
* @param App $a
* @param array $item
* @param array &$item The field array of an item row
*/
function redir_private_images($a, &$item) {
function redir_private_images($a, &$item)
{
$matches = false;
$cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
if($cnt) {
//logger("redir_private_images: matches = " . print_r($matches, true));
foreach($matches as $mtch) {
if(strpos($mtch[1], '/redir') !== false)
if ($cnt) {
foreach ($matches as $mtch) {
if (strpos($mtch[1], '/redir') !== false) {
continue;
}
if((local_user() == $item['uid']) && ($item['private'] != 0) && ($item['contact-id'] != $a->contact['id']) && ($item['network'] == NETWORK_DFRN)) {
//logger("redir_private_images: redir");
$img_url = 'redir?f=1&quiet=1&url=' . $mtch[1] . '&conurl=' . $item['author-link'];
$item['body'] = str_replace($mtch[0], "[img]".$img_url."[/img]", $item['body']);
if ((local_user() == $item['uid']) && ($item['private'] != 0) && ($item['contact-id'] != $a->contact['id']) && ($item['network'] == NETWORK_DFRN)) {
$img_url = 'redir?f=1&quiet=1&url=' . urlencode($mtch[1]) . '&conurl=' . urlencode($item['author-link']);
$item['body'] = str_replace($mtch[0], '[img]' . $img_url . '[/img]', $item['body']);
}
}
}
}}
}
function put_item_in_cache(&$item, $update = false) {

View file

@ -378,6 +378,29 @@ function create_user($arr) {
}
/**
* @brief send registration confiŕmation with the intormation that reg is pending
*
* @param string $email
* @param string $sitename
* @param string $username
* @return NULL|boolean from notification() and email() inherited
*/
function send_register_pending_eml($email, $sitename, $username) {
$body = deindent(t('
Dear %1$s,
Thank you for registering at %2$s. Your account is pending for approval by the administrator.
'));
$body = sprintf($body, $username, $sitename);
return notification(array(
'type' => "SYSTEM_EMAIL",
'to_email' => $email,
'subject'=> sprintf( t('Registration at %s'), $sitename),
'body' => $body));
}
/*
* send registration confirmation.
* It's here as a function because the mail is sent

View file

@ -1,11 +1,12 @@
<?php
/**
* @file include/xml.php
*/
/**
* @brief This class contain functions to work with XML data
* @brief This class contain methods to work with XML data
*
*/
class xml {
@ -23,15 +24,17 @@ class xml {
public static function from_array($array, &$xml, $remove_header = false, $namespaces = array(), $root = true) {
if ($root) {
foreach($array as $key => $value) {
foreach ($namespaces AS $nskey => $nsvalue)
foreach ($array as $key => $value) {
foreach ($namespaces AS $nskey => $nsvalue) {
$key .= " xmlns".($nskey == "" ? "":":").$nskey.'="'.$nsvalue.'"';
}
if (is_array($value)) {
$root = new SimpleXMLElement("<".$key."/>");
self::from_array($value, $root, $remove_header, $namespaces, false);
} else
} else {
$root = new SimpleXMLElement("<".$key.">".xmlify($value)."</".$key.">");
}
$dom = dom_import_simplexml($root)->ownerDocument;
$dom->formatOutput = true;
@ -39,16 +42,18 @@ class xml {
$xml_text = $dom->saveXML();
if ($remove_header)
if ($remove_header) {
$xml_text = trim(substr($xml_text, 21));
}
return $xml_text;
}
}
foreach($array as $key => $value) {
if (!isset($element) AND isset($xml))
if (!isset($element) AND isset($xml)) {
$element = $xml;
}
if (is_integer($key)) {
if (isset($element)) {
@ -62,27 +67,31 @@ class xml {
}
$element_parts = explode(":", $key);
if ((count($element_parts) > 1) AND isset($namespaces[$element_parts[0]]))
if ((count($element_parts) > 1) AND isset($namespaces[$element_parts[0]])) {
$namespace = $namespaces[$element_parts[0]];
elseif (isset($namespaces[""])) {
} elseif (isset($namespaces[""])) {
$namespace = $namespaces[""];
} else
} else {
$namespace = NULL;
}
// Remove undefined namespaces from the key
if ((count($element_parts) > 1) AND is_null($namespace))
if ((count($element_parts) > 1) AND is_null($namespace)) {
$key = $element_parts[1];
}
if (substr($key, 0, 11) == "@attributes") {
if (!isset($element) OR !is_array($value))
if (!isset($element) OR !is_array($value)) {
continue;
}
foreach ($value as $attr_key => $attr_value) {
$element_parts = explode(":", $attr_key);
if ((count($element_parts) > 1) AND isset($namespaces[$element_parts[0]]))
if ((count($element_parts) > 1) AND isset($namespaces[$element_parts[0]])) {
$namespace = $namespaces[$element_parts[0]];
else
} else {
$namespace = NULL;
}
$element->addAttribute($attr_key, $attr_value, $namespace);
}
@ -90,9 +99,9 @@ class xml {
continue;
}
if (!is_array($value))
if (!is_array($value)) {
$element = $xml->addChild($key, xmlify($value), $namespace);
elseif (is_array($value)) {
} elseif (is_array($value)) {
$element = $xml->addChild($key, NULL, $namespace);
self::from_array($value, $element, $remove_header, $namespaces, false);
}
@ -111,8 +120,9 @@ class xml {
$target->addChild($elementname, xmlify($source));
else {
$child = $target->addChild($elementname);
foreach ($source->children() AS $childfield => $childentry)
foreach ($source->children() AS $childfield => $childentry) {
self::copy($childentry, $child, $childfield);
}
}
}
@ -168,11 +178,11 @@ class xml {
return(null);
}
if (!is_string($xml_element) &&
!is_array($xml_element) &&
(get_class($xml_element) == 'SimpleXMLElement')) {
$xml_element_copy = $xml_element;
$xml_element = get_object_vars($xml_element);
if (!is_string($xml_element)
&& !is_array($xml_element)
&& (get_class($xml_element) == 'SimpleXMLElement')) {
$xml_element_copy = $xml_element;
$xml_element = get_object_vars($xml_element);
}
if (is_array($xml_element)) {
@ -181,7 +191,7 @@ class xml {
return (trim(strval($xml_element_copy)));
}
foreach($xml_element as $key=>$value) {
foreach ($xml_element as $key => $value) {
$recursion_depth++;
$result_array[strtolower($key)] =
@ -223,10 +233,12 @@ class xml {
*
* @return array The parsed XML in an array form. Use print_r() to see the resulting array structure.
*/
public static function to_array($contents, $namespaces = true, $get_attributes=1, $priority = 'attribute') {
if(!$contents) return array();
public static function to_array($contents, $namespaces = true, $get_attributes = 1, $priority = 'attribute') {
if (!$contents) {
return array();
}
if(!function_exists('xml_parser_create')) {
if (!function_exists('xml_parser_create')) {
logger('xml::to_array: parser function missing');
return array();
}
@ -235,12 +247,13 @@ class xml {
libxml_use_internal_errors(true);
libxml_clear_errors();
if($namespaces)
if ($namespaces) {
$parser = @xml_parser_create_ns("UTF-8",':');
else
} else {
$parser = @xml_parser_create();
}
if(! $parser) {
if (! $parser) {
logger('xml::to_array: xml_parser_create: no resource');
return array();
}
@ -252,10 +265,11 @@ class xml {
@xml_parse_into_struct($parser, trim($contents), $xml_values);
@xml_parser_free($parser);
if(! $xml_values) {
if (! $xml_values) {
logger('xml::to_array: libxml: parse error: ' . $contents, LOGGER_DATA);
foreach(libxml_get_errors() as $err)
foreach (libxml_get_errors() as $err) {
logger('libxml: parse: ' . $err->code . " at " . $err->line . ":" . $err->column . " : " . $err->message, LOGGER_DATA);
}
libxml_clear_errors();
return;
}
@ -270,8 +284,8 @@ class xml {
// Go through the tags.
$repeated_tag_index = array(); // Multiple tags with same name will be turned into an array
foreach($xml_values as $data) {
unset($attributes,$value); // Remove existing values, or there will be trouble
foreach ($xml_values as $data) {
unset($attributes, $value); // Remove existing values, or there will be trouble
// This command will extract these variables into the foreach scope
// tag(string), type(string), level(int), attributes(array).
@ -280,46 +294,54 @@ class xml {
$result = array();
$attributes_data = array();
if(isset($value)) {
if($priority == 'tag') $result = $value;
else $result['value'] = $value; // Put the value in a assoc array if we are in the 'Attribute' mode
if (isset($value)) {
if ($priority == 'tag') {
$result = $value;
} else {
$result['value'] = $value; // Put the value in a assoc array if we are in the 'Attribute' mode
}
}
//Set the attributes too.
if(isset($attributes) and $get_attributes) {
foreach($attributes as $attr => $val) {
if($priority == 'tag') $attributes_data[$attr] = $val;
else $result['@attributes'][$attr] = $val; // Set all the attributes in a array called 'attr'
if (isset($attributes) and $get_attributes) {
foreach ($attributes as $attr => $val) {
if($priority == 'tag') {
$attributes_data[$attr] = $val;
} else {
$result['@attributes'][$attr] = $val; // Set all the attributes in a array called 'attr'
}
}
}
// See tag status and do the needed.
if($namespaces && strpos($tag,':')) {
$namespc = substr($tag,0,strrpos($tag,':'));
$tag = strtolower(substr($tag,strlen($namespc)+1));
if ($namespaces && strpos($tag, ':')) {
$namespc = substr($tag, 0, strrpos($tag, ':'));
$tag = strtolower(substr($tag, strlen($namespc)+1));
$result['@namespace'] = $namespc;
}
$tag = strtolower($tag);
if($type == "open") { // The starting of the tag '<tag>'
if ($type == "open") { // The starting of the tag '<tag>'
$parent[$level-1] = &$current;
if(!is_array($current) or (!in_array($tag, array_keys($current)))) { // Insert New tag
if (!is_array($current) or (!in_array($tag, array_keys($current)))) { // Insert New tag
$current[$tag] = $result;
if($attributes_data) $current[$tag. '_attr'] = $attributes_data;
if ($attributes_data) {
$current[$tag. '_attr'] = $attributes_data;
}
$repeated_tag_index[$tag.'_'.$level] = 1;
$current = &$current[$tag];
} else { // There was another element with the same tag name
if(isset($current[$tag][0])) { // If there is a 0th element it is already an array
if (isset($current[$tag][0])) { // If there is a 0th element it is already an array
$current[$tag][$repeated_tag_index[$tag.'_'.$level]] = $result;
$repeated_tag_index[$tag.'_'.$level]++;
} else { // This section will make the value an array if multiple tags with the same name appear together
$current[$tag] = array($current[$tag],$result); // This will combine the existing item and the new item together to make an array
$current[$tag] = array($current[$tag], $result); // This will combine the existing item and the new item together to make an array
$repeated_tag_index[$tag.'_'.$level] = 2;
if(isset($current[$tag.'_attr'])) { // The attribute of the last(0th) tag must be moved as well
if (isset($current[$tag.'_attr'])) { // The attribute of the last(0th) tag must be moved as well
$current[$tag]['0_attr'] = $current[$tag.'_attr'];
unset($current[$tag.'_attr']);
}
@ -329,35 +351,37 @@ class xml {
$current = &$current[$tag][$last_item_index];
}
} elseif($type == "complete") { // Tags that ends in 1 line '<tag />'
} elseif ($type == "complete") { // Tags that ends in 1 line '<tag />'
//See if the key is already taken.
if(!isset($current[$tag])) { //New Key
if (!isset($current[$tag])) { //New Key
$current[$tag] = $result;
$repeated_tag_index[$tag.'_'.$level] = 1;
if($priority == 'tag' and $attributes_data) $current[$tag. '_attr'] = $attributes_data;
if ($priority == 'tag' and $attributes_data) {
$current[$tag. '_attr'] = $attributes_data;
}
} else { // If taken, put all things inside a list(array)
if(isset($current[$tag][0]) and is_array($current[$tag])) { // If it is already an array...
if (isset($current[$tag][0]) and is_array($current[$tag])) { // If it is already an array...
// ...push the new element into that array.
$current[$tag][$repeated_tag_index[$tag.'_'.$level]] = $result;
if($priority == 'tag' and $get_attributes and $attributes_data) {
if ($priority == 'tag' and $get_attributes and $attributes_data) {
$current[$tag][$repeated_tag_index[$tag.'_'.$level] . '_attr'] = $attributes_data;
}
$repeated_tag_index[$tag.'_'.$level]++;
} else { // If it is not an array...
$current[$tag] = array($current[$tag],$result); //...Make it an array using using the existing value and the new value
$current[$tag] = array($current[$tag], $result); //...Make it an array using using the existing value and the new value
$repeated_tag_index[$tag.'_'.$level] = 1;
if($priority == 'tag' and $get_attributes) {
if(isset($current[$tag.'_attr'])) { // The attribute of the last(0th) tag must be moved as well
if ($priority == 'tag' and $get_attributes) {
if (isset($current[$tag.'_attr'])) { // The attribute of the last(0th) tag must be moved as well
$current[$tag]['0_attr'] = $current[$tag.'_attr'];
unset($current[$tag.'_attr']);
}
if($attributes_data) {
if ($attributes_data) {
$current[$tag][$repeated_tag_index[$tag.'_'.$level] . '_attr'] = $attributes_data;
}
}
@ -365,12 +389,25 @@ class xml {
}
}
} elseif($type == 'close') { // End of tag '</tag>'
} elseif ($type == 'close') { // End of tag '</tag>'
$current = &$parent[$level-1];
}
}
return($xml_array);
}
/**
* @brief Delete a node in a XML object
*
* @param object $doc XML document
* @param string $node Node name
*/
public static function deleteNode(&$doc, $node) {
$xpath = new DomXPath($doc);
$list = $xpath->query("//".$node);
foreach ($list as $child) {
$child->parentNode->removeChild($child);
}
}
}
?>

View file

@ -99,6 +99,10 @@ if (!$a->is_backend()) {
$stamp1 = microtime(true);
session_start();
$a->save_timestamp($stamp1, "parser");
} else {
require_once "include/poller.php";
call_worker_if_idle();
}
/**

View file

@ -296,7 +296,7 @@ function string2bb(element) {
$.fn.bbco_autocomplete = function(type) {
if(type=='bbcode') {
var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'img', 'url', 'audio', 'video', 'youtube', 'vimeo', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'nobb', 'noparse', 'pre', 'abstract'];
var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'quote', 'code', 'spoiler', 'map', 'img', 'url', 'audio', 'video', 'embed', 'youtube', 'vimeo', 'list', 'ul', 'ol', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'nobb', 'noparse', 'pre', 'abstract'];
var open_elements = ['*', 'hr'];
var elements = open_close_elements.concat(open_elements);

View file

@ -44,7 +44,7 @@ aStates[20]="|Brestskaya (Brest)|Homyel'skaya (Homyel')|Horad Minsk|Hrodzyenskay
aStates[21]="|Antwerpen|Brabant Wallon|Brussels Capitol Region|Hainaut|Liege|Limburg|Luxembourg|Namur|Oost-Vlaanderen|Vlaams Brabant|West-Vlaanderen";
aStates[22]="|Belize|Cayo|Corozal|Orange Walk|Stann Creek|Toledo";
aStates[23]="|Alibori|Atakora|Atlantique|Borgou|Collines|Couffo|Donga|Littoral|Mono|Oueme|Plateau|Zou";
aStates[24]="|Devonshire|Hamilton|Hamilton|Paget|Pembroke|Saint George|Saint Georges|Sandys|Smiths|Southampton|Warwick";
aStates[24]="|Devonshire|Hamilton (City)|Hamilton|Paget|Pembroke|Saint George|Saint Georges|Sandys|Smiths|Southampton|Warwick";
aStates[25]="|Bumthang|Chhukha|Chirang|Daga|Geylegphug|Ha|Lhuntshi|Mongar|Paro|Pemagatsel|Punakha|Samchi|Samdrup Jongkhar|Shemgang|Tashigang|Thimphu|Tongsa|Wangdi Phodrang";
aStates[26]="|Beni|Chuquisaca|Cochabamba|La Paz|Oruro|Pando|Potosi|Santa Cruz|Tarija";
aStates[27]="|Federation of Bosnia and Herzegovina|Republika Srpska";
@ -125,7 +125,7 @@ aStates[99]="|Holy See (Vatican City)"
aStates[100]="|Atlantida|Choluteca|Colon|Comayagua|Copan|Cortes|El Paraiso|Francisco Morazan|Gracias a Dios|Intibuca|Islas de la Bahia|La Paz|Lempira|Ocotepeque|Olancho|Santa Barbara|Valle|Yoro";
aStates[101]="|Hong Kong";
aStates[102]="|Howland Island";
aStates[103]="|Bacs-Kiskun|Baranya|Bekes|Bekescsaba|Borsod-Abauj-Zemplen|Budapest|Csongrad|Debrecen|Dunaujvaros|Eger|Fejer|Gyor|Gyor-Moson-Sopron|Hajdu-Bihar|Heves|Hodmezovasarhely|Jasz-Nagykun-Szolnok|Kaposvar|Kecskemet|Komarom-Esztergom|Miskolc|Nagykanizsa|Nograd|Nyiregyhaza|Pecs|Pest|Somogy|Sopron|Szabolcs-Szatmar-Bereg|Szeged|Szekesfehervar|Szolnok|Szombathely|Tatabanya|Tolna|Vas|Veszprem|Veszprem|Zala|Zalaegerszeg";
aStates[103]="|Bacs-Kiskun|Baranya|Bekes|Bekescsaba|Borsod-Abauj-Zemplen|Budapest|Csongrad|Debrecen|Dunaujvaros|Eger|Fejer|Gyor|Gyor-Moson-Sopron|Hajdu-Bihar|Heves|Hodmezovasarhely|Jasz-Nagykun-Szolnok|Kaposvar|Kecskemet|Komarom-Esztergom|Miskolc|Nagykanizsa|Nograd|Nyiregyhaza|Pecs|Pest|Somogy|Sopron|Szabolcs-Szatmar-Bereg|Szeged|Szekesfehervar|Szolnok|Szombathely|Tatabanya|Tolna|Vas|Veszprem|Veszprem (City)|Zala|Zalaegerszeg";
aStates[104]="|Akranes|Akureyri|Arnessysla|Austur-Bardhastrandarsysla|Austur-Hunavatnssysla|Austur-Skaftafellssysla|Borgarfjardharsysla|Dalasysla|Eyjafjardharsysla|Gullbringusysla|Hafnarfjordhur|Husavik|Isafjordhur|Keflavik|Kjosarsysla|Kopavogur|Myrasysla|Neskaupstadhur|Nordhur-Isafjardharsysla|Nordhur-Mulasys-la|Nordhur-Thingeyjarsysla|Olafsfjordhur|Rangarvallasysla|Reykjavik|Saudharkrokur|Seydhisfjordhur|Siglufjordhur|Skagafjardharsysla|Snaefellsnes-og Hnappadalssysla|Strandasysla|Sudhur-Mulasysla|Sudhur-Thingeyjarsysla|Vesttmannaeyjar|Vestur-Bardhastrandarsysla|Vestur-Hunavatnssysla|Vestur-Isafjardharsysla|Vestur-Skaftafellssysla";
aStates[105]="|Andaman and Nicobar Islands|Andhra Pradesh|Arunachal Pradesh|Assam|Bihar|Chandigarh|Chhattisgarh|Dadra and Nagar Haveli|Daman and Diu|Delhi|Goa|Gujarat|Haryana|Himachal Pradesh|Jammu and Kashmir|Jharkhand|Karnataka|Kerala|Lakshadweep|Madhya Pradesh|Maharashtra|Manipur|Meghalaya|Mizoram|Nagaland|Orissa|Pondicherry|Punjab|Rajasthan|Sikkim|Tamil Nadu|Tripura|Uttar Pradesh|Uttaranchal|West Bengal";
aStates[106]="|Aceh|Bali|Banten|Bengkulu|East Timor|Gorontalo|Irian Jaya|Jakarta Raya|Jambi|Jawa Barat|Jawa Tengah|Jawa Timur|Kalimantan Barat|Kalimantan Selatan|Kalimantan Tengah|Kalimantan Timur|Kepulauan Bangka Belitung|Lampung|Maluku|Maluku Utara|Nusa Tenggara Barat|Nusa Tenggara Timur|Riau|Sulawesi Selatan|Sulawesi Tengah|Sulawesi Tenggara|Sulawesi Utara|Sumatera Barat|Sumatera Selatan|Sumatera Utara|Yogyakarta";
@ -145,12 +145,12 @@ aStates[119]="|'Amman|Ajlun|Al 'Aqabah|Al Balqa'|Al Karak|Al Mafraq|At Tafilah|A
aStates[120]="|Juan de Nova Island";
aStates[121]="|Almaty|Aqmola|Aqtobe|Astana|Atyrau|Batys Qazaqstan|Bayqongyr|Mangghystau|Ongtustik Qazaqstan|Pavlodar|Qaraghandy|Qostanay|Qyzylorda|Shyghys Qazaqstan|Soltustik Qazaqstan|Zhambyl";
aStates[122]="|Central|Coast|Eastern|Nairobi Area|North Eastern|Nyanza|Rift Valley|Western";
aStates[123]="|Abaiang|Abemama|Aranuka|Arorae|Banaba|Banaba|Beru|Butaritari|Central Gilberts|Gilbert Islands|Kanton|Kiritimati|Kuria|Line Islands|Line Islands|Maiana|Makin|Marakei|Nikunau|Nonouti|Northern Gilberts|Onotoa|Phoenix Islands|Southern Gilberts|Tabiteuea|Tabuaeran|Tamana|Tarawa|Tarawa|Teraina";
aStates[123]="|Abaiang|Abemama|Aranuka|Arorae|Banaba (District)|Banaba|Beru|Butaritari|Central Gilberts (District)|Gilbert Islands (Unit)|Kanton|Kiritimati|Kuria|Line Islands (District)|Line Islands (Unit)|Maiana|Makin|Marakei|Nikunau|Nonouti|Northern Gilberts (District)|Onotoa|Phoenix Islands (Unit)|Southern Gilberts (District)|Tabiteuea|Tabuaeran|Tamana|Tarawa (District)|Tarawa|Teraina";
aStates[124]="|Chagang-do (Chagang Province)|Hamgyong-bukto (North Hamgyong Province)|Hamgyong-namdo (South Hamgyong Province)|Hwanghae-bukto (North Hwanghae Province)|Hwanghae-namdo (South Hwanghae Province)|Kaesong-si (Kaesong City)|Kangwon-do (Kangwon Province)|Namp'o-si (Namp'o City)|P'yongan-bukto (North P'yongan Province)|P'yongan-namdo (South P'yongan Province)|P'yongyang-si (P'yongyang City)|Yanggang-do (Yanggang Province)"
aStates[125]="|Ch'ungch'ong-bukto|Ch'ungch'ong-namdo|Cheju-do|Cholla-bukto|Cholla-namdo|Inch'on-gwangyoksi|Kangwon-do|Kwangju-gwangyoksi|Kyonggi-do|Kyongsang-bukto|Kyongsang-namdo|Pusan-gwangyoksi|Soul-t'ukpyolsi|Taegu-gwangyoksi|Taejon-gwangyoksi|Ulsan-gwangyoksi";
aStates[126]="|Al 'Asimah|Al Ahmadi|Al Farwaniyah|Al Jahra'|Hawalli";
aStates[127]="|Batken Oblasty|Bishkek Shaary|Chuy Oblasty (Bishkek)|Jalal-Abad Oblasty|Naryn Oblasty|Osh Oblasty|Talas Oblasty|Ysyk-Kol Oblasty (Karakol)"
aStates[128]="|Attapu|Bokeo|Bolikhamxai|Champasak|Houaphan|Khammouan|Louangnamtha|Louangphabang|Oudomxai|Phongsali|Salavan|Savannakhet|Viangchan|Viangchan|Xaignabouli|Xaisomboun|Xekong|Xiangkhoang";
aStates[128]="|Attapu|Bokeo|Bolikhamxai|Champasak|Houaphan|Khammouan|Louangnamtha|Louangphabang|Oudomxai|Phongsali|Salavan|Savannakhet|Viangchan City|Viangchan|Xaignabouli|Xaisomboun|Xekong|Xiangkhoang";
aStates[129]="|Aizkraukles Rajons|Aluksnes Rajons|Balvu Rajons|Bauskas Rajons|Cesu Rajons|Daugavpils|Daugavpils Rajons|Dobeles Rajons|Gulbenes Rajons|Jekabpils Rajons|Jelgava|Jelgavas Rajons|Jurmala|Kraslavas Rajons|Kuldigas Rajons|Leipaja|Liepajas Rajons|Limbazu Rajons|Ludzas Rajons|Madonas Rajons|Ogres Rajons|Preilu Rajons|Rezekne|Rezeknes Rajons|Riga|Rigas Rajons|Saldus Rajons|Talsu Rajons|Tukuma Rajons|Valkas Rajons|Valmieras Rajons|Ventspils|Ventspils Rajons";
aStates[130]="|Beyrouth|Ech Chimal|Ej Jnoub|El Bekaa|Jabal Loubnane";
aStates[131]="|Berea|Butha-Buthe|Leribe|Mafeteng|Maseru|Mohales Hoek|Mokhotlong|Qacha's Nek|Quthing|Thaba-Tseka";
@ -176,7 +176,7 @@ aStates[150]="|Mayotte";
aStates[151]="|Aguascalientes|Baja California|Baja California Sur|Campeche|Chiapas|Chihuahua|Coahuila de Zaragoza|Colima|Distrito Federal|Durango|Guanajuato|Guerrero|Hidalgo|Jalisco|Mexico|Michoacan de Ocampo|Morelos|Nayarit|Nuevo Leon|Oaxaca|Puebla|Queretaro de Arteaga|Quintana Roo|San Luis Potosi|Sinaloa|Sonora|Tabasco|Tamaulipas|Tlaxcala|Veracruz-Llave|Yucatan|Zacatecas";
aStates[152]="|Chuuk (Truk)|Kosrae|Pohnpei|Yap";
aStates[153]="|Midway Islands";
aStates[154]="|Balti|Cahul|Chisinau|Chisinau|Dubasari|Edinet|Gagauzia|Lapusna|Orhei|Soroca|Tighina|Ungheni";
aStates[154]="|Balti|Cahul|Chisinau (City)|Chisinau|Dubasari|Edinet|Gagauzia|Lapusna|Orhei|Soroca|Tighina|Ungheni";
aStates[155]="|Fontvieille|La Condamine|Monaco-Ville|Monte-Carlo";
aStates[156]="|Arhangay|Bayan-Olgiy|Bayanhongor|Bulgan|Darhan|Dornod|Dornogovi|Dundgovi|Dzavhan|Erdenet|Govi-Altay|Hentiy|Hovd|Hovsgol|Omnogovi|Ovorhangay|Selenge|Suhbaatar|Tov|Ulaanbaatar|Uvs";
aStates[157]="|Saint Anthony|Saint Georges|Saint Peter's";
@ -243,7 +243,7 @@ aStates[217]="|Hhohho|Lubombo|Manzini|Shiselweni";
aStates[218]="|Blekinge|Dalarnas|Gavleborgs|Gotlands|Hallands|Jamtlands|Jonkopings|Kalmar|Kronobergs|Norrbottens|Orebro|Ostergotlands|Skane|Sodermanlands|Stockholms|Uppsala|Varmlands|Vasterbottens|Vasternorrlands|Vastmanlands|Vastra Gotalands";
aStates[219]="|Aargau|Ausser-Rhoden|Basel-Landschaft|Basel-Stadt|Bern|Fribourg|Geneve|Glarus|Graubunden|Inner-Rhoden|Jura|Luzern|Neuchatel|Nidwalden|Obwalden|Sankt Gallen|Schaffhausen|Schwyz|Solothurn|Thurgau|Ticino|Uri|Valais|Vaud|Zug|Zurich";
aStates[220]="|Al Hasakah|Al Ladhiqiyah|Al Qunaytirah|Ar Raqqah|As Suwayda'|Dar'a|Dayr az Zawr|Dimashq|Halab|Hamah|Hims|Idlib|Rif Dimashq|Tartus";
aStates[221]="|Chang-hua|Chi-lung|Chia-i|Chia-i|Chung-hsing-hsin-ts'un|Hsin-chu|Hsin-chu|Hua-lien|I-lan|Kao-hsiung|Kao-hsiung|Miao-li|Nan-t'ou|P'eng-hu|P'ing-tung|T'ai-chung|T'ai-chung|T'ai-nan|T'ai-nan|T'ai-pei|T'ai-pei|T'ai-tung|T'ao-yuan|Yun-lin";
aStates[221]="|Chang-hua|Chi-lung|Chia-i (City)|Chia-i|Chung-hsing-hsin-ts'un|Hsin-chu (City)|Hsin-chu|Hua-lien|I-lan|Kao-hsiung (City)|Kao-hsiung|Miao-li|Nan-t'ou|P'eng-hu|P'ing-tung|T'ai-chung (City)|T'ai-chung|T'ai-nan (City)|T'ai-nan|T'ai-pei (City)|T'ai-pei|T'ai-tung|T'ao-yuan|Yun-lin";
aStates[222]="|Viloyati Khatlon|Viloyati Leninobod|Viloyati Mukhtori Kuhistoni Badakhshon";
aStates[223]="|Arusha|Dar es Salaam|Dodoma|Iringa|Kagera|Kigoma|Kilimanjaro|Lindi|Mara|Mbeya|Morogoro|Mtwara|Mwanza|Pemba North|Pemba South|Pwani|Rukwa|Ruvuma|Shinyanga|Singida|Tabora|Tanga|Zanzibar Central/South|Zanzibar North|Zanzibar Urban/West";
aStates[224]="|Amnat Charoen|Ang Thong|Buriram|Chachoengsao|Chai Nat|Chaiyaphum|Chanthaburi|Chiang Mai|Chiang Rai|Chon Buri|Chumphon|Kalasin|Kamphaeng Phet|Kanchanaburi|Khon Kaen|Krabi|Krung Thep Mahanakhon (Bangkok)|Lampang|Lamphun|Loei|Lop Buri|Mae Hong Son|Maha Sarakham|Mukdahan|Nakhon Nayok|Nakhon Pathom|Nakhon Phanom|Nakhon Ratchasima|Nakhon Sawan|Nakhon Si Thammarat|Nan|Narathiwat|Nong Bua Lamphu|Nong Khai|Nonthaburi|Pathum Thani|Pattani|Phangnga|Phatthalung|Phayao|Phetchabun|Phetchaburi|Phichit|Phitsanulok|Phra Nakhon Si Ayutthaya|Phrae|Phuket|Prachin Buri|Prachuap Khiri Khan|Ranong|Ratchaburi|Rayong|Roi Et|Sa Kaeo|Sakon Nakhon|Samut Prakan|Samut Sakhon|Samut Songkhram|Sara Buri|Satun|Sing Buri|Sisaket|Songkhla|Sukhothai|Suphan Buri|Surat Thani|Surin|Tak|Trang|Trat|Ubon Ratchathani|Udon Thani|Uthai Thani|Uttaradit|Yala|Yasothon";

View file

@ -92,7 +92,6 @@
/* 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;
@ -117,7 +116,6 @@
$("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
$("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden");
input.val(val);
//console.log(id);
});
/* setup field_richtext */
@ -179,110 +177,77 @@
$('#nav-notifications-menu, aside').perfectScrollbar();
/* nav update event */
$('nav').bind('nav-update', function(e,data){
var invalid = $(data).find('invalid').text();
$('nav').bind('nav-update', function(e, data){
var invalid = data.invalid || 0;
if(invalid == 1) { window.location.href=window.location.href }
var net = $(data).find('net').text();
if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') }
$('#net-update').html(net);
['net', 'home', 'intro', 'mail', 'events', 'birthdays', 'notify'].forEach(function(type) {
var number = data[type];
if (number == 0) {
number = '';
$('#' + type + '-update').removeClass('show');
} else {
$('#' + type + '-update').addClass('show');
}
$('#' + type + '-update').text(number);
});
var home = $(data).find('home').text();
if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') }
$('#home-update').html(home);
var intro = $(data).find('intro').text();
if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') }
$('#intro-update').html(intro);
var mail = $(data).find('mail').text();
if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') }
$('#mail-update').html(mail);
var intro = $(data).find('intro').text();
if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') }
var intro = data['intro'];
if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') }
$('#intro-update-li').html(intro);
var mail = $(data).find('mail').text();
if(mail == 0) { mail = ''; $('#mail-update-li').removeClass('show') } else { $('#mail-update-li').addClass('show') }
var mail = data['mail'];
if(mail == 0) { mail = ''; $('#mail-update-li').removeClass('show') } else { $('#mail-update-li').addClass('show') }
$('#mail-update-li').html(mail);
var allevents = $(data).find('all-events').text();
if(allevents == 0) { allevents = ''; $('#allevents-update').removeClass('show') } else { $('#allevents-update').addClass('show') }
$('#allevents-update').html(allevents);
var alleventstoday = $(data).find('all-events-today').text();
if(alleventstoday == 0) { $('#allevents-update').removeClass('notif-allevents-today') } else { $('#allevents-update').addClass('notif-allevents-today') }
var events = $(data).find('events').text();
if(events == 0) { events = ''; $('#events-update').removeClass('show') } else { $('#events-update').addClass('show') }
$('#events-update').html(events);
var eventstoday = $(data).find('events-today').text();
if(eventstoday == 0) { $('#events-update').removeClass('notif-events-today') } else { $('#events-update').addClass('notif-events-today') }
var birthdays = $(data).find('birthdays').text();
if(birthdays == 0) {birthdays = ''; $('#birthdays-update').removeClass('show') } else { $('#birthdays-update').addClass('show') }
$('#birthdays-update').html(birthdays);
var birthdaystoday = $(data).find('birthdays-today').text();
if(birthdaystoday == 0) { $('#birthdays-update').removeClass('notif-birthdays-today') } else { $('#birthdays-update').addClass('notif-birthdays-today') }
$(".sidebar-group-li .notify").removeClass("show");
$(data).find("group").each(function() {
var gid = this.id;
var gcount = this.innerHTML;
$(data.groups).each(function(key, group) {
var gid = group.id;
var gcount = group.count;
$(".group-"+gid+" .notify").addClass("show").text(gcount);
});
$(".forum-widget-entry .notify").removeClass("show");
$(data).find("forum").each(function() {
var fid = this.id;
var fcount = this.innerHTML;
$(data.forums).each(function(key, forum) {
var fid = forum.id;
var fcount = forum.count;
$(".forum-"+fid+" .notify").addClass("show").text(fcount);
});
var eNotif = $(data).find('notif')
if (eNotif.children("note").length==0){
if (data.notifications.length == 0) {
$("#nav-notifications-menu").html(notifications_empty);
} else {
nnm = $("#nav-notifications-menu");
var nnm = $("#nav-notifications-menu");
nnm.html(notifications_all + notifications_mark);
//nnm.attr('popup','true');
var notification_lastitem = parseInt(localStorage.getItem("notification-lastitem"));
var notification_id = 0;
eNotif.children("note").each(function(){
e = $(this);
var text = e.text().format("<span class='contactname'>"+e.attr('name')+"</span>");
var contact = ("<a href="+e.attr('url')+"><span class='contactname'>"+e.attr('name')+"</span></a>");
var seenclass = (e.attr('seen')==1)?"notify-seen":"notify-unseen";
$(data.notifications).each(function(key, notif){
var text = notif.message.format('<span class="contactname">' + notif.name + '</span>');
var contact = ('<a href="' + notif.url + '"><span class="contactname">' + notif.name + '</span></a>');
var seenclass = (notif.seen == 1) ? "notify-seen" : "notify-unseen";
var html = notifications_tpl.format(
e.attr('href'), // {0} // link to the source
e.attr('photo'), // {1} // photo of the contact
text, // {2} // preformatted text (autor + text)
e.attr('date'), // {3} // date of notification (time ago)
seenclass, // {4} // visited status of the notification
new Date(e.attr('timestamp')*1000), // {5} // date of notification
e.attr('url'), // {6} // profile url of the contact
e.text().format(contact), // {7} // preformatted html (text including author profile url)
'' // {8} // Deprecated
notif.href, // {0} // link to the source
notif.photo, // {1} // photo of the contact
text, // {2} // preformatted text (autor + text)
notif.date, // {3} // date of notification (time ago)
seenclass, // {4} // visited status of the notification
new Date(notif.timestamp*1000), // {5} // date of notification
notif.url, // {6} // profile url of the contact
notif.message.format(contact), // {7} // preformatted html (text including author profile url)
'' // {8} // Deprecated
);
nnm.append(html);
});
$(eNotif.children("note").get().reverse()).each(function(){
e = $(this);
notification_id = parseInt(e.attr('timestamp'));
if (notification_lastitem!== null && notification_id > notification_lastitem) {
if (getNotificationPermission()==="granted") {
$(data.notifications.reverse()).each(function(key, e){
notification_id = parseInt(e.timestamp);
if (notification_lastitem !== null && notification_id > notification_lastitem) {
if (getNotificationPermission() === "granted") {
var notification = new Notification(document.title, {
body: decodeHtml(e.text().replace('&rarr; ','').format(e.attr('name'))),
icon: e.attr('photo'),
body: decodeHtml(e.message.replace('&rarr; ', '').format(e.name)),
icon: e.photo,
});
notification['url'] = e.attr('href');
notification['url'] = e.href;
notification.addEventListener("click", function(ev){
window.location = ev.target.url;
});
@ -303,23 +268,18 @@
});
}
notif = eNotif.attr('count');
if (notif>0){
var notif = data['notify'];
if (notif > 0){
$("#nav-notifications-linkmenu").addClass("on");
} else {
$("#nav-notifications-linkmenu").removeClass("on");
}
if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') }
$('#notify-update').html(notif);
var eSysmsg = $(data).find('sysmsgs');
eSysmsg.children("notice").each(function(){
text = $(this).text();
$.jGrowl(text, { sticky: true, theme: 'notice' });
$(data.sysmsgs.notice).each(function(key, message){
$.jGrowl(message, {sticky: true, theme: 'notice'});
});
eSysmsg.children("info").each(function(){
text = $(this).text();
$.jGrowl(text, { sticky: false, theme: 'info', life: 5000 });
$(data.sysmsgs.info).each(function(key, message){
$.jGrowl(message, {sticky: false, theme: 'info', life: 5000});
});
/* update the js scrollbars */
@ -374,50 +334,38 @@
function NavUpdate() {
if(! stopped) {
var pingCmd = 'ping' + ((localUser != 0) ? '?f=&uid=' + localUser : '');
$.get(pingCmd,function(data) {
$(data).find('result').each(function() {
if (!stopped) {
var pingCmd = 'ping?format=json' + ((localUser != 0) ? '&f=&uid=' + localUser : '');
$.get(pingCmd, function(data) {
if (data.result) {
// send nav-update event
$('nav').trigger('nav-update', this);
$('nav').trigger('nav-update', data.result);
// start live update
if($('#live-network').length) { src = 'network'; liveUpdate(); }
if($('#live-profile').length) { src = 'profile'; liveUpdate(); }
if($('#live-community').length) { src = 'community'; liveUpdate(); }
if($('#live-notes').length) { src = 'notes'; liveUpdate(); }
if($('#live-display').length) { src = 'display'; liveUpdate(); }
/* if($('#live-display').length) {
if(liking) {
liking = 0;
window.location.href=window.location.href
['network', 'profile', 'community', 'notes', 'display'].forEach(function (src) {
if ($('#live-' + src).length) {
liveUpdate(src);
}
}*/
if($('#live-photos').length) {
if(liking) {
});
if ($('#live-photos').length) {
if (liking) {
liking = 0;
window.location.href=window.location.href
window.location.href = window.location.href;
}
}
});
}
}) ;
}
timer = setTimeout(NavUpdate,updateInterval);
timer = setTimeout(NavUpdate, updateInterval);
}
function liveUpdate() {
function liveUpdate(src) {
if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').hide(); return; }
if(($('.comment-edit-text-full').length) || (in_progress)) {
if(livetime) {
clearTimeout(livetime);
}
livetime = setTimeout(liveUpdate, 5000);
livetime = setTimeout(function() {liveUpdate(src)}, 5000);
return;
}
if(livetime != null)
@ -740,8 +688,6 @@
// page number
infinite_scroll.pageno+=1;
console.log('Loading page ' + infinite_scroll.pageno);
// get the raw content from the next page and insert this content
// right before "#conversation-end"
$.get('network?mode=raw' + infinite_scroll.reload_uri + '&page=' + infinite_scroll.pageno, function(data) {

View file

@ -428,6 +428,21 @@ function admin_page_queue(&$a) {
* @return string
*/
function admin_page_summary(&$a) {
global $db;
// are there MyISAM tables in the DB? If so, trigger a warning message
$r = q("SELECT `engine` FROM `information_schema`.`tables` WHERE `engine` = 'myisam' AND `table_schema` = '%s' LIMIT 1",
dbesc($db->database_name()));
$showwarning = false;
$warningtext = array();
if (dbm::is_result($r)) {
$showwarning = true;
$warningtext[] = sprintf(t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href="%s">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />'), 'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html');
}
// MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
if ((version_compare($db->server_info(), '5.7.4') >= 0) AND
!(strpos($db->server_info(), 'MariaDB') !== false)) {
$warningtext[] = t('You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB.');
}
$r = q("SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`");
$accounts = array(
array(t('Normal Account'), 0),
@ -478,7 +493,9 @@ function admin_page_summary(&$a) {
'$platform' => FRIENDICA_PLATFORM,
'$codename' => FRIENDICA_CODENAME,
'$build' => get_config('system','build'),
'$plugins' => array(t('Active plugins'), $a->plugins)
'$plugins' => array(t('Active plugins'), $a->plugins),
'$showwarning' => $showwarning,
'$warningtext' => $warningtext
));
}
@ -652,6 +669,7 @@ function admin_page_site_post(&$a) {
$worker_queues = ((x($_POST,'worker_queues')) ? intval($_POST['worker_queues']) : 4);
$worker_dont_fork = ((x($_POST,'worker_dont_fork')) ? True : False);
$worker_fastlane = ((x($_POST,'worker_fastlane')) ? True : False);
$worker_frontend = ((x($_POST,'worker_frontend')) ? True : False);
if($a->get_path() != "")
$diaspora_enabled = false;
@ -802,6 +820,7 @@ function admin_page_site_post(&$a) {
set_config('system','worker_queues', $worker_queues);
set_config('system','worker_dont_fork', $worker_dont_fork);
set_config('system','worker_fastlane', $worker_fastlane);
set_config('system','frontend_worker', $worker_frontend);
if($rino==2 and !function_exists('mcrypt_create_iv')) {
notice(t("RINO2 needs mcrypt php extension to work."));
@ -1033,6 +1052,7 @@ function admin_page_site(&$a) {
'$worker_queues' => array('worker_queues', t("Maximum number of parallel workers"), get_config('system','worker_queues'), t("On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4.")),
'$worker_dont_fork' => array('worker_dont_fork', t("Don't use 'proc_open' with the worker"), get_config('system','worker_dont_fork'), t("Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab.")),
'$worker_fastlane' => array('worker_fastlane', t("Enable fastlane"), get_config('system','worker_fastlane'), t("When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.")),
'$worker_frontend' => array('worker_frontend', t('Enable frontend worker'), get_config('system','frontend_worker'), t('When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this.')),
'$form_security_token' => get_form_security_token("admin_site")
@ -1388,6 +1408,7 @@ function admin_page_users(&$a){
'$h_deleted' => t('User waiting for permanent deletion'),
'$th_pending' => array(t('Request date'), t('Name'), t('Email')),
'$no_pending' => t('No registrations.'),
'$pendingnotetext' => t('Note from the user'),
'$approve' => t('Approve'),
'$deny' => t('Deny'),
'$delete' => t('Delete'),

View file

@ -1,17 +1,21 @@
<?php
/*
* Module: dfrn_confirm
/**
* @file mod/dfrn_confirm.php
* @brief Module: dfrn_confirm
* Purpose: Friendship acceptance for DFRN contacts
*
*.
* There are two possible entry points and three scenarios.
*
*.
* 1. A form was submitted by our user approving a friendship that originated elsewhere.
* This may also be called from dfrn_request to automatically approve a friendship.
*
* 2. We may be the target or other side of the conversation to scenario 1, and will
* interact with that process on our own user's behalf.
*
*.
* @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
* You also find a graphic which describes the confirmation process at
* https://github.com/friendica/friendica/blob/master/spec/dfrn2_contact_confirmation.png
*/
require_once('include/enotify.php');
@ -22,7 +26,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
if(is_array($handsfree)) {
/**
/*
* We were called directly from dfrn_request due to automatic friend acceptance.
* Any $_POST parameters we may require are supplied in the $handsfree array.
*
@ -37,7 +41,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$node = $a->argv[1];
}
/**
/*
*
* Main entry point. Scenario 1. Our user received a friend request notification (perhaps
* from another site) and clicked 'Approve'.
@ -87,7 +91,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$activity = ((x($_POST,'activity')) ? intval($_POST['activity']) : 0 );
}
/**
/*
*
* Ensure that dfrn_id has precedence when we go to find the contact record.
* We only want to search based on contact id if there is no dfrn_id,
@ -103,7 +107,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
logger('Confirming follower with contact_id: ' . $cid);
/**
/*
*
* The other person will have been issued an ID when they first requested friendship.
* Locate their record. At this time, their record will have both pending and blocked set to 1.
@ -139,7 +143,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
if($network === NETWORK_DFRN) {
/**
/*
*
* Generate a key pair for all further communications with this person.
* We have a keypair for every contact, and a site key for unknown people.
@ -166,7 +170,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$params = array();
/**
/*
*
* Per the DFRN protocol, we will verify both ends by encrypting the dfrn_id with our
* site private key (person on the other end can decrypt it with our site public key).
@ -212,7 +216,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
logger('Confirm: posting data to ' . $dfrn_confirm . ': ' . print_r($params,true), LOGGER_DATA);
/**
/*
*
* POST all this stuff to the other site.
* Temporarily raise the network timeout to 120 seconds because the default 60
@ -506,7 +510,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
//NOTREACHED
}
/**
/*
*
*
* End of Scenario 1. [Local confirmation of remote friend request].

View file

@ -1,5 +1,10 @@
<?php
/**
* @file mod/dfrn_notify.php
* @brief The dfrn notify endpoint
* @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
*/
require_once('include/items.php');
require_once('include/dfrn.php');
require_once('include/event.php');
@ -7,7 +12,7 @@ require_once('include/event.php');
require_once('library/defuse/php-encryption-1.2.1/Crypto.php');
function dfrn_notify_post(&$a) {
logger(__function__, LOGGER_TRACE);
logger(__function__, LOGGER_TRACE);
$dfrn_id = ((x($_POST,'dfrn_id')) ? notags(trim($_POST['dfrn_id'])) : '');
$dfrn_version = ((x($_POST,'dfrn_version')) ? (float) $_POST['dfrn_version'] : 2.0);
$challenge = ((x($_POST,'challenge')) ? notags(trim($_POST['challenge'])) : '');
@ -117,7 +122,7 @@ function dfrn_notify_post(&$a) {
if($dissolve == 1) {
/**
/*
* Relationship is dissolved permanently
*/

View file

@ -1,12 +1,15 @@
<?php
/**
*
* Module: dfrn_request
* @file mod/dfrn_request.php
* @brief Module: dfrn_request
*
* Purpose: Handles communication associated with the issuance of
* friend requests.
*
* @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
* You also find a graphic which describes the confirmation process at
* https://github.com/friendica/friendica/blob/master/spec/dfrn2_contact_request.png
*/
require_once('include/enotify.php');
@ -14,7 +17,6 @@ require_once('include/Scrape.php');
require_once('include/Probe.php');
require_once('include/group.php');
if(! function_exists('dfrn_request_init')) {
function dfrn_request_init(&$a) {
if($a->argc > 1)
@ -22,7 +24,7 @@ function dfrn_request_init(&$a) {
profile_load($a,$which);
return;
}}
}
/**
@ -40,8 +42,6 @@ function dfrn_request_init(&$a) {
* After logging in, we click 'submit' to approve the linkage.
*
*/
if(! function_exists('dfrn_request_post')) {
function dfrn_request_post(&$a) {
if(($a->argc != 2) || (! count($a->profile))) {
@ -55,7 +55,7 @@ function dfrn_request_post(&$a) {
}
/**
/*
*
* Scenario 2: We've introduced ourself to another cell, then have been returned to our own cell
* to confirm the request, and then we've clicked submit (perhaps after logging in).
@ -65,7 +65,7 @@ function dfrn_request_post(&$a) {
if((x($_POST,'localconfirm')) && ($_POST['localconfirm'] == 1)) {
/**
/*
* Ensure this is a valid request
*/
@ -77,23 +77,24 @@ function dfrn_request_post(&$a) {
$confirm_key = ((x($_POST,'confirm_key')) ? $_POST['confirm_key'] : "");
$hidden = ((x($_POST,'hidden-contact')) ? intval($_POST['hidden-contact']) : 0);
$contact_record = null;
$blocked = 1;
$pending = 1;
if(x($dfrn_url)) {
/**
/*
* Lookup the contact based on their URL (which is the only unique thing we have at the moment)
*/
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND (`url` = '%s' OR `nurl` = '%s') AND `self` = 0 LIMIT 1",
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND NOT `self` LIMIT 1",
intval(local_user()),
dbesc($dfrn_url),
dbesc(normalise_link($dfrn_url))
);
if(count($r)) {
if(strlen($r[0]['dfrn-id'])) {
/**
/*
* We don't need to be here. It has already happened.
*/
@ -113,7 +114,7 @@ function dfrn_request_post(&$a) {
}
else {
/**
/*
* Scrape the other site's profile page to pick up the dfrn links, key, fn, and photo
*/
@ -141,19 +142,18 @@ function dfrn_request_post(&$a) {
$photo = $parms["photo"];
/********* Escape the entire array ********/
// Escape the entire array
dbesc_array($parms);
/******************************************/
/**
/*
* Create a contact record on our site for the other person
*/
$r = q("INSERT INTO `contact` ( `uid`, `created`,`url`, `nurl`, `addr`, `name`, `nick`, `photo`, `site-pubkey`,
`request`, `confirm`, `notify`, `poll`, `poco`, `network`, `aes_allow`, `hidden`)
VALUES ( %d, '%s', '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d)",
`request`, `confirm`, `notify`, `poll`, `poco`, `network`, `aes_allow`, `hidden`, `blocked`, `pending`)
VALUES ( %d, '%s', '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d)",
intval(local_user()),
datetime_convert(),
dbesc($dfrn_url),
@ -170,7 +170,9 @@ function dfrn_request_post(&$a) {
$parms['dfrn-poco'],
dbesc(NETWORK_DFRN),
intval($aes_allow),
intval($hidden)
intval($hidden),
intval($blocked),
intval($pending)
);
}
@ -195,7 +197,7 @@ function dfrn_request_post(&$a) {
} else
$forwardurl = $a->get_baseurl()."/contacts";
/**
/*
* Allow the blocked remote notification to complete
*/
@ -222,7 +224,7 @@ function dfrn_request_post(&$a) {
return; // NOTREACHED
}
/**
/*
* Otherwise:
*
* Scenario 1:
@ -256,11 +258,13 @@ function dfrn_request_post(&$a) {
$contact_record = null;
$failed = false;
$parms = null;
$blocked = 1;
$pending = 1;
if( x($_POST,'dfrn_url')) {
/**
/*
* Block friend request spam
*/
@ -277,7 +281,7 @@ function dfrn_request_post(&$a) {
}
}
/**
/*
*
* Cleanup old introductions that remain blocked.
* Also remove the contact record, but only if there is no existing relationship
@ -304,7 +308,7 @@ function dfrn_request_post(&$a) {
}
}
/**
/*
*
* Cleanup any old email intros - which will have a greater lifetime
*/
@ -354,8 +358,6 @@ function dfrn_request_post(&$a) {
$nurl = normalise_url($host);
$poll = 'email ' . random_string();
$notify = 'smtp ' . random_string();
$blocked = 1;
$pending = 1;
$network = NETWORK_MAIL2;
$rel = CONTACT_IS_FOLLOWER;
@ -540,8 +542,8 @@ function dfrn_request_post(&$a) {
dbesc_array($parms);
$r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `name`, `nick`, `issued-id`, `photo`, `site-pubkey`,
`request`, `confirm`, `notify`, `poll`, `poco`, `network` )
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
`request`, `confirm`, `notify`, `poll`, `poco`, `network`, `blocked`, `pending` )
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d )",
intval($uid),
dbesc(datetime_convert()),
$parms['url'],
@ -557,7 +559,9 @@ function dfrn_request_post(&$a) {
$parms['dfrn-notify'],
$parms['dfrn-poll'],
$parms['dfrn-poco'],
dbesc(NETWORK_DFRN)
dbesc(NETWORK_DFRN),
intval($blocked),
intval($pending)
);
// find the contact record we just created
@ -613,7 +617,7 @@ function dfrn_request_post(&$a) {
// END $network === NETWORK_DFRN
} elseif (($network != NETWORK_PHANTOM) AND ($url != "")) {
/**
/*
*
* Substitute our user's feed URL into $url template
* Send the subscriber home to subscribe
@ -642,12 +646,9 @@ function dfrn_request_post(&$a) {
}
} return;
}}
}
if(! function_exists('dfrn_request_content')) {
function dfrn_request_content(&$a) {
if(($a->argc != 2) || (! count($a->profile)))
@ -781,7 +782,7 @@ function dfrn_request_content(&$a) {
}
else {
/**
/*
* Normal web request. Display our user's introduction form.
*/
@ -793,7 +794,7 @@ function dfrn_request_content(&$a) {
}
/**
/*
* Try to auto-fill the profile address
*/
@ -816,7 +817,7 @@ function dfrn_request_content(&$a) {
$target_addr = $a->profile['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
/**
/*
*
* The auto_request form only has the profile address
* because nobody is going to read the comments and
@ -881,4 +882,4 @@ function dfrn_request_content(&$a) {
}
return; // Somebody is fishing.
}}
}

View file

@ -173,7 +173,8 @@ function item_post(&$a) {
$profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0);
$post_id = ((x($_REQUEST,'post_id')) ? intval($_REQUEST['post_id']) : 0);
$app = ((x($_REQUEST,'source')) ? strip_tags($_REQUEST['source']) : '');
$extid = ((x($_REQUEST,'extid')) ? strip_tags($_REQUEST['extid']) : '');
$extid = ((x($_REQUEST,'extid')) ? strip_tags($_REQUEST['extid']) : '');
$object = ((x($_REQUEST,'object')) ? $_REQUEST['object'] : '');
// Check for multiple posts with the same message id (when the post was created via API)
if (($message_id != '') AND ($profile_uid != 0)) {
@ -718,6 +719,7 @@ function item_post(&$a) {
$datarray['moderated'] = $allow_moderated;
$datarray['gcontact-id'] = get_gcontact_id(array("url" => $datarray['author-link'], "network" => $datarray['network'],
"photo" => $datarray['author-avatar'], "name" => $datarray['author-name']));
$datarray['object'] = $object;
/**
* These fields are for the convenience of plugins...
@ -744,6 +746,9 @@ function item_post(&$a) {
if($preview) {
require_once('include/conversation.php');
// We set the datarray ID to -1 because in preview mode the dataray
// doesn't have an ID.
$datarray["id"] = -1;
$o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false, true);
logger('preview: ' . $o);
echo json_encode(array('preview' => $o));
@ -812,7 +817,7 @@ function item_post(&$a) {
`tag`, `inform`, `verb`, `object-type`, `postopts`,
`allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`,
`pubmail`, `attach`, `bookmark`,`origin`, `moderated`, `file`,
`rendered-html`, `rendered-hash`,
`rendered-html`, `rendered-hash`, `gcontact-id`, `object`,
`parent`, `parent-uri`, `plink`, `last-child`, `visible`)
VALUES('%s', '%s', %d, '%s', %d, %d, '%s', %d,
'%s', '%s', '%s', %d,
@ -822,7 +827,7 @@ function item_post(&$a) {
'%s', '%s', '%s', '%s', '%s',
'%s', '%s', '%s', '%s', %d,
%d, '%s', %d, %d, %d, '%s',
'%s', '%s',
'%s', '%s', %d, '%s',
%d, '%s', '%s', %d, %d)",
dbesc($datarray['guid']),
dbesc($datarray['extid']),
@ -870,6 +875,8 @@ function item_post(&$a) {
dbesc($datarray['file']),
dbesc($datarray['rendered-html']),
dbesc($datarray['rendered-hash']),
intval($datarray['gcontact-id']),
dbesc($datarray['object']),
intval($datarray['parent']),
dbesc($datarray['parent-uri']),
dbesc($datarray['plink']),

View file

@ -395,10 +395,10 @@ function network_content(&$a, $update = 0) {
if($group) {
if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
'Warning: This group contains %s members from an insecure network.',
$t), $t ) . EOL);
notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
notice(sprintf(tt("Warning: This group contains %s member from a network that doesn't allow non public messages.",
"Warning: This group contains %s members from a network that doesn't allow non public messages.",
$t), $t).EOL);
notice(t("Messages in this group won't be send to these receivers.").EOL);
}
}
@ -453,6 +453,7 @@ function network_content(&$a, $update = 0) {
if ($nouveau OR strlen($file) OR $update) {
$sql_table = "`item`";
$sql_parent = "`parent`";
$sql_post_table = " INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`";
}
$sql_nets = (($nets) ? sprintf(" and $sql_table.`network` = '%s' ", dbesc($nets)) : '');
@ -487,9 +488,9 @@ function network_content(&$a, $update = 0) {
$gcontact_str_self = $self[0]["gid"];
}
$sql_post_table = " INNER JOIN `item` AS `temp1` ON `temp1`.`id` = ".$sql_table.".".$sql_parent;
$sql_extra3 .= " AND ($sql_table.`contact-id` IN ($contact_str) ";
$sql_extra3 .= " OR ($sql_table.`contact-id` = '$contact_str_self' AND `temp1`.`allow_gid` LIKE '".protect_sprintf('%<'.intval($group).'>%')."' AND `temp1`.`private`))";
$sql_post_table .= " INNER JOIN `item` AS `temp1` ON `temp1`.`id` = ".$sql_table.".".$sql_parent;
$sql_extra3 .= " AND (`thread`.`contact-id` IN ($contact_str) ";
$sql_extra3 .= " OR (`thread`.`contact-id` = '$contact_str_self' AND `temp1`.`allow_gid` LIKE '".protect_sprintf('%<'.intval($group).'>%')."' AND `temp1`.`private`))";
} else {
$sql_extra3 .= " AND false ";
info( t('Group is empty'));
@ -503,7 +504,7 @@ function network_content(&$a, $update = 0) {
elseif($cid) {
$r = qu("SELECT `id`,`name`,`network`,`writable`,`nurl`, `forum`, `prv`, `contact-type`, `addr`, `thumb`, `location` FROM `contact` WHERE `id` = %d
AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
AND (NOT `blocked` OR `pending`) LIMIT 1",
intval($cid)
);
if(count($r)) {
@ -569,7 +570,7 @@ function network_content(&$a, $update = 0) {
if($tag) {
$sql_extra = "";
$sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
$sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval(local_user()));
$sql_order = "`item`.`id`";
$order_mode = "id";
@ -583,7 +584,7 @@ function network_content(&$a, $update = 0) {
}
}
if(strlen($file)) {
$sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
$sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
dbesc(protect_sprintf($file)), intval(TERM_OBJ_POST), intval(TERM_FILE), intval(local_user()));
$sql_order = "`item`.`id`";
$order_mode = "id";
@ -601,7 +602,7 @@ function network_content(&$a, $update = 0) {
if(get_config('system', 'old_pager')) {
$r = qu("SELECT COUNT(*) AS `total`
FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = $sql_table.`contact-id`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE $sql_table.`uid` = %d AND $sql_table.`visible` AND NOT $sql_table.`deleted`
$sql_extra2 $sql_extra3
$sql_extra $sql_nets ",
@ -679,7 +680,7 @@ function network_content(&$a, $update = 0) {
$r = qu("SELECT `item`.`parent` AS `item_id`, `item`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted` $sql_extra4
AND NOT `item`.`moderated` AND `item`.`unseen`
$sql_extra3 $sql_extra $sql_nets
@ -689,7 +690,7 @@ function network_content(&$a, $update = 0) {
} else {
$r = qu("SELECT `thread`.`iid` AS `item_id`, `thread`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
FROM $sql_table $sql_post_table STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
AND (NOT `contact`.`blocked` OR `contact`.`pending`)
WHERE `thread`.`uid` = %d AND `thread`.`visible` AND NOT `thread`.`deleted`
AND NOT `thread`.`moderated`
$sql_extra2 $sql_extra3 $sql_extra $sql_nets

View file

@ -1,516 +1,176 @@
<?php
/**
* @file mod/parse_url.php
* @brief The parse_url module
*
* @todo https://developers.google.com/+/plugins/snippet/
* This module does parse an url for embedable content (audio, video, image files or link)
* information and does format this information to BBCode or html (this depends
* on the user settings - default is BBCode output).
* If the user has enabled the richtext editor setting the output will be in html
* (Note: This is not always possible and in some case not useful because
* the richtext editor doesn't support all kind of html).
* Otherwise the output will be constructed BBCode.
*
* @verbatim
* <meta itemprop="name" content="Toller Titel">
* <meta itemprop="description" content="Eine tolle Beschreibung">
* <meta itemprop="image" content="http://maple.libertreeproject.org/images/tree-icon.png">
*
* <body itemscope itemtype="http://schema.org/Product">
* <h1 itemprop="name">Shiny Trinket</h1>
* <img itemprop="image" src="{image-url}" />
* <p itemprop="description">Shiny trinkets are shiny.</p>
* </body>
* @endverbatim
* @see ParseUrl::getSiteinfo() for more information about scraping embeddable content
*/
if(!function_exists('deletenode')) {
function deletenode(&$doc, $node)
{
$xpath = new DomXPath($doc);
$list = $xpath->query("//".$node);
foreach ($list as $child)
$child->parentNode->removeChild($child);
}
}
use \Friendica\ParseUrl;
function completeurl($url, $scheme) {
$urlarr = parse_url($url);
if (isset($urlarr["scheme"]))
return($url);
$schemearr = parse_url($scheme);
$complete = $schemearr["scheme"]."://".$schemearr["host"];
if (@$schemearr["port"] != "")
$complete .= ":".$schemearr["port"];
if(strpos($urlarr['path'],'/') !== 0)
$complete .= '/';
$complete .= $urlarr["path"];
if (@$urlarr["query"] != "")
$complete .= "?".$urlarr["query"];
if (@$urlarr["fragment"] != "")
$complete .= "#".$urlarr["fragment"];
return($complete);
}
function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = true) {
if ($url == "")
return false;
$r = q("SELECT * FROM `parsed_url` WHERE `url` = '%s' AND `guessing` = %d AND `oembed` = %d",
dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed));
if ($r)
$data = $r[0]["content"];
if (!is_null($data)) {
$data = unserialize($data);
return $data;
}
$data = parseurl_getsiteinfo($url, $no_guessing, $do_oembed);
q("INSERT INTO `parsed_url` (`url`, `guessing`, `oembed`, `content`, `created`) VALUES ('%s', %d, %d, '%s', '%s')
ON DUPLICATE KEY UPDATE `content` = '%s', `created` = '%s'",
dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed),
dbesc(serialize($data)), dbesc(datetime_convert()),
dbesc(serialize($data)), dbesc(datetime_convert()));
return $data;
}
function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1) {
require_once("include/network.php");
require_once("include/Photo.php");
$a = get_app();
$siteinfo = array();
// Check if the URL does contain a scheme
$scheme = parse_url($url, PHP_URL_SCHEME);
if ($scheme == "") {
$url = "http://".trim($url, "/");
}
if ($count > 10) {
logger("parseurl_getsiteinfo: Endless loop detected for ".$url, LOGGER_DEBUG);
return($siteinfo);
}
$url = trim($url, "'");
$url = trim($url, '"');
$url = original_url($url);
$siteinfo["url"] = $url;
$siteinfo["type"] = "link";
$check_cert = get_config('system','verifyssl');
$stamp1 = microtime(true);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
$header = curl_exec($ch);
$curl_info = @curl_getinfo($ch);
$http_code = $curl_info['http_code'];
curl_close($ch);
$a->save_timestamp($stamp1, "network");
if ((($curl_info['http_code'] == "301") OR ($curl_info['http_code'] == "302") OR ($curl_info['http_code'] == "303") OR ($curl_info['http_code'] == "307"))
AND (($curl_info['redirect_url'] != "") OR ($curl_info['location'] != ""))) {
if ($curl_info['redirect_url'] != "")
$siteinfo = parseurl_getsiteinfo($curl_info['redirect_url'], $no_guessing, $do_oembed, ++$count);
else
$siteinfo = parseurl_getsiteinfo($curl_info['location'], $no_guessing, $do_oembed, ++$count);
return($siteinfo);
}
// if the file is too large then exit
if ($curl_info["download_content_length"] > 1000000)
return($siteinfo);
// if it isn't a HTML file then exit
if (($curl_info["content_type"] != "") AND !strstr(strtolower($curl_info["content_type"]),"html"))
return($siteinfo);
if ($do_oembed) {
require_once("include/oembed.php");
$oembed_data = oembed_fetch_url($url);
if (!in_array($oembed_data->type, array("error", "rich"))) {
$siteinfo["type"] = $oembed_data->type;
}
if (($oembed_data->type == "link") AND ($siteinfo["type"] != "photo")) {
if (isset($oembed_data->title))
$siteinfo["title"] = $oembed_data->title;
if (isset($oembed_data->description))
$siteinfo["text"] = trim($oembed_data->description);
if (isset($oembed_data->thumbnail_url))
$siteinfo["image"] = $oembed_data->thumbnail_url;
}
}
$stamp1 = microtime(true);
// Now fetch the body as well
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
$header = curl_exec($ch);
$curl_info = @curl_getinfo($ch);
$http_code = $curl_info['http_code'];
curl_close($ch);
$a->save_timestamp($stamp1, "network");
// Fetch the first mentioned charset. Can be in body or header
$charset = "";
if (preg_match('/charset=(.*?)['."'".'"\s\n]/', $header, $matches))
$charset = trim(trim(trim(array_pop($matches)), ';,'));
if ($charset == "")
$charset = "utf-8";
$pos = strpos($header, "\r\n\r\n");
if ($pos)
$body = trim(substr($header, $pos));
else
$body = $header;
if (($charset != '') AND (strtoupper($charset) != "UTF-8")) {
logger("parseurl_getsiteinfo: detected charset ".$charset, LOGGER_DEBUG);
//$body = mb_convert_encoding($body, "UTF-8", $charset);
$body = iconv($charset, "UTF-8//TRANSLIT", $body);
}
$body = mb_convert_encoding($body, 'HTML-ENTITIES', "UTF-8");
$doc = new DOMDocument();
@$doc->loadHTML($body);
deletenode($doc, 'style');
deletenode($doc, 'script');
deletenode($doc, 'option');
deletenode($doc, 'h1');
deletenode($doc, 'h2');
deletenode($doc, 'h3');
deletenode($doc, 'h4');
deletenode($doc, 'h5');
deletenode($doc, 'h6');
deletenode($doc, 'ol');
deletenode($doc, 'ul');
$xpath = new DomXPath($doc);
$list = $xpath->query("//meta[@content]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length)
foreach ($node->attributes as $attribute)
$attr[$attribute->name] = $attribute->value;
if (@$attr["http-equiv"] == 'refresh') {
$path = $attr["content"];
$pathinfo = explode(";", $path);
$content = "";
foreach ($pathinfo AS $value) {
if (substr(strtolower($value), 0, 4) == "url=")
$content = substr($value, 4);
}
if ($content != "") {
$siteinfo = parseurl_getsiteinfo($content, $no_guessing, $do_oembed, ++$count);
return($siteinfo);
}
}
}
$list = $xpath->query("//title");
if ($list->length > 0)
$siteinfo["title"] = $list->item(0)->nodeValue;
//$list = $xpath->query("head/meta[@name]");
$list = $xpath->query("//meta[@name]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length)
foreach ($node->attributes as $attribute)
$attr[$attribute->name] = $attribute->value;
$attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
if ($attr["content"] != "")
switch (strtolower($attr["name"])) {
case "fulltitle":
$siteinfo["title"] = $attr["content"];
break;
case "description":
$siteinfo["text"] = $attr["content"];
break;
case "thumbnail":
$siteinfo["image"] = $attr["content"];
break;
case "twitter:image":
$siteinfo["image"] = $attr["content"];
break;
case "twitter:image:src":
$siteinfo["image"] = $attr["content"];
break;
case "twitter:card":
if (($siteinfo["type"] == "") OR ($attr["content"] == "photo"))
$siteinfo["type"] = $attr["content"];
break;
case "twitter:description":
$siteinfo["text"] = $attr["content"];
break;
case "twitter:title":
$siteinfo["title"] = $attr["content"];
break;
case "dc.title":
$siteinfo["title"] = $attr["content"];
break;
case "dc.description":
$siteinfo["text"] = $attr["content"];
break;
case "keywords":
$keywords = explode(",", $attr["content"]);
break;
case "news_keywords":
$keywords = explode(",", $attr["content"]);
break;
}
if ($siteinfo["type"] == "summary")
$siteinfo["type"] = "link";
}
if (isset($keywords)) {
$siteinfo["keywords"] = array();
foreach ($keywords as $keyword)
if (!in_array(trim($keyword), $siteinfo["keywords"]))
$siteinfo["keywords"][] = trim($keyword);
}
//$list = $xpath->query("head/meta[@property]");
$list = $xpath->query("//meta[@property]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length)
foreach ($node->attributes as $attribute)
$attr[$attribute->name] = $attribute->value;
$attr["content"] = trim(html_entity_decode($attr["content"], ENT_QUOTES, "UTF-8"));
if ($attr["content"] != "")
switch (strtolower($attr["property"])) {
case "og:image":
$siteinfo["image"] = $attr["content"];
break;
case "og:title":
$siteinfo["title"] = $attr["content"];
break;
case "og:description":
$siteinfo["text"] = $attr["content"];
break;
}
}
if ((@$siteinfo["image"] == "") AND !$no_guessing) {
$list = $xpath->query("//img[@src]");
foreach ($list as $node) {
$attr = array();
if ($node->attributes->length)
foreach ($node->attributes as $attribute)
$attr[$attribute->name] = $attribute->value;
$src = completeurl($attr["src"], $url);
$photodata = get_photo_info($src);
if (($photodata) && ($photodata[0] > 150) and ($photodata[1] > 150)) {
if ($photodata[0] > 300) {
$photodata[1] = round($photodata[1] * (300 / $photodata[0]));
$photodata[0] = 300;
}
if ($photodata[1] > 300) {
$photodata[0] = round($photodata[0] * (300 / $photodata[1]));
$photodata[1] = 300;
}
$siteinfo["images"][] = array("src"=>$src,
"width"=>$photodata[0],
"height"=>$photodata[1]);
}
}
} elseif ($siteinfo["image"] != "") {
$src = completeurl($siteinfo["image"], $url);
unset($siteinfo["image"]);
$photodata = get_photo_info($src);
if (($photodata) && ($photodata[0] > 10) and ($photodata[1] > 10))
$siteinfo["images"][] = array("src"=>$src,
"width"=>$photodata[0],
"height"=>$photodata[1]);
}
if ((@$siteinfo["text"] == "") AND (@$siteinfo["title"] != "") AND !$no_guessing) {
$text = "";
$list = $xpath->query("//div[@class='article']");
foreach ($list as $node)
if (strlen($node->nodeValue) > 40)
$text .= " ".trim($node->nodeValue);
if ($text == "") {
$list = $xpath->query("//div[@class='content']");
foreach ($list as $node)
if (strlen($node->nodeValue) > 40)
$text .= " ".trim($node->nodeValue);
}
// If none text was found then take the paragraph content
if ($text == "") {
$list = $xpath->query("//p");
foreach ($list as $node)
if (strlen($node->nodeValue) > 40)
$text .= " ".trim($node->nodeValue);
}
if ($text != "") {
$text = trim(str_replace(array("\n", "\r"), array(" ", " "), $text));
while (strpos($text, " "))
$text = trim(str_replace(" ", " ", $text));
$siteinfo["text"] = trim(html_entity_decode(substr($text,0,350), ENT_QUOTES, "UTF-8").'...');
}
}
logger("parseurl_getsiteinfo: Siteinfo for ".$url." ".print_r($siteinfo, true), LOGGER_DEBUG);
call_hooks('getsiteinfo', $siteinfo);
return($siteinfo);
}
function arr_add_hashes(&$item,$k) {
$item = '#' . $item;
}
require_once("include/items.php");
function parse_url_content(&$a) {
require_once("include/items.php");
$text = null;
$str_tags = '';
$str_tags = "";
$textmode = false;
if(local_user() && (! feature_enabled(local_user(),'richtext')))
if (local_user() && (!feature_enabled(local_user(), "richtext"))) {
$textmode = true;
}
//if($textmode)
$br = (($textmode) ? "\n" : '<br />');
$br = (($textmode) ? "\n" : "<br />");
if(x($_GET,'binurl'))
$url = trim(hex2bin($_GET['binurl']));
else
$url = trim($_GET['url']);
if (x($_GET,"binurl")) {
$url = trim(hex2bin($_GET["binurl"]));
} else {
$url = trim($_GET["url"]);
}
if($_GET['title'])
$title = strip_tags(trim($_GET['title']));
if ($_GET["title"]) {
$title = strip_tags(trim($_GET["title"]));
}
if($_GET['description'])
$text = strip_tags(trim($_GET['description']));
if ($_GET["description"]) {
$text = strip_tags(trim($_GET["description"]));
}
if($_GET['tags']) {
$arr_tags = str_getcsv($_GET['tags']);
if(count($arr_tags)) {
array_walk($arr_tags,'arr_add_hashes');
$str_tags = $br . implode(' ',$arr_tags) . $br;
if ($_GET["tags"]) {
$arr_tags = ParseUrl::convertTagsToArray($_GET["tags"]);
if (count($arr_tags)) {
$str_tags = $br . implode(" ", $arr_tags) . $br;
}
}
// add url scheme if missing
// Add url scheme if it is missing
$arrurl = parse_url($url);
if (!x($arrurl, 'scheme')) {
if (x($arrurl, 'host'))
if (!x($arrurl, "scheme")) {
if (x($arrurl, "host")) {
$url = "http:".$url;
else
} else {
$url = "http://".$url;
}
}
logger('parse_url: ' . $url);
logger("prse_url: " . $url);
if($textmode)
$template = '[bookmark=%s]%s[/bookmark]%s';
else
// Check if the URL is an image, video or audio file. If so format
// the URL with the corresponding BBCode media tag
$redirects = 0;
// Fetch the header of the URL
$result = z_fetch_url($url, false, $redirects, array("novalidate" => true, "nobody" => true));
if($result["success"]) {
// Convert the header fields into an array
$hdrs = array();
$h = explode("\n", $result["header"]);
foreach ($h as $l) {
list($k,$v) = array_map("trim", explode(":", trim($l), 2));
$hdrs[$k] = $v;
}
if (array_key_exists("Content-Type", $hdrs)) {
$type = $hdrs["Content-Type"];
}
if ($type) {
if(stripos($type, "image/") !== false) {
echo $br . "[img]" . $url . "[/img]" . $br;
killme();
}
if (stripos($type, "video/") !== false) {
echo $br . "[video]" . $url . "[/video]" . $br;
killme();
}
if (stripos($type, "audio/") !== false) {
echo $br . "[audio]" . $url . "[/audio]" . $br;
killme();
}
}
}
if ($textmode) {
$template = "[bookmark=%s]%s[/bookmark]%s";
} else {
$template = "<a class=\"bookmark\" href=\"%s\" >%s</a>%s";
}
$arr = array('url' => $url, 'text' => '');
$arr = array("url" => $url, "text" => "");
call_hooks('parse_link', $arr);
call_hooks("parse_link", $arr);
if(strlen($arr['text'])) {
echo $arr['text'];
if (strlen($arr["text"])) {
echo $arr["text"];
killme();
}
// If there is allready some content information submitted we don't
// need to parse the url for content.
if ($url && $title && $text) {
if($url && $title && $text) {
$title = str_replace(array("\r","\n"),array("",""),$title);
$title = str_replace(array("\r","\n"),array('',''),$title);
if($textmode)
$text = '[quote]' . trim($text) . '[/quote]' . $br;
else {
$text = '<blockquote>' . htmlspecialchars(trim($text)) . '</blockquote><br />';
if ($textmode) {
$text = "[quote]" . trim($text) . "[/quote]" . $br;
} else {
$text = "<blockquote>" . htmlspecialchars(trim($text)) . "</blockquote><br />";
$title = htmlspecialchars($title);
}
$result = sprintf($template,$url,($title) ? $title : $url,$text) . $str_tags;
$result = sprintf($template, $url, ($title) ? $title : $url, $text) . $str_tags;
logger('parse_url (unparsed): returns: ' . $result);
logger("parse_url (unparsed): returns: " . $result);
echo $result;
killme();
}
$siteinfo = parseurl_getsiteinfo($url);
// Fetch the information directly from the webpage
$siteinfo = ParseUrl::getSiteinfo($url);
unset($siteinfo["keywords"]);
// Format it as BBCode attachment
$info = add_page_info_data($siteinfo);
if (!$textmode)
if (!$textmode) {
// Replace ' with - not perfect - but the richtext editor has problems otherwise
$info = str_replace(array("&#039;"), array("&#8217;"), $info);
}
echo $info;
killme();
}
?>
/**
* @brief Legacy function to call ParseUrl::getSiteinfoCached
*
* Note: We have moved the function to ParseUrl.php. This function is only for
* legacy support and will be remove in the future
*
* @param type $url The url of the page which should be scraped
* @param type $no_guessing If true the parse doens't search for
* preview pictures
* @param type $do_oembed The false option is used by the function fetch_oembed()
* to avoid endless loops
*
* @return array which contains needed data for embedding
*
* @see ParseUrl::getSiteinfoCached()
*
* @todo Remove this function after all Addons has been changed to use
* ParseUrl::getSiteinfoCached
*/
function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = true) {
$siteinfo = ParseUrl::getSiteinfoCached($url, $no_guessing, $do_oembed);
return $siteinfo;
}

View file

@ -3,43 +3,119 @@ require_once("include/datetime.php");
require_once('include/bbcode.php');
require_once('include/ForumManager.php');
require_once('include/group.php');
require_once("mod/proxy.php");
require_once('mod/proxy.php');
require_once('include/xml.php');
function ping_init(&$a) {
/**
* @brief Outputs the counts and the lists of various notifications
*
* The output format can be controlled via the GET parameter 'format'. It can be
* - xml (deprecated legacy default)
* - json (outputs JSONP with the 'callback' GET parameter)
*
* Expected JSON structure:
* {
* "result": {
* "intro": 0,
* "mail": 0,
* "net": 0,
* "home": 0,
* "register": 0,
* "all-events": 0,
* "all-events-today": 0,
* "events": 0,
* "events-today": 0,
* "birthdays": 0,
* "birthdays-today": 0,
* "groups": [ ],
* "forums": [ ],
* "notify": 0,
* "notifications": [ ],
* "sysmsgs": {
* "notice": [ ],
* "info": [ ]
* }
* }
* }
*
* @param App $a The Friendica App instance
*/
function ping_init(App $a)
{
$format = 'xml';
$xmlhead = "<"."?xml version='1.0' encoding='UTF-8' ?".">";
if (isset($_GET['format']) && $_GET['format'] == 'json') {
$format = 'json';
}
$tags = array();
$comments = array();
$likes = array();
$dislikes = array();
$friends = array();
$posts = array();
$regs = array();
$mails = array();
$notifications = array();
$intro_count = 0;
$mail_count = 0;
$home_count = 0;
$network_count = 0;
$register_count = 0;
$sysnotify_count = 0;
$groups_unseen = array();
$forums_unseen = array();
$all_events = 0;
$all_events_today = 0;
$events = 0;
$events_today = 0;
$birthdays = 0;
$birthdays_today = 0;
$data = array();
$data['intro'] = $intro_count;
$data['mail'] = $mail_count;
$data['net'] = $network_count;
$data['home'] = $home_count;
$data['register'] = $register_count;
$data['all-events'] = $all_events;
$data['all-events-today'] = $all_events_today;
$data['events'] = $events;
$data['events-today'] = $events_today;
$data['birthdays'] = $birthdays;
$data['birthdays-today'] = $birthdays_today;
if (local_user()){
// Different login session than the page that is calling us.
if (intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
$data = array("invalid" => 1);
header("Content-type: text/xml");
echo xml::from_array(array("result" => $data), $xml);
$data = array('result' => array('invalid' => 1));
if ($format == 'json') {
if (isset($_GET['callback'])) {
// JSONP support
header("Content-type: application/javascript");
echo $_GET['callback'] . '(' . json_encode($data) . ')';
} else {
header("Content-type: application/json");
echo json_encode($data);
}
} else {
header("Content-type: text/xml");
echo xml::from_array($data, $xml);
}
killme();
}
$notifs = ping_get_notifications(local_user());
$sysnotify = 0; // we will update this in a moment
$tags = array();
$comments = array();
$likes = array();
$dislikes = array();
$friends = array();
$posts = array();
$regs = array();
$mails = array();
$home = 0;
$network = 0;
$groups_unseen = array();
$forums_unseen = array();
$r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`,
$items_unseen = qu("SELECT `item`.`id`, `item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`,
`item`.`contact-id`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`,
`pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
`pitem`.`author-name` AS `pname`, `pitem`.`author-link` AS `plink`
FROM `item` INNER JOIN `item` AS `pitem` ON `pitem`.`id` = `item`.`parent`
WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
`item`.`deleted` = 0 AND `item`.`uid` = %d AND `pitem`.`parent` != 0
AND `item`.`contact-id` != %d
@ -47,110 +123,90 @@ function ping_init(&$a) {
intval(local_user()), intval(local_user())
);
if (dbm::is_result($r)) {
$arr = array('items' => $r);
if (dbm::is_result($items_unseen)) {
$arr = array('items' => $items_unseen);
call_hooks('network_ping', $arr);
foreach ($r as $it) {
if ($it['wall'])
$home ++;
else
$network ++;
switch($it['verb']){
case ACTIVITY_TAG:
$obj = parse_xml_string($xmlhead.$it['object']);
$it['tname'] = $obj->content;
$tags[] = $it;
break;
case ACTIVITY_LIKE:
$likes[] = $it;
break;
case ACTIVITY_DISLIKE:
$dislikes[] = $it;
break;
case ACTIVITY_FRIEND:
$obj = parse_xml_string($xmlhead.$it['object']);
$it['fname'] = $obj->title;
$friends[] = $it;
break;
default:
if ($it['parent']!=$it['id']) {
$comments[] = $it;
} else {
if (!$it['wall'])
$posts[] = $it;
}
foreach ($items_unseen as $item) {
if ($item['wall']) {
$home_count++;
} else {
$network_count++;
}
}
}
if ($network) {
if (intval(feature_enabled(local_user(),'groups'))) {
if ($network_count) {
if (intval(feature_enabled(local_user(), 'groups'))) {
// Find out how unseen network posts are spread across groups
$groups_unseen = groups_count_unseen();
$group_counts = groups_count_unseen();
if (dbm::is_result($group_counts)) {
foreach ($group_counts as $group_count) {
if ($group_count['count'] > 0) {
$groups_unseen[] = $group_count;
}
}
}
}
if (intval(feature_enabled(local_user(),'forumlist_widget'))) {
$forums_unseen = ForumManager::count_unseen_items();
if (intval(feature_enabled(local_user(), 'forumlist_widget'))) {
$forum_counts = ForumManager::count_unseen_items();
if (dbm::is_result($forums_counts)) {
foreach ($forums_counts as $forum_count) {
if ($forum_count['count'] > 0) {
$forums_unseen[] = $forum_count;
}
}
}
}
}
$intros1 = q("SELECT `intro`.`id`, `intro`.`datetime`,
$intros1 = qu("SELECT `intro`.`id`, `intro`.`datetime`,
`fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid`!=0",
WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`fid` != 0",
intval(local_user())
);
$intros2 = q("SELECT `intro`.`id`, `intro`.`datetime`,
$intros2 = qu("SELECT `intro`.`id`, `intro`.`datetime`,
`contact`.`name`, `contact`.`url`, `contact`.`photo`
FROM `intro` LEFT JOIN `contact` ON `intro`.`contact-id` = `contact`.`id`
WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id`!=0",
WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id` != 0",
intval(local_user())
);
$intro = count($intros1) + count($intros2);
$intro_count = count($intros1) + count($intros2);
$intros = $intros1+$intros2;
$myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ;
$mails = q("SELECT * FROM `mail`
$mails = qu("SELECT `id`, `from-name`, `from-url`, `from-photo`, `created` FROM `mail`
WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
intval(local_user()),
dbesc($myurl)
);
$mail = count($mails);
$mail_count = count($mails);
if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){
$regs = q("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) as `total` FROM `contact` RIGHT JOIN `register` ON `register`.`uid`=`contact`.`uid` WHERE `contact`.`self`=1");
if ($regs)
$register = $regs[0]['total'];
} else {
$register = "0";
$regs = qu("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) AS `total`
FROM `contact` RIGHT JOIN `register` ON `register`.`uid` = `contact`.`uid`
WHERE `contact`.`self` = 1");
if ($regs) {
$register_count = $regs[0]['total'];
}
}
$all_events = 0;
$all_events_today = 0;
$events = 0;
$events_today = 0;
$birthdays = 0;
$birthdays_today = 0;
$ev = q("SELECT count(`event`.`id`) as total, type, start, adjust FROM `event`
$ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event`
WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
ORDER BY `start` ASC ",
intval(local_user()),
dbesc(datetime_convert('UTC','UTC','now + 7 days')),
dbesc(datetime_convert('UTC','UTC','now'))
dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),
dbesc(datetime_convert('UTC', 'UTC', 'now'))
);
if (dbm::is_result($ev)) {
$all_events = intval($ev[0]['total']);
if ($all_events) {
$str_now = datetime_convert('UTC',$a->timezone,'now','Y-m-d');
$str_now = datetime_convert('UTC', $a->timezone, 'now', 'Y-m-d');
foreach($ev as $x) {
$bd = false;
if ($x['type'] === 'birthday') {
@ -160,7 +216,7 @@ function ping_init(&$a) {
else {
$events ++;
}
if (datetime_convert('UTC',((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'],'Y-m-d') === $str_now) {
if (datetime_convert('UTC', ((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'], 'Y-m-d') === $str_now) {
$all_events_today ++;
if ($bd)
$birthdays_today ++;
@ -171,99 +227,70 @@ function ping_init(&$a) {
}
}
$data = array();
$data["intro"] = $intro;
$data["mail"] = $mail;
$data["net"] = $network;
$data["home"] = $home;
$data['intro'] = $intro_count;
$data['mail'] = $mail_count;
$data['net'] = $network_count;
$data['home'] = $home_count;
$data['register'] = $register_count;
if ($register!=0)
$data["register"] = $register;
$data['all-events'] = $all_events;
$data['all-events-today'] = $all_events_today;
$data['events'] = $events;
$data['events-today'] = $events_today;
$data['birthdays'] = $birthdays;
$data['birthdays-today'] = $birthdays_today;
$groups = array();
if (dbm::is_result($groups_unseen)) {
$count = 0;
foreach ($groups_unseen as $it)
if ($it['count'] > 0) {
$count++;
$groups[$count.":group"] = $it['count'];
$groups[$count.":@attributes"] = array("id" => $it['id']);
if (dbm::is_result($notifs)) {
foreach ($notifs as $notif) {
if ($notif['seen'] == 0) {
$sysnotify_count ++;
}
$data["groups"] = $groups;
}
$forums = array();
if (dbm::is_result($forums_unseen)) {
$count = 0;
foreach ($forums_unseen as $it)
if ($it['count'] > 0) {
$count++;
$forums[$count.":forum"] = $it['count'];
$forums[$count.":@attributes"] = array("id" => $it['id']);
}
$data["forums"] = $forums;
}
$data["all-events"] = $all_events;
$data["all-events-today"] = $all_events_today;
$data["events"] = $events;
$data["events-today"] = $events_today;
$data["birthdays"] = $birthdays;
$data["birthdays-today"] = $birthdays_today;
if (dbm::is_result($notifs) && !$sysnotify) {
foreach ($notifs as $zz) {
if ($zz['seen'] == 0)
$sysnotify ++;
}
}
// merge all notification types in one array
if (dbm::is_result($intros)) {
foreach ($intros as $i) {
$n = array(
'href' => $a->get_baseurl().'/notifications/intros/'.$i['id'],
'name' => $i['name'],
'url' => $i['url'],
'photo' => $i['photo'],
'date' => $i['datetime'],
'seen' => false,
'message' => t("{0} wants to be your friend"),
foreach ($intros as $intro) {
$notif = array(
'href' => $a->get_baseurl() . '/notifications/intros/' . $intro['id'],
'name' => $intro['name'],
'url' => $intro['url'],
'photo' => $intro['photo'],
'date' => $intro['datetime'],
'seen' => false,
'message' => t('{0} wants to be your friend'),
);
$notifs[] = $n;
$notifs[] = $notif;
}
}
if (dbm::is_result($mails)) {
foreach ($mails as $i) {
$n = array(
'href' => $a->get_baseurl().'/message/'.$i['id'],
'name' => $i['from-name'],
'url' => $i['from-url'],
'photo' => $i['from-photo'],
'date' => $i['created'],
'seen' => false,
'message' => t("{0} sent you a message"),
foreach ($mails as $mail) {
$notif = array(
'href' => $a->get_baseurl() . '/message/' . $mail['id'],
'name' => $mail['from-name'],
'url' => $mail['from-url'],
'photo' => $mail['from-photo'],
'date' => $mail['created'],
'seen' => false,
'message' => t('{0} sent you a message'),
);
$notifs[] = $n;
$notifs[] = $notif;
}
}
if (dbm::is_result($regs)) {
foreach ($regs as $i) {
$n = array(
'href' => $a->get_baseurl().'/admin/users/',
'name' => $i['name'],
'url' => $i['url'],
'photo' => $i['micro'],
'date' => $i['created'],
'seen' => false,
'message' => t("{0} requested registration"),
foreach ($regs as $reg) {
$notif = array(
'href' => $a->get_baseurl() . '/admin/users/',
'name' => $reg['name'],
'url' => $reg['url'],
'photo' => $reg['micro'],
'date' => $reg['created'],
'seen' => false,
'message' => t('{0} requested registration'),
);
$notifs[] = $n;
$notifs[] = $notif;
}
}
@ -279,68 +306,79 @@ function ping_init(&$a) {
usort($notifs, $sort_function);
if (dbm::is_result($notifs)) {
// Are the nofications calles from the regular process or via the friendica app?
// Are the nofications called from the regular process or via the friendica app?
$regularnotifications = (intval($_GET['uid']) AND intval($_GET['_']));
$count = 0;
foreach($notifs as $n) {
$count++;
if ($a->is_friendica_app() OR !$regularnotifications)
$n['message'] = str_replace("{0}", $n['name'], $n['message']);
foreach ($notifs as $notif) {
if ($a->is_friendica_app() OR !$regularnotifications) {
$notif['message'] = str_replace("{0}", $notif['name'], $notif['message']);
}
$notifications[$count.":note"] = $n['message'];
$contact = get_contact_details_by_url($notif['url']);
if (isset($contact['micro'])) {
$notif['photo'] = proxy_url($contact['micro'], false, PROXY_SIZE_MICRO);
} else {
$notif['photo'] = proxy_url($notif['photo'], false, PROXY_SIZE_MICRO);
}
$contact = get_contact_details_by_url($n['url']);
if (isset($contact["micro"]))
$n['photo'] = proxy_url($contact["micro"], false, PROXY_SIZE_MICRO);
else
$n['photo'] = proxy_url($n['photo'], false, PROXY_SIZE_MICRO);
$local_time = datetime_convert('UTC',date_default_timezone_get(),$n['date']);
call_hooks('ping_xmlize', $n);
$notifications[$count.":@attributes"] = array("id" => $n["id"],
"href" => $n['href'],
"name" => $n['name'],
"url" => $n['url'],
"photo" => $n['photo'],
"date" => relative_date($n['date']),
"seen" => $n['seen'],
"timestamp" => strtotime($local_time));
$local_time = datetime_convert('UTC', date_default_timezone_get(), $notif['date']);
$notifications[] = array(
'id' => $notif['id'],
'href' => $notif['href'],
'name' => $notif['name'],
'url' => $notif['url'],
'photo' => $notif['photo'],
'date' => relative_date($notif['date']),
'message' => $notif['message'],
'seen' => $notif['seen'],
'timestamp' => strtotime($local_time)
);
}
}
$data["notif"] = $notifications;
$data["@attributes"] = array("count" => $sysnotify + $intro + $mail + $register);
}
$sysmsg = array();
$sysmsgs = array();
$sysmsgs_info = array();
if (x($_SESSION,'sysmsg')){
$count = 0;
foreach ($_SESSION['sysmsg'] as $m){
$count++;
$sysmsg[$count.":notice"] = $m;
}
if (x($_SESSION, 'sysmsg')) {
$sysmsgs = $_SESSION['sysmsg'];
unset($_SESSION['sysmsg']);
}
if (x($_SESSION,'sysmsg_info')){
$count = 0;
foreach ($_SESSION['sysmsg_info'] as $m){
$count++;
$sysmsg[$count.":info"] = $m;
}
if (x($_SESSION, 'sysmsg_info')) {
$sysmsgs_info = $_SESSION['sysmsg_info'];
unset($_SESSION['sysmsg_info']);
}
$data["sysmsgs"] = $sysmsg;
if ($format == 'json') {
$data['groups'] = $groups_unseen;
$data['forums'] = $forums_unseen;
$data['notify'] = $sysnotify_count + $intro_count + $mail_count + $register_count;
$data['notifications'] = $notifications;
$data['sysmsgs'] = array(
'notice' => $sysmsgs,
'info' => $sysmsgs_info
);
$json_payload = json_encode(array("result" => $data));
if (isset($_GET['callback'])) {
// JSONP support
header("Content-type: application/javascript");
echo $_GET['callback'] . '(' . $json_payload . ')';
} else {
header("Content-type: application/json");
echo $json_payload;
}
} else {
// Legacy slower XML format output
$data = ping_format_xml_data($data, $sysnotify_count, $notifications, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen);
header("Content-type: text/xml");
echo xml::from_array(array("result" => $data), $xml);
}
header("Content-type: text/xml");
echo xml::from_array(array("result" => $data), $xml);
killme();
}
@ -350,19 +388,19 @@ function ping_init(&$a) {
* @param int $uid User id
* @return array Associative array of notifications
*/
function ping_get_notifications($uid) {
$result = array();
$offset = 0;
$seen = false;
function ping_get_notifications($uid)
{
$result = array();
$offset = 0;
$seen = false;
$seensql = "NOT";
$order = "DESC";
$quit = false;
$order = "DESC";
$quit = false;
$a = get_app();
do {
$r = q("SELECT `notify`.*, `item`.`visible`, `item`.`spam`, `item`.`deleted`
$r = qu("SELECT `notify`.*, `item`.`visible`, `item`.`spam`, `item`.`deleted`
FROM `notify` LEFT JOIN `item` ON `item`.`id` = `notify`.`iid`
WHERE `notify`.`uid` = %d AND `notify`.`msg` != ''
AND NOT (`notify`.`type` IN (%d, %d))
@ -422,3 +460,71 @@ function ping_get_notifications($uid) {
return($result);
}
/**
* @brief Backward-compatible XML formatting for ping.php output
* @deprecated
*
* @param array $data The initial ping data array
* @param int $sysnotify_count Number of unseen system notifications
* @param array $notifs Complete list of notification
* @param array $sysmsgs List of system notice messages
* @param array $sysmsgs_info List of system info messages
* @param int $groups_unseen Number of unseen group items
* @param int $forums_unseen Number of unseen forum items
* @return array XML-transform ready data array
*/
function ping_format_xml_data($data, $sysnotify, $notifs, $sysmsgs, $sysmsgs_info, $groups_unseen, $forums_unseen)
{
$notifications = array();
foreach($notifs as $key => $notif) {
$notifications[$key . ':note'] = $notif['message'];
$notifications[$key . ':@attributes'] = array(
'id' => $notif['id'],
'href' => $notif['href'],
'name' => $notif['name'],
'url' => $notif['url'],
'photo' => $notif['photo'],
'date' => $notif['date'],
'seen' => $notif['seen'],
'timestamp' => $notif['timestamp']
);
}
$sysmsg = array();
foreach ($sysmsgs as $key => $m){
$sysmsg[$key . ':notice'] = $m;
}
foreach ($sysmsgs_info as $key => $m){
$sysmsg[$key . ':info'] = $m;
}
$data['notif'] = $notifications;
$data['@attributes'] = array('count' => $sysnotify_count + $data['intro'] + $data['mail'] + $data['register']);
$data['sysmsgs'] = $sysmsg;
if ($data['register'] == 0) {
unset($data['register']);
}
$groups = array();
if (count($groups_unseen)) {
foreach ($groups_unseen as $key => $item) {
$groups[$key . ':group'] = $item['count'];
$groups[$key . ':@attributes'] = array('id' => $item['id']);
}
$data['groups'] = $groups;
}
$forums = array();
if (count($forums_unseen)) {
foreach ($forums_unseen as $key => $item) {
$forums[$count . ':forum'] = $item['count'];
$forums[$count . ':@attributes'] = array('id' => $item['id']);
}
$data['forums'] = $forums;
}
return $data;
}

View file

@ -233,66 +233,87 @@ function proxy_init() {
killme();
}
function proxy_url($url, $writemode = false, $size = "") {
global $_SERVER;
/**
* @brief Transform a remote URL into a local one
*
* This function only performs the URL replacement on http URL and if the
* provided URL isn't local, "the isn't deactivated" (sic) and if the config
* system.proxy_disabled is set to false.
*
* @param string $url The URL to proxyfy
* @param bool $writemode Returns a local path the remote URL should be saved to
* @param string $size One of the PROXY_SIZE_* constants
*
* @return string The proxyfied URL or relative path
*/
function proxy_url($url, $writemode = false, $size = '') {
$a = get_app();
if (substr($url, 0, strlen('http')) !== 'http') {
return($url);
return $url;
}
// Only continue if it isn't a local image and the isn't deactivated
if (proxy_is_local_image($url)) {
$url = str_replace(normalise_link($a->get_baseurl())."/", $a->get_baseurl()."/", $url);
return($url);
$url = str_replace(normalise_link($a->get_baseurl()) . '/', $a->get_baseurl() . '/', $url);
return $url;
}
if (get_config("system", "proxy_disabled"))
return($url);
if (get_config('system', 'proxy_disabled')) {
return $url;
}
// Image URL may have encoded ampersands for display which aren't desirable for proxy
$url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');
// Creating a sub directory to reduce the amount of files in the cache directory
$basepath = $a->get_basepath()."/proxy";
$basepath = $a->get_basepath() . '/proxy';
$path = substr(hash("md5", $url), 0, 2);
$shortpath = hash('md5', $url);
$longpath = substr($shortpath, 0, 2);
if (is_dir($basepath) and $writemode)
if (!is_dir($basepath."/".$path)) {
mkdir($basepath."/".$path);
chmod($basepath."/".$path, 0777);
if (is_dir($basepath) and $writemode) {
if (!is_dir($basepath . '/' . $longpath)) {
mkdir($basepath . '/' . $longpath);
chmod($basepath . '/' . $longpath, 0777);
}
$path .= "/".strtr(base64_encode($url), '+/', '-_');
// Checking for valid extensions. Only add them if they are safe
$pos = strrpos($url, ".");
if ($pos) {
$extension = strtolower(substr($url, $pos+1));
$pos = strpos($extension, "?");
if ($pos)
$extension = substr($extension, 0, $pos);
}
$extensions = array("jpg", "jpeg", "gif", "png");
$longpath .= '/' . strtr(base64_encode($url), '+/', '-_');
if (in_array($extension, $extensions))
$path .= ".".$extension;
// Checking for valid extensions. Only add them if they are safe
$pos = strrpos($url, '.');
if ($pos) {
$extension = strtolower(substr($url, $pos + 1));
$pos = strpos($extension, '?');
if ($pos) {
$extension = substr($extension, 0, $pos);
}
}
$proxypath = $a->get_baseurl()."/proxy/".$path;
$extensions = array('jpg', 'jpeg', 'gif', 'png');
if (in_array($extension, $extensions)) {
$shortpath .= '.' . $extension;
$longpath .= '.' . $extension;
}
if ($size != "")
$size = ":".$size;
$proxypath = $a->get_baseurl() . '/proxy/' . $longpath;
if ($size != '') {
$size = ':' . $size;
}
// Too long files aren't supported by Apache
// Writemode in combination with long files shouldn't be possible
if ((strlen($proxypath) > 250) AND $writemode)
return (hash("md5", $url));
elseif (strlen($proxypath) > 250)
return ($a->get_baseurl()."/proxy/".hash("md5", $url)."?url=".urlencode($url));
elseif ($writemode)
return ($path);
else
return ($proxypath.$size);
if ((strlen($proxypath) > 250) AND $writemode) {
return $shortpath;
} elseif (strlen($proxypath) > 250) {
return $a->get_baseurl() . '/proxy/' . $shortpath . '?url=' . urlencode($url);
} elseif ($writemode) {
return $longpath;
} else {
return $proxypath . $size;
}
}
/**

View file

@ -113,12 +113,13 @@ function register_post(&$a) {
}
$hash = random_string();
$r = q("INSERT INTO `register` ( `hash`, `created`, `uid`, `password`, `language` ) VALUES ( '%s', '%s', %d, '%s', '%s' ) ",
$r = q("INSERT INTO `register` ( `hash`, `created`, `uid`, `password`, `language`, `note` ) VALUES ( '%s', '%s', %d, '%s', '%s', '%s' ) ",
dbesc($hash),
dbesc(datetime_convert()),
intval($user['uid']),
dbesc($result['password']),
dbesc($lang)
dbesc($lang),
dbesc($_POST['permonlybox'])
);
// invite system
@ -133,6 +134,7 @@ function register_post(&$a) {
$admin_mail_list
);
// send notification to admins
foreach ($adminlist as $admin) {
notification(array(
'type' => NOTIFY_SYSTEM,
@ -149,6 +151,11 @@ function register_post(&$a) {
'show_in_notification_page' => false
));
}
// send notification to the user, that the registration is pending
send_register_pending_eml(
$user['email'],
$a->config['sitename'],
$user['username']);
info( t('Your registration is pending approval by the site owner.') . EOL ) ;
goaway(z_root());
@ -256,6 +263,8 @@ function register_content(&$a) {
$o = replace_macros($o, array(
'$oidhtml' => $oidhtml,
'$invitations' => get_config('system','invitation_only'),
'$permonly' => $a->config['register_policy'] == REGISTER_APPROVE,
'$permonlybox' => array('permonlybox', t('Note for the admin'), '', t('Leave a message for the admin, why you want to join this node')),
'$invite_desc' => t('Membership on this site is by invitation only.'),
'$invite_label' => t('Your invitation ID: '),
'$invite_id' => $invite_id,

View file

@ -301,6 +301,7 @@ function settings_post(&$a) {
$infinite_scroll = x($_POST, 'infinite_scroll') ? intval($_POST['infinite_scroll']) : 0;
$no_auto_update = x($_POST, 'no_auto_update') ? intval($_POST['no_auto_update']) : 0;
$bandwidth_saver = x($_POST, 'bandwidth_saver') ? intval($_POST['bandwidth_saver']) : 0;
$nowarn_insecure = x($_POST, 'nowarn_insecure') ? intval($_POST['nowarn_insecure']) : 0;
$browser_update = x($_POST, 'browser_update') ? intval($_POST['browser_update']) : 0;
if ($browser_update != -1) {
$browser_update = $browser_update * 1000;
@ -321,6 +322,7 @@ function settings_post(&$a) {
set_pconfig(local_user(),'system','mobile_theme',$mobile_theme);
}
set_pconfig(local_user(), 'system', 'nowarn_insecure' , $nowarn_insecure);
set_pconfig(local_user(), 'system', 'update_interval' , $browser_update);
set_pconfig(local_user(), 'system', 'itemspage_network' , $itemspage_network);
set_pconfig(local_user(), 'system', 'itemspage_mobile_network', $itemspage_mobile_network);
@ -951,6 +953,8 @@ function settings_content(&$a) {
$theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
$mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
$nowarn_insecure = intval(get_pconfig(local_user(), 'system', 'nowarn_insecure'));
$browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
if (intval($browser_update) != -1)
$browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
@ -995,6 +999,7 @@ function settings_content(&$a) {
'$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true),
'$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false),
'$nowarn_insecure' => array('nowarn_insecure', t('Suppress warning of insecure networks'), $nowarn_insecure, t("Should the system suppress the warning that the current group contains members of networks that can't receive non public postings.")),
'$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds. Enter -1 to disable it.')),
'$itemspage_network' => array('itemspage_network', t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
'$itemspage_mobile_network' => array('itemspage_mobile_network', t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, t('Maximum of 100 items')),

View file

@ -47,7 +47,7 @@ function viewcontacts_content(&$a) {
}
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
WHERE `uid` = %d AND (NOT `blocked` OR `pending`) AND NOT `hidden` AND NOT `archive`
AND `network` IN ('%s', '%s', '%s')",
intval($a->profile['uid']),
dbesc(NETWORK_DFRN),
@ -58,7 +58,7 @@ function viewcontacts_content(&$a) {
$a->set_pager_total($r[0]['total']);
$r = q("SELECT * FROM `contact`
WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
WHERE `uid` = %d AND (NOT `blocked` OR `pending`) AND NOT `hidden` AND NOT `archive`
AND `network` IN ('%s', '%s', '%s')
ORDER BY `name` ASC LIMIT %d, %d",
intval($a->profile['uid']),

54
mod/worker.php Normal file
View file

@ -0,0 +1,54 @@
<?php
/**
* @file mod/worker.php
* @brief Module for running the poller as frontend process
*/
require_once("include/poller.php");
use \Friendica\Core\Config;
use \Friendica\Core\PConfig;
function worker_init($a){
if (!Config::get("system", "frontend_worker") OR !Config::get("system", "worker")) {
return;
}
// We don't need the following lines if we can execute background jobs.
// So we just wake up the worker if it sleeps.
if (function_exists("proc_open")) {
call_worker_if_idle();
return;
}
clear_worker_processes();
$workers = q("SELECT COUNT(*) AS `processes` FROM `process` WHERE `command` = 'worker.php'");
if ($workers[0]["processes"] > Config::get("system", "worker_queues", 4)) {
return;
}
$a->start_process();
logger("Front end worker started: ".getmypid());
call_worker();
if ($r = poller_worker_process()) {
// On most configurations this parameter wouldn't have any effect.
// But since it doesn't destroy anything, we just try to get more execution time in any way.
set_time_limit(0);
poller_execute($r[0]);
}
call_worker();
$a->end_process();
logger("Front end worker ended: ".getmypid());
killme();
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

View file

@ -0,0 +1,162 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="1633" height="2173" viewBox="0 0 1633 2173">
<style type="text/css"><![CDATA[
text { font:12px Dialog; }
]]></style>
<rect x="-485" y="-485" width="2603" height="3143" style="fill:rgb(255,255,255);stroke:none" />
<clipPath id="clip1"><path d="M614,37 L1056,37 L1056,106 L614,106 L614,37 Z" /></clipPath>
<path d="M616,39 L616,103 L1053,103 L1053,39 Z" style="fill:rgb(202,221,254);stroke:none" clip-path="url(#clip1)" />
<clipPath id="clip2"><path d="M614,37 L1056,37 L1056,106 L614,106 L614,37 Z" /></clipPath>
<path d="M616,39 L616,103 L1053,103 L1053,39 Z" style="fill:none;stroke:rgb(61,83,127)" clip-path="url(#clip2)" />
<text x="649" y="76" style="font:18px Open Sans">Friendica - Contact confirmation</text>
<clipPath id="clip3"><path d="M1198,202 L1388,202 L1388,244 L1198,244 L1198,202 Z" /></clipPath>
<path d="M1208,204 C1203.5820313,204 1200,207.5820313 1200,212 L1200,233 C1200,237.4179688 1203.5820313,241 1208,241 L1377,241 C1381.4179688,241 1385,237.4179688 1385,233 L1385,212 C1385,207.5820313 1381.4179688,204 1377,204 Z" style="fill:rgb(0,131,191);stroke:none" clip-path="url(#clip3)" />
<clipPath id="clip4"><path d="M1198,202 L1388,202 L1388,244 L1198,244 L1198,202 Z" /></clipPath>
<path d="M1208,204 C1203.5820313,204 1200,207.5820313 1200,212 L1200,233 C1200,237.4179688 1203.5820313,241 1208,241 L1377,241 C1381.4179688,241 1385,237.4179688 1385,233 L1385,212 C1385,207.5820313 1381.4179688,204 1377,204 Z" style="fill:none;stroke:rgb(0,131,191)" clip-path="url(#clip4)" />
<text x="1213" y="225" style="font:13px Tahoma">bob@example.com</text>
<image x="0" y="0" width="1374" height="231" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABV4AAADnCAYAAADmQE2RAAAIU0lEQVR42u3dTW+UZRSA4SYSfoACIi4EhERCJAhWpXZKUT4UEaGlRVuMgNQQlKCoGEBIGbUCEgsUkK+2YFsUUSIxhoVGkUBLCkIRypcSoOUPqCy6sceZUQyZoC5cel3JWUzeOZtneefN8+bkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPB/EBH/aQAAAAAAyJIdUgt3ne+V2NVeld905ofUdGVm19m2RNOZZPqZ8AoAAAAA8C9ujKiPNp18elTdyWu9R1bEvaU7Y8r6szG5+kwULtsfwxdui/yG9p8Tje3ThFcAAAAAgH9wPaCO2dFWmmg43X1fxd64Y9KxGDm/PUq3dETp5o4oSU3xxssxevlXUdB4untMw6lS4RUAAAAA4G+k42mi7njvRP0Pv+S9vj8mV1+KCVUXY/rWjnh6W0eU1XZGYeWFGDijLYbNbY+B4+pjTGP7r3kfnuwjvAIAAAAA3EQmvG5rSw57cVPkLToXRTVX4pntnanpiLK6zijaeDnyl52PQbNORt+px+K28a0xpHxlJLaeqBJeAQAAAABuIh1P8zcfbxswuiYefPVM5mqBstqOKK/vjBk7OmP86osx+q0LUZg8F3eXH4i+4/dE/7ylkVv15dnUek8nCAAAAACQJRNeNxzryn2pLaasv/zH9QJ1nfHszs54ruFq5K+4EE+u/SkeWHgwRr36USxqORyLj7ZE0ZZPfkut93OCAAAAAABZMuF1XWvX4yvP/3Wva3kmvF6Nok2Xo8/M76P39ANx/8t7YnFrSxStaYyH5qzKxNfBBQUFThAAAAAAIEsmvL5/pC3x2r4o2nglSrdcyXxQK/3Ga8mWizFg1rdxz+zGmPBOU0xYXh8F8+viieSGeKPlcHevQYNGOEEAAAAAgCyZj2utak4On7M+xiZ/jKEVp+KpdZeivPZSFFe3RtGaT2Npa3PM2b0vXtj9eUxdvSMWp34/9s7G5tR6bycIAAAAAJAlHV7z3jvcJ//dQz+Pmrcvbh1/NAbPbIvitSeipHpvvNnaHGOXbouy2s9i7t4vMtF13Nt1XXfmThmeWu/hBAEAAAAAsqTDa+at17cOTns4+V13//xN8cAr7TEx+XUsOXIoSqobY+CkDZG/YHsUV9dHwZLa7qGz11akVnuk9wAAAAAAyHI9vGbuel1xoGTUsm+u3fd8TeTN+yDePNoc4xZVx6TKmljaejjGrtjZNXzu1pmptVuu7wAAAAAAkOXG8JqewspveyUqv6nKXfDx2eJ1Tb+l4+uSI4e6JyZrDt0+cuK9OX++6Sq8AgAAAAD8jezwekNQ7ZmafkMeeaSg1113jcj540NaPbL/9ztNv3iKQ/ZEAwAAAABJRU5ErkJggg==" /><clipPath id="clip5"><path d="M181,198 L432,198 L432,240 L181,240 L181,198 Z" /></clipPath>
<path d="M191,200 C186.5820313,200 183,203.5820313 183,208 L183,229 C183,233.4179688 186.5820313,237 191,237 L421,237 C425.4179688,237 429,233.4179688 429,229 L429,208 C429,203.5820313 425.4179688,200 421,200 Z" style="fill:rgb(0,131,191);stroke:none" clip-path="url(#clip5)" />
<clipPath id="clip6"><path d="M181,198 L432,198 L432,240 L181,240 L181,198 Z" /></clipPath>
<path d="M191,200 C186.5820313,200 183,203.5820313 183,208 L183,229 C183,233.4179688 186.5820313,237 191,237 L421,237 C425.4179688,237 429,233.4179688 429,229 L429,208 C429,203.5820313 425.4179688,200 421,200 Z" style="fill:none;stroke:rgb(0,131,191)" clip-path="url(#clip6)" />
<text x="197" y="221" style="font:13px Tahoma">karen@karenhompage.com</text>
<image x="0" y="0" width="418" height="227" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAaIAAADjCAYAAADHeBASAAAE2klEQVR42u3cS29VVRiAYRKNP0ApIg64CImEQEAEbe0pF6EookKhBSlGQGoISlBQDNeUg1RAI5cCcm3BtiiiRGIMAw0goYUUhHIpNyVAyx9AGXRCP3eP0RinLXHyPMkanazJmrz59l5nd+oEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+PiGjXAoAODdHwvVc7p/Y2luXWXDqfrJbM2nu5IVVzKd32mxABcN9C9HzNuSnZFefuZg0uif5Fe2L8xsvxyrpLMXzZoRg4f0fkVjXeSVU3ThIiADo8RCN2NxSlqi62Dio5EI+NOx2D5zZG0bamKNraFIXJmrj5Zgxb/mPkVV9sHVF1oUiIAOiwEKUqzmSlKs//nvPBoWQCuhFjyq7H5O1NMWVHU0zd1RzDS69Fr2kNMWB2Y/QaXRkjqhv/yPniXBchAqBjQrSjIT3g7S2Rs/BKFJTfitd2NicriVBFcxQkk1DusqvRe8a56DrhdDySXx99i1dHavvZMiECoENClLv1TEPPYeXxzIJLmUdxU3c1RXFlc0zb3Rz5a6/HsJXXYnj6SjxRfDS65u+PHjlLYkjZD5eT7Q85QQDaH6JNp1uGvNMQ4zfe/OtxXDIJvb6nOd6ouh25K67Fy+t/i6Hzj0X2gi9j4YnaWHTqRBRs+/pesr2bEwSg/SHaUN/y4uqr/7wXKs6E6HYUbLkZXab/ElmTj8bT7+6PRfVJgD6tjmdnrcnEqE9eXp4TBKD9IfrsZEPq/YNRsPlWFG27lbmg0DYRFW67Hj1nHIknZ1bHmFU1MWZ5ZeTNrYiX0pviwxO1rZ17937KCQLQ7hCl1tSlB87aGKPSv0a/kgvx6oYbUbzrRkxcV59MQN/Ekvq6mLXvYLy177uYsHZ3MhnVxQurNtcl27OcIADtDlHOJ7Vdcj8+fid7zsF4OP9U9JneEBPXn43CdQdiaRKdUUt2JFPStzH7wPeZCI3+qKLl8SHjBybbH3SCALQ7RJmpaOWxSc+lf27tkbslhr7XGGPTP8Xik8eTGFVHr3GbInfezmRCqoy8xbta+81cX9IWIde3AeiwEGXeFa04Wpi97PDdQW+WR86cz2PpqWT6WbguxpWWx5L62hi1Yk/LwNnbpyfbHvBlBQA6PESZj56WHumcKj1cNmTeV5cnbqi51xajZDJqHZsuP/7o4LH9/56EhAiA+xKifwWm7c+q3fqOHJnXuXv3tttxWf+NUNv6E/vueIp8e9bqAAAAAElFTkSuQmCC" /><clipPath id="clip7"><path d="M215,325 L390,325 L390,367 L215,367 L215,325 Z" /></clipPath>
<path d="M224,326 C219.5820313,326 216,329.5820313 216,334 L216,357 C216,361.4179688 219.5820313,365 224,365 L380,365 C384.4179688,365 388,361.4179688 388,357 L388,334 C388,329.5820313 384.4179688,326 380,326 Z" style="fill:rgb(127,127,127);stroke:none" clip-path="url(#clip7)" />
<text x="230" y="348" style="font:13px Open Sans">notifications.php</text>
<clipPath id="clip8"><path d="M30,409 L580,409 L580,566 L30,566 L30,409 Z" /></clipPath>
<path d="M39,410 C34.5820313,410 31,413.5820313 31,418 L31,556 C31,560.4179688 34.5820313,564 39,564 L570,564 C574.4179688,564 578,560.4179688 578,556 L578,418 C578,413.5820313 574.4179688,410 570,410 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip8)" />
<text x="45" y="432" style="font:13px Open Sans">notifications_content()</text>
<text x="45" y="455" style="font:13px Open Sans">-----------------------------------------</text>
<text x="45" y="501" style="font:13px Open Sans">- This is the page where Karen see Bobs friendship request</text>
<text x="45" y="524" style="font:13px Open Sans">- the submit form redirects to Karens local dfrn_confirm page </text>
<text x="45" y="547" style="font:13px Open Sans">($dfrn_id, $contact_id, $intro_id are submitted)</text>
<clipPath id="clip9"><path d="M219,640 L399,640 L399,682 L219,682 L219,640 Z" /></clipPath>
<path d="M228,641 C223.5820313,641 220,644.5820313 220,649 L220,672 C220,676.4179688 223.5820313,680 228,680 L389,680 C393.4179688,680 397,676.4179688 397,672 L397,649 C397,644.5820313 393.4179688,641 389,641 Z" style="fill:rgb(127,127,127);stroke:none" clip-path="url(#clip9)" />
<text x="234" y="663" style="font:13px Open Sans">dfrn_confirm.php</text>
<clipPath id="clip10"><path d="M14,698 L594,698 L594,1798 L14,1798 L14,698 Z" /></clipPath>
<path d="M23,699 C18.5820313,699 15,702.5820313 15,707 L15,1788 C15,1792.4179688 18.5820313,1796 23,1796 L584,1796 C588.4179688,1796 592,1792.4179688 592,1788 L592,707 C592,702.5820313 588.4179688,699 584,699 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip10)" />
<text x="29" y="721" style="font:13px Open Sans">dfrn_confirm_post()</text>
<text x="29" y="744" style="font:13px Open Sans">SCENARIO 1 ( no $_POST['source_url'] available)</text>
<text x="29" y="767" style="font:13px Open Sans">--------------------------------------------------------------------------------</text>
<text x="29" y="813" style="font:13px Open Sans">- contact data come either form $handsfree (if autoconfirm) or </text>
<text x="29" y="836" style="font:13px Open Sans">from $_POST</text>
<text x="29" y="882" style="font:13px Open Sans">- get all data about Karen form the user table</text>
<text x="29" y="928" style="font:13px Open Sans">[Note: Bob have been issued an ID (contact issue-id) when he first </text>
<text x="29" y="951" style="font:13px Open Sans">requested the friendship. Locate Bobs contact record. At this </text>
<text x="29" y="974" style="font:13px Open Sans">time, his record will have both pending and blocked set to 1. </text>
<text x="29" y="997" style="font:13px Open Sans">There won't be any dfrn_id if this is a network follower, so use </text>
<text x="29" y="1020" style="font:13px Open Sans">the contact_id instead]</text>
<text x="29" y="1066" style="font:13px Open Sans">- search for Bob in the contact table by contact_id, dfrn_id and </text>
<text x="29" y="1089" style="font:13px Open Sans">issued-id not empty (for the uid -&gt; Karens user id)</text>
<text x="29" y="1135" style="font:13px Open Sans">- if network = dfrn </text>
<text x="29" y="1158" style="font:13px Open Sans"> -&gt; create a new keypair (prvkey &amp; pubkey) and update the </text>
<text x="29" y="1181" style="font:13px Open Sans">contact</text>
<text x="29" y="1227" style="font:13px Open Sans">[Note: Generate a key pair for all further communications with </text>
<text x="29" y="1250" style="font:13px Open Sans">this person. We have a keypair for every contact, and a site key </text>
<text x="29" y="1273" style="font:13px Open Sans">for unknown people. This provides a means to carry on </text>
<text x="29" y="1296" style="font:13px Open Sans">relationships with other people any single key is compromised. It </text>
<text x="29" y="1319" style="font:13px Open Sans">is a robust key. We're much more worried about key leakage </text>
<text x="29" y="1342" style="font:13px Open Sans">than anybody cracking it.]</text>
<text x="29" y="1388" style="font:13px Open Sans"> -&gt; update Bobs contact record (in the contact table) with the </text>
<text x="29" y="1411" style="font:13px Open Sans">generated prvkey</text>
<text x="29" y="1457" style="font:13px Open Sans"> -&gt; encrypting the dfrn_id with Karens prvkey (Bob can decrypt it </text>
<text x="29" y="1480" style="font:13px Open Sans">on the other and with Karens site-pubkey) and add it to the </text>
<text x="29" y="1503" style="font:13px Open Sans">transmit params.</text>
<text x="29" y="1549" style="font:13px Open Sans"> -&gt; encrypting Karens profile url with Bobs site-pubkey (Bob </text>
<text x="29" y="1572" style="font:13px Open Sans">can decrypt it with his own private key) and add it to the </text>
<text x="29" y="1595" style="font:13px Open Sans">transmit params.</text>
<text x="29" y="1641" style="font:13px Open Sans"> -&gt; add the above generated public key to params which </text>
<text x="29" y="1664" style="font:13px Open Sans">getting transmitted (if $aes_allow -&gt; encrypt the the public key)</text>
<text x="29" y="1710" style="font:13px Open Sans"> -&gt; add duplex state and page-flags to the params</text>
<text x="29" y="1756" style="font:13px Open Sans"> -&gt; send params to Bobs dfrn_confirm page ($res = </text>
<text x="29" y="1779" style="font:13px Open Sans">post_url($dfrn_confirm,$params);</text>
<clipPath id="clip11"><path d="M1041,1319 L1619,1319 L1619,1913 L1041,1913 L1041,1319 Z" /></clipPath>
<path d="M1050,1320 C1045.5820313,1320 1042,1323.5820313 1042,1328 L1042,1903 C1042,1907.4179688 1045.5820313,1911 1050,1911 L1609,1911 C1613.4179688,1911 1617,1907.4179688 1617,1903 L1617,1328 C1617,1323.5820313 1613.4179688,1320 1609,1320 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip11)" />
<text x="1055" y="1342" style="font:13px Open Sans">dfrn_confirm_post()</text>
<text x="1055" y="1365" style="font:13px Open Sans">SCENARIO 2 ( $_POST['source_url'] is available)</text>
<text x="1055" y="1388" style="font:13px Open Sans">------------------------------------------------------------------------</text>
<text x="1055" y="1434" style="font:13px Open Sans">- get all data about Bob from the user table (prvkey and uid form </text>
<text x="1055" y="1457" style="font:13px Open Sans">Bob )</text>
<text x="1055" y="1503" style="font:13px Open Sans">- decrypt the transmitted source_url (profile url) with Bobs </text>
<text x="1055" y="1526" style="font:13px Open Sans">prvkey</text>
<text x="1055" y="1572" style="font:13px Open Sans">- get data of Karen from contact table by her source_url (and by </text>
<text x="1055" y="1595" style="font:13px Open Sans">her user id)</text>
<text x="1055" y="1641" style="font:13px Open Sans">- decrypt the dfrn_id sent by Karen with Karens site-pubkey </text>
<text x="1055" y="1664" style="font:13px Open Sans">(taken from contact table)</text>
<text x="1055" y="1710" style="font:13px Open Sans">- if possible decrpyt the pubkey sent by Karen with the prvkey of </text>
<text x="1055" y="1733" style="font:13px Open Sans">Bob (taken from user table) -&gt; if this is not possible use the raw </text>
<text x="1055" y="1756" style="font:13px Open Sans">pubkey</text>
<text x="1055" y="1802" style="font:13px Open Sans">- search if the dfrn_id is already present in the contact table (if it </text>
<text x="1055" y="1825" style="font:13px Open Sans">is prensent it is a duplicate)</text>
<text x="1055" y="1871" style="font:13px Open Sans">- update dfrn-id and pubkey for Karens contact entry in the </text>
<text x="1055" y="1894" style="font:13px Open Sans">contact table</text>
<clipPath id="clip12"><path d="M42,1841 L559,1841 L559,1906 L42,1906 L42,1841 Z" /></clipPath>
<path d="M51,1842 C46.5820313,1842 43,1845.5820313 43,1850 L43,1896 C43,1900.4179688 46.5820313,1904 51,1904 L549,1904 C553.4179688,1904 557,1900.4179688 557,1896 L557,1850 C557,1845.5820313 553.4179688,1842 549,1842 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip12)" />
<text x="57" y="1864" style="font:13px Open Sans"> -&gt; set the relation for the contact and set pending = 0 and </text>
<text x="57" y="1887" style="font:13px Open Sans">blocked = 0</text>
<clipPath id="clip13"><path d="M1128,1950 L1541,1950 L1541,2061 L1128,2061 L1128,1950 Z" /></clipPath>
<path d="M1137,1951 C1132.5820313,1951 1129,1954.5820313 1129,1959 L1129,2051 C1129,2055.4179688 1132.5820313,2059 1137,2059 L1531,2059 C1535.4179688,2059 1539,2055.4179688 1539,2051 L1539,1959 C1539,1954.5820313 1535.4179688,1951 1531,1951 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip13)" />
<text x="1142" y="1973" style="font:13px Open Sans">- update the relationship of the contact Karen</text>
<text x="1142" y="2019" style="font:13px Open Sans">-&gt; if duplex delete the issued-id</text>
<text x="1142" y="2042" style="font:13px Open Sans">-&gt; set blocked = 0 and pending = 0</text>
<clipPath id="clip14"><path d="M1241,2117 L1428,2117 L1428,2159 L1241,2159 L1241,2117 Z" /></clipPath>
<path d="M1250,2118 C1245.5820313,2118 1242,2121.5820313 1242,2126 L1242,2149 C1242,2153.4179688 1245.5820313,2157 1250,2157 L1418,2157 C1422.4179688,2157 1426,2153.4179688 1426,2149 L1426,2126 C1426,2121.5820313 1422.4179688,2118 1418,2118 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip14)" />
<text x="1255" y="2140" style="font:13px Open Sans">send a notification</text>
<clipPath id="clip15"><path d="M190,1937 L410,1937 L410,1979 L190,1979 L190,1937 Z" /></clipPath>
<path d="M199,1938 C194.5820313,1938 191,1941.5820313 191,1946 L191,1969 C191,1973.4179688 194.5820313,1977 199,1977 L400,1977 C404.4179688,1977 408,1973.4179688 408,1969 L408,1946 C408,1941.5820313 404.4179688,1938 400,1938 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip15)" />
<text x="205" y="1960" style="font:13px Open Sans">delete the intro of Bob</text>
<clipPath id="clip16"><path d="M156,14 L512,14 L512,125 L156,125 L156,14 Z" /></clipPath>
<path d="M165,15 C160.5820313,15 157,18.5820313 157,23 L157,115 C157,119.4179688 160.5820313,123 165,123 L502,123 C506.4179688,123 510,119.4179688 510,115 L510,23 C510,18.5820313 506.4179688,15 502,15 Z" style="fill:rgb(255,255,255);stroke:none" clip-path="url(#clip16)" />
<text x="171" y="38" style="font:13px Open Sans">Note: this chart respects only dfrn </text>
<text x="171" y="61" style="font:13px Open Sans">contacts and focuses on key exchange </text>
<text x="171" y="84" style="font:13px Open Sans">(for other areas it might be very </text>
<text x="171" y="106" style="font:13px Open Sans">incomplete)</text>
<clipPath id="clip17"><path d="M266,361 L341,361 L341,414 L266,414 L266,361 Z" /></clipPath>
<path d="M302.4140625,365 L303.1328125,410" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip17)" />
<clipPath id="clip18"><path d="M266,361 L341,361 L341,414 L266,414 L266,361 Z" /></clipPath>
<path d="M297.9960938,401.421875 L303.1328125,410 L307.9960938,401.2617188 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip18)" />
<clipPath id="clip19"><path d="M266,361 L341,361 L341,414 L266,414 L266,361 Z" /></clipPath>
<path d="M297.9960938,401.421875 L303.1328125,410 L307.9960938,401.2617188 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip19)" />
<clipPath id="clip20"><path d="M271,676 L346,676 L346,703 L271,703 L271,676 Z" /></clipPath>
<path d="M308.3515625,680 L308.6445313,699" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip20)" />
<clipPath id="clip21"><path d="M271,676 L346,676 L346,703 L271,703 L271,676 Z" /></clipPath>
<path d="M303.5117188,690.4179688 L308.6445313,699 L313.5078125,690.265625 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip21)" />
<clipPath id="clip22"><path d="M271,676 L346,676 L346,703 L271,703 L271,676 Z" /></clipPath>
<path d="M303.5117188,690.4179688 L308.6445313,699 L313.5078125,690.265625 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip22)" />
<clipPath id="clip23"><path d="M270,560 L345,560 L345,645 L270,645 L270,560 Z" /></clipPath>
<path d="M306.4921875,564 L308.1054688,641" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip23)" />
<clipPath id="clip24"><path d="M270,560 L345,560 L345,645 L270,645 L270,560 Z" /></clipPath>
<path d="M302.9257813,632.4453125 L308.1054688,641 L312.9257813,632.2382813 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip24)" />
<clipPath id="clip25"><path d="M270,560 L345,560 L345,645 L270,645 L270,560 Z" /></clipPath>
<path d="M302.9257813,632.4453125 L308.1054688,641 L312.9257813,632.2382813 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip25)" />
<clipPath id="clip26"><path d="M588,1338 L1046,1338 L1046,1770 L588,1770 L588,1338 Z" /></clipPath>
<path d="M592,1766.2265625 L1042,1342.65625" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip26)" />
<clipPath id="clip27"><path d="M588,1338 L1046,1338 L1046,1770 L588,1770 L588,1338 Z" /></clipPath>
<path d="M1039.1210938,1352.2304688 L1042,1342.65625 L1032.265625,1344.9492188 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip27)" />
<clipPath id="clip28"><path d="M588,1338 L1046,1338 L1046,1770 L588,1770 L588,1338 Z" /></clipPath>
<path d="M1039.1210938,1352.2304688 L1042,1342.65625 L1032.265625,1344.9492188 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip28)" />
<clipPath id="clip29"><path d="M263,1792 L338,1792 L338,1846 L263,1846 L263,1792 Z" /></clipPath>
<path d="M300.4296875,1796 L300.1992188,1842" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip29)" />
<clipPath id="clip30"><path d="M263,1792 L338,1792 L338,1846 L263,1846 L263,1792 Z" /></clipPath>
<path d="M295.2421875,1833.3164063 L300.1992188,1842 L305.2421875,1833.3632813 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip30)" />
<clipPath id="clip31"><path d="M263,1792 L338,1792 L338,1846 L263,1846 L263,1792 Z" /></clipPath>
<path d="M295.2421875,1833.3164063 L300.1992188,1842 L305.2421875,1833.3632813 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip31)" />
<clipPath id="clip32"><path d="M1295,1907 L1370,1907 L1370,1955 L1295,1955 L1295,1907 Z" /></clipPath>
<path d="M1332.9140625,1911 L1333.4453125,1951" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip32)" />
<clipPath id="clip33"><path d="M1295,1907 L1370,1907 L1370,1955 L1295,1955 L1295,1907 Z" /></clipPath>
<path d="M1328.3320313,1942.40625 L1333.4453125,1951 L1338.328125,1942.2734375 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip33)" />
<clipPath id="clip34"><path d="M1295,1907 L1370,1907 L1370,1955 L1295,1955 L1295,1907 Z" /></clipPath>
<path d="M1328.3320313,1942.40625 L1333.4453125,1951 L1338.328125,1942.2734375 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip34)" />
<clipPath id="clip35"><path d="M1296,2055 L1371,2055 L1371,2122 L1296,2122 L1296,2055 Z" /></clipPath>
<path d="M1334,2059 L1334,2118" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip35)" />
<clipPath id="clip36"><path d="M1296,2055 L1371,2055 L1371,2122 L1296,2122 L1296,2055 Z" /></clipPath>
<path d="M1329,2109.3398438 L1334,2118 L1339,2109.3398438 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip36)" />
<clipPath id="clip37"><path d="M1296,2055 L1371,2055 L1371,2122 L1296,2122 L1296,2055 Z" /></clipPath>
<path d="M1329,2109.3398438 L1334,2118 L1339,2109.3398438 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip37)" />
<clipPath id="clip38"><path d="M263,1900 L338,1900 L338,1942 L263,1942 L263,1900 Z" /></clipPath>
<path d="M300,1904 L299.6171875,1938" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip38)" />
<clipPath id="clip39"><path d="M263,1900 L338,1900 L338,1942 L263,1942 L263,1900 Z" /></clipPath>
<path d="M294.7148438,1929.2851563 L299.6171875,1938 L304.7148438,1929.3984375 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip39)" />
<clipPath id="clip40"><path d="M263,1900 L338,1900 L338,1942 L263,1942 L263,1900 Z" /></clipPath>
<path d="M294.7148438,1929.2851563 L299.6171875,1938 L304.7148438,1929.3984375 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip40)" />
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 KiB

View file

@ -0,0 +1,218 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="1458" height="2526" viewBox="0 0 1458 2526">
<style type="text/css"><![CDATA[
text { font:12px Dialog; }
]]></style>
<rect x="-485" y="-485" width="2428" height="3496" style="fill:rgb(255,255,255);stroke:none" />
<clipPath id="clip1"><path d="M468,32 L867,32 L867,101 L468,101 L468,32 Z" /></clipPath>
<path d="M470,34 L470,98 L864,98 L864,34 Z" style="fill:rgb(202,221,254);stroke:none" clip-path="url(#clip1)" />
<clipPath id="clip2"><path d="M468,32 L867,32 L867,101 L468,101 L468,32 Z" /></clipPath>
<path d="M470,34 L470,98 L864,98 L864,34 Z" style="fill:none;stroke:rgb(61,83,127)" clip-path="url(#clip2)" />
<text x="503" y="71" style="font:18px Open Sans">Friendica - Contact request</text>
<image x="0" y="0" width="834" height="74" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA0IAAABKCAYAAACW5eSEAAAEYElEQVR42u3dyW+VVRjAYRKNf4BSRFwwCImEQEAs2tpbCjIoIkJLC1KMgGAISlBQDGPgKhWQWKCATG3BtiiiRGIMCw0gaQspCGUokxJKyz+AsuiGvt7WIcatq9s8T/Iubr6czdn9cr7v3G7dAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKBLi4j/NQAAAGkfQnkHrndPHGgqyam5cjE1bZ1z4GpjouZKsuOZEAIAALpUCD1fc2F6VsWFexnD58Xgov0xeevVmFR6JfJWHY2hi/dETlXT3UR101QhBAAAdIkQGrWvsShRdbl92LzD8djEszF8YVMU7WqJop0tUZiagu3NMXL1D5Fbfbl9VNWlIiEEAACkdQglKs5lJCov/pb9/tGYVHorxpfcjGm7W2L6npaYUd4aeWtuRL+ZjTFkflP0G1sZo6qbfs/+/EIPIQQAAKRvCO1pTA55a0dkL70W+WW349W9ralJRVBFa+Rvb46cVdej/+wL0XPK2XhkXEMMLF4fid3nS4QQAACQtiGUs/NcY9+RZfHMkiudr8LNKG+J4srWmLmvNcZtvBkjP7wReclr8UTxieg57lD0yV4RmSXfX00tf8gOAgAA6RlC2862Zb7dGJO3Nv/5OlxFa7y2vzVer7oTOWtvxMubf40Ri09G1pIvYumpulh25lTk7/rqfmp5LzsIAACkZwhtaWh7cf31f74LKu4MoTuRv6M5esz6OTKmnYin3zkUyxpSAbSpOp6du6Ezhgbk5ubaQQAAID1D6NPTjYn3jkT+9ttRtOt25wUJHSdChbtuRt/Zx+PJOdUxfl1NjF9dGbkLK+Kl5Lb44FRde/f+/Z+ygwAAQFqGUGJDfXLo3K0xJvlLDJp3KV7ZciuKy29FQWlD5G/6OlY01Mfcg0fizYPfxpSN+2JZ6vcL67bXp5Zn2EEAACAtQyj7k7oeOR/X3s1acCQeHncmBsxqjILN56Ow9HCsTEXPmBV7Ykb5NzH/8HedETT2o4q2xzMnD00tf9AOAgAAaRlCnadCH56c+lzyp/Y+OTtixLtNMSH5Yyw/XZuKoeroN3Fb5CzaGwWllZG7vLx90JzN8zoiyPXZAABAWodQ57dCa08UZq06dm/YG2WRveCzWHmmPsYuLY2Ja8piRUNdjFm7v23o/N2zUsse+HsNAABAWodQx+StOd49seZYSeaiL68WbKm53xFDy0/Xtk9IltU+OnzC4G5/nQQJIQAAoMuE0L8Cp+PPUnsNHD06t3vv3h23w2X8N4I65g/3mXiK17zpCgAAAABJRU5ErkJggg==" /><clipPath id="clip3"><path d="M1006,236 L1266,236 L1266,278 L1006,278 L1006,236 Z" /></clipPath>
<path d="M1016,238 C1011.5820313,238 1008,241.5820313 1008,246 L1008,267 C1008,271.4179688 1011.5820313,275 1016,275 L1255,275 C1259.4179688,275 1263,271.4179688 1263,267 L1263,246 C1263,241.5820313 1259.4179688,238 1255,238 Z" style="fill:rgb(0,131,191);stroke:none" clip-path="url(#clip3)" />
<clipPath id="clip4"><path d="M1006,236 L1266,236 L1266,278 L1006,278 L1006,236 Z" /></clipPath>
<path d="M1016,238 C1011.5820313,238 1008,241.5820313 1008,246 L1008,267 C1008,271.4179688 1011.5820313,275 1016,275 L1255,275 C1259.4179688,275 1263,271.4179688 1263,267 L1263,246 C1263,241.5820313 1259.4179688,238 1255,238 Z" style="fill:none;stroke:rgb(0,131,191)" clip-path="url(#clip4)" />
<text x="1021" y="259" style="font:13px Tahoma">karenn@karenhompage.com</text>
<image x="0" y="0" width="1252" height="265" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABOQAAAEJCAYAAAA0I/jnAAAIjElEQVR42u3d3ZPNdRzAcTMZf0Ah6cJDzGQMQ6Jse9aSh5LErl2ymhCNUUZRGo/DkQ2ZFos87S7ZVVIm0zQuapBhmSXWw3oqg13/gHKxN/bTOac0xt1hpqvXa+Zzceacz8338j2/3/m2agUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA/ysiHmkAAAAAgCw8GNjyd19pm9jdUJpbc/Fcapozs/tSfaLmYjL9nSAHAAAAAI/g/rj2cs3ZCQMrz95p12969CreGWPWX4rRZRcjf/GB6DNnW+TuaridqG4YJ8gBAAAAwEO6F9YG76gvTuy60NJ3+r54atSp6DerIYq3NEbx5sYoSk3hxhsxaMnPkVd9oWXwrvPFghwAAAAAPIR0VEtUnm6XqDr3Z87HB2J02fUYUXotxm9tjAnbGmNiRVPkL70aXSfVR+8ZDdF1WFUMrm74K+ers+0FOQAAAADIUibIbatP9n5vU+TMuxwF5Tfjze1NqWmMiZVNUbDxRuQuvhLdppyNDmNPxRPD66JHycpIbD1TKsgBAAAAQJbSUS138+n6LoPK44W5FzOvqE6saIySqqaYtKMphq++FoOWX4385OV4puRwdBi+NzrnLIz+pT9dSq23cYIAAAAAkIVMkNtwqrn/+/UxZv2Nf15TrWyKt3Y2xdu7bkXusqvx+to/YsCcIzFw7tcx7/ixmH/yeBRs+fZuar2jEwQAAACALGSC3Lq65ldXXvnvf+NKMkHuVhRsuhHtJ/8W7cYfjuc/2Bvz645HwZrqeHHaqkyU656Xl+cEAQAAACALmSD3xYn6xEf7o2DjzSjecjNzkUP6CbmiLdeiy5RD8ezU6hixoiZGLKmKvFmV8VpyQ3xy/FhL227dnnOCAAAAAJCFzKUOq2qTfaatj6HJ36Pn9PPxxrrrUVJxPQrL6qJgzXexsK42pu3ZH+/u+SHGrt4R81OfX1mxsTa13s4JAgAAAEAW0kEu5/Nj7XM/O3p74Mz98fjwk9F9cn0Urj0TRWX7YlFdbQxduC0mVnwfM/b9mIlxwz6tbH66/5g+qfXWThAAAAAAspAOcpmn5JYfGfdS8teWzrmbYsCHDTEy+UssOHE0isqqo+uoDZE7e3sUllVF3oKKlp5T105PrbZO7wEAAAAAWbgX5DL/JbfscNHAxQfv9H2nPHJmfhmLTtbGsHllMWppeSysOxZDl+1s7jNj6+TU2mP3dgAAAACALNwf5NKTv/RQ28TSg6X9Z39zqXBdzd10lFtw4mjLyGT50Sf7jezV6t8n4wQ5AAAAAHgIDwa5+0Jbm9R07DFkSF7bTp3St6mmL3Bo/eDv/gYwZniKtpg81wAAAABJRU5ErkJggg==" /><clipPath id="clip5"><path d="M235,234 L425,234 L425,276 L235,276 L235,234 Z" /></clipPath>
<path d="M245,236 C240.5820313,236 237,239.5820313 237,244 L237,265 C237,269.4179688 240.5820313,273 245,273 L414,273 C418.4179688,273 422,269.4179688 422,265 L422,244 C422,239.5820313 418.4179688,236 414,236 Z" style="fill:rgb(0,131,191);stroke:none" clip-path="url(#clip5)" />
<clipPath id="clip6"><path d="M235,234 L425,234 L425,276 L235,276 L235,234 Z" /></clipPath>
<path d="M245,236 C240.5820313,236 237,239.5820313 237,244 L237,265 C237,269.4179688 240.5820313,273 245,273 L414,273 C418.4179688,273 422,269.4179688 422,265 L422,244 C422,239.5820313 418.4179688,236 414,236 Z" style="fill:none;stroke:rgb(0,131,191)" clip-path="url(#clip6)" />
<text x="251" y="257" style="font:13px Tahoma">bob@example.com</text>
<image x="0" y="0" width="411" height="263" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZsAAAEHCAYAAAB4POvAAAAFDElEQVR42u3c3ZOOZRzAcTM1/QG1K+nAS8xkDEOibPusl1glFYslqwnRGGUUpWExPLKhpsUir7tkV0mZTNM4qEHGLrPELtaiDHb9A8rBnthf9z5NTdPR4rDPZ+Y6euY6uU6+87vv67k7dAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+H+LiPtaAHDXsRm693JWam9DSW7VxXPJasmsvY11qaqL6bbfxAaA+4rN81X1kweX19/OHjAr+hTujrEbGuOV0osxdOmh6Dd/e+TuabiVqmyYIDYA3FNshu2qK0ztudDaf9aBeGzM6RgwtyEKtzZF4ZammJis8Zuux5BlP0Ze5YXWYXvOF4oNAHcVm1T5mexUxbnfcz44lEwy12JUydWYtK0pJm9viik7m2Po8ivRfWpd9J3dEN1HVsSwyoY/cr6o7yg2ALQ/Ntvr0n3f3hw5Cy9FQdmNeG1Hc7KS0JQ3R0Ey0eQuvRw9ptdHp3Gn45H82uhVtDpS286WiA0A7Y5N7pYzdd2GlMUzCy5mHptN2dkURRXNMXVXc+SvvRpDVl6JoelL8UTR0eiUvz+65hTHwJIfGpPtDzlBANoXm42nWwa+UxdjN1z/69FZMtG8vrs53thzM3JXXImX1/0Wg+Yfi8ELvoyFJ6pj0akTUbD16zvJ9s5OEID2xWZ9bcuLqy//856mKBObm1Gw+Xp0nPZLZE86Gk+/uz8W1SaR+bQynp25JhOcnnl5eU4QgPbF5rOTdan3D0bBphtRuPVG5lJA22QzcevV6Db9SDw5ozJGraqKUcsqIm9uebyU3hgfnqhuzerR4yknCEC7YpNaU5PuN3NDjEj/Gr1nnY9X11+Lop3XYnxpbTLJfBPFtTUxc9/BeGvfdzFu7a5kwqmJF1Ztqkm2ZztBANoVm5xPqjvmfnz81uA5B+Ph/FPRc1pdjF93NiaWHoglSVhGFG9Ppp1vY/aB7zOhGflRecvjA8f2S7Y/6AQBaFdsMtPNymMTnkv/3No1d3MMeq8hRqd/isUnjyfBqYzuYzZG7rwdyaRTEXmLd7b2nrFuVltoXH0G4K5ik3l3s+LoxMFLD9/u/2ZZ5Mz5PJacSqaYhaUxZnlZFNdWx4gVu1v6zd42Ldn2gC8IAHBPscl8iHP5kazU8sMlA+d91Th+fdWdtuAkE07r6HTZ8UcHjO7z90QjNgDcc2z+FZG2P2x27jV8eF5Wly5tt86y/xuatvUnRFJ4iu/wPU8AAAAASUVORK5CYII=" /><clipPath id="clip7"><path d="M953,363 L1344,363 L1344,451 L953,451 L953,363 Z" /></clipPath>
<path d="M962,364 C957.5820313,364 954,367.5820313 954,372 L954,441 C954,445.4179688 957.5820313,449 962,449 L1334,449 C1338.4179688,449 1342,445.4179688 1342,441 L1342,372 C1342,367.5820313 1338.4179688,364 1334,364 Z" style="fill:rgb(127,127,127);stroke:none" clip-path="url(#clip7)" />
<text x="1073" y="386" style="font:13px Open Sans"> dfrn_request.php</text>
<text x="1146" y="409" style="font:13px Open Sans">-</text>
<text x="968" y="432" style="font:13px Open Sans">https://karenhompage/dfrn_request/karin</text>
<clipPath id="clip8"><path d="M890,808 L1416,808 L1416,1448 L890,1448 L890,808 Z" /></clipPath>
<path d="M899,809 C894.5820313,809 891,812.5820313 891,817 L891,1438 C891,1442.4179688 894.5820313,1446 899,1446 L1406,1446 C1410.4179688,1446 1414,1442.4179688 1414,1438 L1414,817 C1414,812.5820313 1410.4179688,809 1406,809 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip8)" />
<text x="904" y="831" style="font:13px Open Sans">dfrn_request_post - SCENARIO 1</text>
<text x="904" y="854" style="font:13px Open Sans">----------------------------------------------</text>
<text x="904" y="900" style="font:13px Open Sans">- Cleanup old introductions that remain blocked + Cleanup </text>
<text x="904" y="923" style="font:13px Open Sans">any old email intros - which will have a greater lifetime</text>
<text x="904" y="969" style="font:13px Open Sans">- probe_url Bobs posted dfrn_url and get the network with </text>
<text x="904" y="992" style="font:13px Open Sans">webfinger_dfrn</text>
<text x="904" y="1038" style="font:13px Open Sans">- try to select all contact data of Bob (contact table) by the </text>
<text x="904" y="1061" style="font:13px Open Sans">url ($_POST['dfrn_url] and profile uid ($a-&gt;profile['uid']) </text>
<text x="904" y="1084" style="font:13px Open Sans">where self = 0 to look if this contact is already there (if </text>
<text x="904" y="1107" style="font:13px Open Sans">issued-id or rel is already available return here because it </text>
<text x="904" y="1130" style="font:13px Open Sans">seems that we are already connected)</text>
<text x="904" y="1176" style="font:13px Open Sans">- create a issued-id with $issued_id = random_string();</text>
<text x="904" y="1222" style="font:13px Open Sans">- if we already found a contact record above update the </text>
<text x="904" y="1245" style="font:13px Open Sans">issued-id with the one we have created</text>
<text x="904" y="1291" style="font:13px Open Sans">- otherwise if Bob is not already in the contact table scrape </text>
<text x="904" y="1314" style="font:13px Open Sans">Bobs profile and create a new contact with this data (e.g. </text>
<text x="904" y="1337" style="font:13px Open Sans">the scraped issued-id / profiles pubkey becomes contacts </text>
<text x="904" y="1360" style="font:13px Open Sans">site-pubkey) in the contact table (blocked = 1, pending = 1)</text>
<text x="904" y="1406" style="font:13px Open Sans">- select this created contact from contact table and create </text>
<text x="904" y="1429" style="font:13px Open Sans">an intro in the intro table (blocked = 1)</text>
<clipPath id="clip9"><path d="M925,693 L1374,693 L1374,735 L925,735 L925,693 Z" /></clipPath>
<path d="M934,694 C929.5820313,694 926,697.5820313 926,702 L926,725 C926,729.4179688 929.5820313,733 934,733 L1364,733 C1368.4179688,733 1372,729.4179688 1372,725 L1372,702 C1372,697.5820313 1368.4179688,694 1364,694 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip9)" />
<text x="939" y="716" style="font:13px Open Sans">$_POST['dfrn_url'] is transmited and is Bobs profile url</text>
<clipPath id="clip10"><path d="M888,1557 L1418,1557 L1418,1852 L888,1852 L888,1557 Z" /></clipPath>
<path d="M897,1558 C892.5820313,1558 889,1561.5820313 889,1566 L889,1842 C889,1846.4179688 892.5820313,1850 897,1850 L1408,1850 C1412.4179688,1850 1416,1846.4179688 1416,1842 L1416,1566 C1416,1561.5820313 1412.4179688,1558 1408,1558 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip10)" />
<text x="902" y="1580" style="font:13px Open Sans">redirect to Bobs request page</text>
<text x="902" y="1626" style="font:13px Open Sans">goaway($parms['dfrn-request'] . "?dfrn_url=$dfrn_url"</text>
<text x="902" y="1649" style="font:13px Open Sans"> . '&amp;dfrn_version=' . </text>
<text x="902" y="1672" style="font:13px Open Sans">DFRN_PROTOCOL_VERSION</text>
<text x="902" y="1695" style="font:13px Open Sans"> . '&amp;confirm_key=' . $hash</text>
<text x="902" y="1718" style="font:13px Open Sans"> . (($aes_allow) ? "&amp;aes_allow=1" : "")</text>
<text x="902" y="1741" style="font:13px Open Sans"> );</text>
<text x="902" y="1787" style="font:13px Open Sans">http://example.com/dfrn_request/bob?dfrn_url=6874747</text>
<text x="902" y="1810" style="font:13px Open Sans">03a2f2f6b6172656e686f6d65706167652e636f6d2f70726f66</text>
<text x="902" y="1833" style="font:13px Open Sans">696c652f6b6172656e&amp;aes_allow=1&amp;confirm_key=”ABC123”</text>
<clipPath id="clip11"><path d="M287,1180 L464,1180 L464,1222 L287,1222 L287,1180 Z" /></clipPath>
<path d="M296,1181 C291.5820313,1181 288,1184.5820313 288,1189 L288,1212 C288,1216.4179688 291.5820313,1220 296,1220 L454,1220 C458.4179688,1220 462,1216.4179688 462,1212 L462,1189 C462,1184.5820313 458.4179688,1181 454,1181 Z" style="fill:rgb(127,127,127);stroke:none" clip-path="url(#clip11)" />
<text x="302" y="1203" style="font:13px Open Sans">dfrn_request.php</text>
<clipPath id="clip12"><path d="M134,1399 L624,1399 L624,2315 L134,2315 L134,1399 Z" /></clipPath>
<path d="M143,1400 C138.5820313,1400 135,1403.5820313 135,1408 L135,2305 C135,2309.4179688 138.5820313,2313 143,2313 L614,2313 C618.4179688,2313 622,2309.4179688 622,2305 L622,1408 C622,1403.5820313 618.4179688,1400 614,1400 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip12)" />
<text x="149" y="1422" style="font:13px Open Sans">http://example.com/dfrn_request/bob?</text>
<text x="149" y="1445" style="font:13px Open Sans">dfrn_url=</text>
<text x="149" y="1468" style="font:13px Open Sans">687474703a2f2f6b6172656e686f6d65706167652e</text>
<text x="149" y="1491" style="font:13px Open Sans">636f6d2f70726f66696c652f6b6172656e&amp;aes_allow=1&amp;</text>
<text x="149" y="1514" style="font:13px Open Sans">confirm_key=”ABC123”</text>
<text x="149" y="1560" style="font:13px Open Sans">dfrn_request_content()</text>
<text x="149" y="1583" style="font:13px Open Sans">------------------------------------------</text>
<text x="149" y="1606" style="font:13px Open Sans">- copy the posted parameters (dfrn_url, key and so on) </text>
<text x="149" y="1629" style="font:13px Open Sans">to $_POST</text>
<text x="149" y="1698" style="font:13px Open Sans"> dfrn_request_post() - SCENARIO 2 </text>
<text x="149" y="1721" style="font:13px Open Sans">($_POST['localconfirm'] == 1)</text>
<text x="149" y="1744" style="font:13px Open Sans">-----------------------------------------------------------------------</text>
<text x="149" y="1767" style="font:13px Open Sans">- if(local_user() &amp;&amp; ($a-&gt;user['nickname'] == $a-</text>
<text x="149" y="1790" style="font:13px Open Sans">&gt;argv[1]) &amp;&amp; (x($_POST,'dfrn_url')))</text>
<text x="149" y="1813" style="font:13px Open Sans">-&gt;</text>
<text x="149" y="1859" style="font:13px Open Sans">- $confirm_key comes from $_POST</text>
<text x="149" y="1905" style="font:13px Open Sans">- get data for contact Karen (contact table) by </text>
<text x="149" y="1928" style="font:13px Open Sans">$dfrn_url (contacts url and nurl) -&gt; if contact Karen </text>
<text x="149" y="1951" style="font:13px Open Sans">does already have a dfrn-id Bob seems already </text>
<text x="149" y="1974" style="font:13px Open Sans">connected with Karen (abort here)</text>
<text x="149" y="2020" style="font:13px Open Sans">- if this contact (Karen) isn't available in the contact </text>
<text x="149" y="2043" style="font:13px Open Sans">tabel, scrape Karens profile page to pick up the dfrn </text>
<text x="149" y="2066" style="font:13px Open Sans">links, key, fn, and photo</text>
<text x="149" y="2112" style="font:13px Open Sans">- create a contact for Karen in the contact table with </text>
<text x="149" y="2135" style="font:13px Open Sans">the scraped data with blocked = 1 and pending = 1 </text>
<text x="149" y="2158" style="font:13px Open Sans">(Karens pubkey becomes the contact site-pubkey)</text>
<text x="149" y="2204" style="font:13px Open Sans">- fetch_url($dfrn_request . '?confirm_key=' . </text>
<text x="149" y="2227" style="font:13px Open Sans">$confirm_key);</text>
<text x="149" y="2273" style="font:13px Open Sans">- fetch_url(http://karenhomepage.com/dfrn_request?</text>
<text x="149" y="2296" style="font:13px Open Sans">confirm_key=”ABC123”)</text>
<clipPath id="clip13"><path d="M1061,2027 L1238,2027 L1238,2069 L1061,2069 L1061,2027 Z" /></clipPath>
<path d="M1070,2028 C1065.5820313,2028 1062,2031.5820313 1062,2036 L1062,2059 C1062,2063.4179688 1065.5820313,2067 1070,2067 L1228,2067 C1232.4179688,2067 1236,2063.4179688 1236,2059 L1236,2036 C1236,2031.5820313 1232.4179688,2028 1228,2028 Z" style="fill:rgb(127,127,127);stroke:none" clip-path="url(#clip13)" />
<text x="1075" y="2050" style="font:13px Open Sans">dfrn_request.php</text>
<clipPath id="clip14"><path d="M857,2205 L1444,2205 L1444,2454 L857,2454 L857,2205 Z" /></clipPath>
<path d="M866,2206 C861.5820313,2206 858,2209.5820313 858,2214 L858,2444 C858,2448.4179688 861.5820313,2452 866,2452 L1434,2452 C1438.4179688,2452 1442,2448.4179688 1442,2444 L1442,2214 C1442,2209.5820313 1438.4179688,2206 1434,2206 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip14)" />
<text x="871" y="2228" style="font:13px Open Sans">http://karenhomepage.com/dfrn_request?confirm_key=”ABC123”</text>
<text x="871" y="2274" style="font:13px Open Sans">dfrn_request_content() -</text>
<text x="871" y="2297" style="font:13px Open Sans">(elseif((x($_GET,'confirm_key')) &amp;&amp; strlen($_GET['confirm_key'])) )</text>
<text x="871" y="2320" style="font:13px Open Sans">----------------------------------------------------------------------------------------------</text>
<text x="871" y="2366" style="font:13px Open Sans">- select the intro by confirm_key (intro table) -&gt; get contact id</text>
<text x="871" y="2389" style="font:13px Open Sans">- use the intro contact id to get the contact in the contact table</text>
<text x="871" y="2412" style="font:13px Open Sans">- build a notification package ( notification(array.....) )</text>
<text x="871" y="2435" style="font:13px Open Sans">- update intro in intro table (blocked = 0)</text>
<clipPath id="clip15"><path d="M227,2424 L531,2424 L531,2512 L227,2512 L227,2424 Z" /></clipPath>
<path d="M236,2425 C231.5820313,2425 228,2428.5820313 228,2433 L228,2502 C228,2506.4179688 231.5820313,2510 236,2510 L521,2510 C525.4179688,2510 529,2506.4179688 529,2502 L529,2433 C529,2428.5820313 525.4179688,2425 521,2425 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip15)" />
<text x="242" y="2447" style="font:13px Open Sans">Bob stays on his Friendica server</text>
<text x="242" y="2493" style="font:13px Open Sans">- goaway($forwardurl);</text>
<clipPath id="clip16"><path d="M14,14 L370,14 L370,125 L14,125 L14,14 Z" /></clipPath>
<path d="M23,15 C18.5820313,15 15,18.5820313 15,23 L15,115 C15,119.4179688 18.5820313,123 23,123 L360,123 C364.4179688,123 368,119.4179688 368,115 L368,23 C368,18.5820313 364.4179688,15 360,15 Z" style="fill:rgb(255,255,255);stroke:none" clip-path="url(#clip16)" />
<text x="29" y="38" style="font:13px Open Sans">Note: this chart respects only dfrn </text>
<text x="29" y="61" style="font:13px Open Sans">contacts and focuses on key exchange </text>
<text x="29" y="83" style="font:13px Open Sans">(for other areas it might be very </text>
<text x="29" y="106" style="font:13px Open Sans">incomplete)</text>
<clipPath id="clip17"><path d="M871,491 L1431,491 L1431,648 L871,648 L871,491 Z" /></clipPath>
<path d="M880,492 C875.5820313,492 872,495.5820313 872,500 L872,638 C872,642.4179688 875.5820313,646 880,646 L1421,646 C1425.4179688,646 1429,642.4179688 1429,638 L1429,500 C1429,495.5820313 1425.4179688,492 1421,492 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip17)" />
<text x="885" y="514" style="font:13px Open Sans">dfrn_request_content()</text>
<text x="885" y="537" style="font:13px Open Sans">------------------------------------</text>
<text x="885" y="583" style="font:13px Open Sans">- the page for the on Katrins server where Bob do a connection </text>
<text x="885" y="606" style="font:13px Open Sans">request</text>
<text x="885" y="629" style="font:13px Open Sans">- the form transmit on submit Bobs profile url as dfrn_url</text>
<clipPath id="clip18"><path d="M402,267 L974,267 L974,313 L402,313 L402,267 Z" /></clipPath>
<path d="M422,271.734375 L954,370.5703125" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip18)" />
<clipPath id="clip19"><path d="M402,329 L974,329 L974,377 L402,377 L402,329 Z" /></clipPath>
<path d="M422,271.734375 L954,370.5703125" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip19)" />
<clipPath id="clip20"><path d="M402,311 L974,311 L974,331 L402,331 L402,311 Z" /></clipPath>
<path d="M422,271.734375 L954,370.5703125" style="fill:none;stroke:rgb(182,44,37);opacity:0.09803921568627451;stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip20)" />
<clipPath id="clip21"><path d="M402,267 L974,267 L974,377 L402,377 L402,267 Z" /></clipPath>
<path d="M944.5703125,373.9023438 L954,370.5703125 L946.3984375,364.0703125 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip21)" />
<clipPath id="clip22"><path d="M402,267 L974,267 L974,377 L402,377 L402,267 Z" /></clipPath>
<path d="M944.5703125,373.9023438 L954,370.5703125 L946.3984375,364.0703125 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip22)" />
<text x="405" y="323" style="font:10px Georgia">bob wants to make a request and is directed from karens profile page to karens dfrn-request page</text>
<clipPath id="clip23"><path d="M1111,729 L1186,729 L1186,813 L1111,813 L1111,729 Z" /></clipPath>
<path d="M1149.1875,733 L1149.4335938,763.3984375 L1149.5585938,778.6015625 L1149.8046875,809" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip23)" />
<clipPath id="clip24"><path d="M1111,729 L1186,729 L1186,813 L1111,813 L1111,729 Z" /></clipPath>
<path d="M1144.734375,800.3789063 L1149.8046875,809 L1154.734375,800.3007813 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip24)" />
<clipPath id="clip25"><path d="M1111,729 L1186,729 L1186,813 L1111,813 L1111,729 Z" /></clipPath>
<path d="M1144.734375,800.3789063 L1149.8046875,809 L1154.734375,800.3007813 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip25)" />
<clipPath id="clip26"><path d="M1115,1442 L1190,1442 L1190,1562 L1115,1562 L1115,1442 Z" /></clipPath>
<path d="M1152.7773438,1446 L1152.625,1558" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip26)" />
<clipPath id="clip27"><path d="M1115,1442 L1190,1442 L1190,1562 L1115,1562 L1115,1442 Z" /></clipPath>
<path d="M1147.6367188,1549.3320313 L1152.625,1558 L1157.6367188,1549.3476563 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip27)" />
<clipPath id="clip28"><path d="M1115,1442 L1190,1442 L1190,1562 L1115,1562 L1115,1442 Z" /></clipPath>
<path d="M1147.6367188,1549.3320313 L1152.625,1558 L1157.6367188,1549.3476563 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip28)" />
<clipPath id="clip29"><path d="M458,1201 L893,1201 L893,1375 L458,1375 L458,1201 Z" /></clipPath>
<path d="M889,1561.9492188 L462,1205.3515625" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip29)" />
<clipPath id="clip30"><path d="M458,1391 L893,1391 L893,1565 L458,1565 L458,1391 Z" /></clipPath>
<path d="M889,1561.9492188 L462,1205.3515625" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip30)" />
<clipPath id="clip31"><path d="M458,1373 L575,1373 L575,1393 L458,1393 L458,1373 Z" /></clipPath>
<path d="M889,1561.9492188 L462,1205.3515625" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip31)" />
<clipPath id="clip32"><path d="M776,1373 L893,1373 L893,1393 L776,1393 L776,1373 Z" /></clipPath>
<path d="M889,1561.9492188 L462,1205.3515625" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip32)" />
<clipPath id="clip33"><path d="M573,1373 L778,1373 L778,1393 L573,1393 L573,1373 Z" /></clipPath>
<path d="M889,1561.9492188 L462,1205.3515625" style="fill:none;stroke:rgb(182,44,37);opacity:0.09803921568627451;stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip33)" />
<clipPath id="clip34"><path d="M458,1201 L893,1201 L893,1565 L458,1565 L458,1201 Z" /></clipPath>
<path d="M471.8515625,1207.0664063 L462,1205.3515625 L465.4414063,1214.7421875 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip34)" />
<clipPath id="clip35"><path d="M458,1201 L893,1201 L893,1565 L458,1565 L458,1201 Z" /></clipPath>
<path d="M471.8515625,1207.0664063 L462,1205.3515625 L465.4414063,1214.7421875 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip35)" />
<text x="576" y="1385" style="font:10px Georgia">redirict to bobs dfrn_request page</text>
<clipPath id="clip36"><path d="M339,1216 L414,1216 L414,1404 L339,1404 L339,1216 Z" /></clipPath>
<path d="M375.1171875,1220 L376.0625,1400" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip36)" />
<clipPath id="clip37"><path d="M339,1216 L414,1216 L414,1404 L339,1404 L339,1216 Z" /></clipPath>
<path d="M371.015625,1391.3671875 L376.0625,1400 L381.015625,1391.3125 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip37)" />
<clipPath id="clip38"><path d="M339,1216 L414,1216 L414,1404 L339,1404 L339,1216 Z" /></clipPath>
<path d="M371.015625,1391.3671875 L376.0625,1400 L381.015625,1391.3125 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip38)" />
<clipPath id="clip39"><path d="M618,2024 L1072,2024 L1072,2158 L618,2158 L618,2024 Z" /></clipPath>
<path d="M622,2305.015625 L1068.1992188,2028" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip39)" />
<clipPath id="clip40"><path d="M618,2174 L1072,2174 L1072,2309 L618,2309 L618,2174 Z" /></clipPath>
<path d="M622,2305.015625 L1068.1992188,2028" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip40)" />
<clipPath id="clip41"><path d="M618,2156 L650,2156 L650,2176 L618,2176 L618,2156 Z" /></clipPath>
<path d="M622,2305.015625 L1068.1992188,2028" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip41)" />
<clipPath id="clip42"><path d="M1041,2156 L1072,2156 L1072,2176 L1041,2176 L1041,2156 Z" /></clipPath>
<path d="M622,2305.015625 L1068.1992188,2028" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip42)" />
<clipPath id="clip43"><path d="M648,2156 L1043,2156 L1043,2176 L648,2176 L648,2156 Z" /></clipPath>
<path d="M622,2305.015625 L1068.1992188,2028" style="fill:none;stroke:rgb(182,44,37);opacity:0.09803921568627451;stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip43)" />
<clipPath id="clip44"><path d="M618,2024 L1072,2024 L1072,2309 L618,2309 L618,2024 Z" /></clipPath>
<path d="M1063.4804688,2036.8164063 L1068.1992188,2028 L1058.2070313,2028.3203125 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip44)" />
<clipPath id="clip45"><path d="M618,2024 L1072,2024 L1072,2309 L618,2309 L618,2024 Z" /></clipPath>
<path d="M1063.4804688,2036.8164063 L1068.1992188,2028 L1058.2070313,2028.3203125 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip45)" />
<text x="651" y="2168" style="font:10px Georgia">http://karenhomepage.com/dfrn_request?confirm_key=”ABC123”</text>
<clipPath id="clip46"><path d="M1111,2063 L1186,2063 L1186,2210 L1111,2210 L1111,2063 Z" /></clipPath>
<path d="M1149.0703125,2067 L1149.5625,2206" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip46)" />
<clipPath id="clip47"><path d="M1111,2063 L1186,2063 L1186,2210 L1111,2210 L1111,2063 Z" /></clipPath>
<path d="M1144.53125,2197.359375 L1149.5625,2206 L1154.53125,2197.3203125 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip47)" />
<clipPath id="clip48"><path d="M1111,2063 L1186,2063 L1186,2210 L1111,2210 L1111,2063 Z" /></clipPath>
<path d="M1144.53125,2197.359375 L1149.5625,2206 L1154.53125,2197.3203125 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip48)" />
<clipPath id="clip49"><path d="M342,2309 L417,2309 L417,2429 L342,2429 L342,2309 Z" /></clipPath>
<path d="M378.875,2313 L378.5351563,2425" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip49)" />
<clipPath id="clip50"><path d="M342,2309 L417,2309 L417,2429 L342,2429 L342,2309 Z" /></clipPath>
<path d="M373.5625,2416.3242188 L378.5351563,2425 L383.5625,2416.3554688 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip50)" />
<clipPath id="clip51"><path d="M342,2309 L417,2309 L417,2429 L342,2429 L342,2309 Z" /></clipPath>
<path d="M373.5625,2416.3242188 L378.5351563,2425 L383.5625,2416.3554688 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip51)" />
<clipPath id="clip52"><path d="M1111,445 L1186,445 L1186,496 L1111,496 L1111,445 Z" /></clipPath>
<path d="M1148.7851563,449 L1149.3125,492" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip52)" />
<clipPath id="clip53"><path d="M1111,445 L1186,445 L1186,496 L1111,496 L1111,445 Z" /></clipPath>
<path d="M1144.2070313,483.4023438 L1149.3125,492 L1154.2070313,483.2773438 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip53)" />
<clipPath id="clip54"><path d="M1111,445 L1186,445 L1186,496 L1111,496 L1111,445 Z" /></clipPath>
<path d="M1144.2070313,483.4023438 L1149.3125,492 L1154.2070313,483.2773438 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip54)" />
<clipPath id="clip55"><path d="M1026,642 L1272,642 L1272,662 L1026,662 L1026,642 Z" /></clipPath>
<path d="M1149.703125,646 L1149.2695313,694" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip55)" />
<clipPath id="clip56"><path d="M1026,678 L1272,678 L1272,698 L1026,698 L1026,678 Z" /></clipPath>
<path d="M1149.703125,646 L1149.2695313,694" style="fill:none;stroke:rgb(182,44,37);stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip56)" />
<clipPath id="clip57"><path d="M1026,660 L1272,660 L1272,680 L1026,680 L1026,660 Z" /></clipPath>
<path d="M1149.703125,646 L1149.2695313,694" style="fill:none;stroke:rgb(182,44,37);opacity:0.09803921568627451;stroke-width:3;stroke-dasharray:18,9;stroke-dashoffset:0" clip-path="url(#clip57)" />
<clipPath id="clip58"><path d="M1026,642 L1272,642 L1272,698 L1026,698 L1026,642 Z" /></clipPath>
<path d="M1144.3476563,685.296875 L1149.2695313,694 L1154.3476563,685.3867188 Z" style="fill:rgb(182,44,37);stroke:none" clip-path="url(#clip58)" />
<clipPath id="clip59"><path d="M1026,642 L1272,642 L1272,698 L1026,698 L1026,642 Z" /></clipPath>
<path d="M1144.3476563,685.296875 L1149.2695313,694 L1154.3476563,685.3867188 Z" style="fill:none;stroke:rgb(182,44,37);stroke-width:3" clip-path="url(#clip59)" />
<text x="1029" y="672" style="font:10px Georgia">Bob fills request form and presses submit</text>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB

View file

@ -1,6 +1,6 @@
<?php
define('UPDATE_VERSION' , 1208);
define('UPDATE_VERSION' , 1209);
/**
*

6
util/convert_innodb.sql Normal file
View file

@ -0,0 +1,6 @@
# script to convert tables from MyISAM to InnoDB
# change the %PLACEHOLDER% to the actual name of your Friendica DB
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
FROM information_schema.tables
WHERE engine = 'MyISAM' AND `table_schema` = '%PLACEHOLDER%';

101
util/daemon.php Normal file
View file

@ -0,0 +1,101 @@
<?php
/**
* @file util/daemon.php
* @brief Run the poller from a daemon.
*
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
*/
function shutdown() {
posix_kill(posix_getpid(), SIGHUP);
}
if (in_array("start", $_SERVER["argv"])) {
$mode = "start";
}
if (in_array("stop", $_SERVER["argv"])) {
$mode = "stop";
}
if (in_array("status", $_SERVER["argv"])) {
$mode = "status";
}
if (!isset($mode)) {
die("Please use either 'start', 'stop' or 'status'.\n");
}
@include(".htconfig.php");
if (!isset($pidfile)) {
die('Please specify a pid file in the variable $pidfile in the .htconfig.php. For example:'."\n".
'$pidfile = "/path/to/daemon.pid";'."\n");
}
if (in_array($mode, array("stop", "status"))) {
$pid = @file_get_contents($pidfile);
if (!$pid) {
die("Pidfile wasn't found. Is the daemon running?\n");
}
}
if ($mode == "status") {
if (posix_kill($pid, 0)) {
die("Daemon process $pid is running.\n");
}
unlink($pidfile);
die("Daemon process $pid isn't running.\n");
}
if ($mode == "stop") {
posix_kill($pid, SIGTERM);
unlink($pidfile);
die("Worker daemon process $pid was killed.\n");
}
echo "Starting worker daemon.\n";
if (isset($a->config['php_path'])) {
$php = $a->config['php_path'];
} else {
$php = "php";
}
// Switch over to daemon mode.
if ($pid = pcntl_fork())
return; // Parent
fclose(STDIN); // Close all of the standard
fclose(STDOUT); // file descriptors as we
fclose(STDERR); // are running as a daemon.
register_shutdown_function('shutdown');
if (posix_setsid() < 0)
return;
if ($pid = pcntl_fork())
return; // Parent
$pid = getmypid();
file_put_contents($pidfile, $pid);
// Now running as a daemon.
while (true) {
// Just to be sure that this script really runs endlessly
set_time_limit(0);
// Call the poller
$cmdline = $php.' include/poller.php';
exec($cmdline);
// Now sleep for 5 minutes
sleep(300);
}
?>

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-10 15:43+0100\n"
"POT-Creation-Date: 2016-12-06 08:42+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -18,1579 +18,87 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#: include/contact_widgets.php:6
msgid "Add New Contact"
#: boot.php:970
msgid "Delete this item?"
msgstr ""
#: include/contact_widgets.php:7
msgid "Enter address or web location"
#: boot.php:971 mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719
msgid "Comment"
msgstr ""
#: include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
#: include/contact_widgets.php:10 include/identity.php:218
#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
#: mod/suggest.php:101
msgid "Connect"
msgstr ""
#: include/contact_widgets.php:24
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
#: include/contact_widgets.php:30
msgid "Find People"
msgstr ""
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr ""
#: include/contact_widgets.php:32 include/conversation.php:981
#: include/Contact.php:347 mod/follow.php:103 mod/allfriends.php:66
#: mod/contacts.php:602 mod/dirfind.php:204 mod/match.php:72
#: mod/suggest.php:83
msgid "Connect/Follow"
msgstr ""
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: include/contact_widgets.php:34 mod/contacts.php:798 mod/directory.php:204
msgid "Find"
msgstr ""
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527
msgid "Friend Suggestions"
msgstr ""
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
#: view/theme/diabook/theme.php:526
msgid "Similar Interests"
msgstr ""
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr ""
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
#: view/theme/diabook/theme.php:528
msgid "Invite Friends"
msgstr ""
#: include/contact_widgets.php:108
msgid "Networks"
msgstr ""
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr ""
#: include/contact_widgets.php:141 include/features.php:103
msgid "Saved Folders"
msgstr ""
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr ""
#: include/contact_widgets.php:173
msgid "Categories"
msgstr ""
#: include/contact_widgets.php:237
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2188 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260 boot.php:970
#: boot.php:972 include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2241 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260
msgid "show more"
msgstr ""
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
#: view/theme/vier/theme.php:255
msgid "Forums"
#: boot.php:973
msgid "show fewer"
msgstr ""
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr ""
#: include/profile_selectors.php:6
msgid "Male"
msgstr ""
#: include/profile_selectors.php:6
msgid "Female"
msgstr ""
#: include/profile_selectors.php:6
msgid "Currently Male"
msgstr ""
#: include/profile_selectors.php:6
msgid "Currently Female"
msgstr ""
#: include/profile_selectors.php:6
msgid "Mostly Male"
msgstr ""
#: include/profile_selectors.php:6
msgid "Mostly Female"
msgstr ""
#: include/profile_selectors.php:6
msgid "Transgender"
msgstr ""
#: include/profile_selectors.php:6
msgid "Intersex"
msgstr ""
#: include/profile_selectors.php:6
msgid "Transsexual"
msgstr ""
#: include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr ""
#: include/profile_selectors.php:6
msgid "Neuter"
msgstr ""
#: include/profile_selectors.php:6
msgid "Non-specific"
msgstr ""
#: include/profile_selectors.php:6
msgid "Other"
msgstr ""
#: include/profile_selectors.php:6 include/conversation.php:1483
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] ""
msgstr[1] ""
#: include/profile_selectors.php:23
msgid "Males"
msgstr ""
#: include/profile_selectors.php:23
msgid "Females"
msgstr ""
#: include/profile_selectors.php:23
msgid "Gay"
msgstr ""
#: include/profile_selectors.php:23
msgid "Lesbian"
msgstr ""
#: include/profile_selectors.php:23
msgid "No Preference"
msgstr ""
#: include/profile_selectors.php:23
msgid "Bisexual"
msgstr ""
#: include/profile_selectors.php:23
msgid "Autosexual"
msgstr ""
#: include/profile_selectors.php:23
msgid "Abstinent"
msgstr ""
#: include/profile_selectors.php:23
msgid "Virgin"
msgstr ""
#: include/profile_selectors.php:23
msgid "Deviant"
msgstr ""
#: include/profile_selectors.php:23
msgid "Fetish"
msgstr ""
#: include/profile_selectors.php:23
msgid "Oodles"
msgstr ""
#: include/profile_selectors.php:23
msgid "Nonsexual"
msgstr ""
#: include/profile_selectors.php:42
msgid "Single"
msgstr ""
#: include/profile_selectors.php:42
msgid "Lonely"
msgstr ""
#: include/profile_selectors.php:42
msgid "Available"
msgstr ""
#: include/profile_selectors.php:42
msgid "Unavailable"
msgstr ""
#: include/profile_selectors.php:42
msgid "Has crush"
msgstr ""
#: include/profile_selectors.php:42
msgid "Infatuated"
msgstr ""
#: include/profile_selectors.php:42
msgid "Dating"
msgstr ""
#: include/profile_selectors.php:42
msgid "Unfaithful"
msgstr ""
#: include/profile_selectors.php:42
msgid "Sex Addict"
msgstr ""
#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
msgid "Friends"
msgstr ""
#: include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr ""
#: include/profile_selectors.php:42
msgid "Casual"
msgstr ""
#: include/profile_selectors.php:42
msgid "Engaged"
msgstr ""
#: include/profile_selectors.php:42
msgid "Married"
msgstr ""
#: include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
#: include/profile_selectors.php:42
msgid "Partners"
msgstr ""
#: include/profile_selectors.php:42
msgid "Cohabiting"
msgstr ""
#: include/profile_selectors.php:42
msgid "Common law"
msgstr ""
#: include/profile_selectors.php:42
msgid "Happy"
msgstr ""
#: include/profile_selectors.php:42
msgid "Not looking"
msgstr ""
#: include/profile_selectors.php:42
msgid "Swinger"
msgstr ""
#: include/profile_selectors.php:42
msgid "Betrayed"
msgstr ""
#: include/profile_selectors.php:42
msgid "Separated"
msgstr ""
#: include/profile_selectors.php:42
msgid "Unstable"
msgstr ""
#: include/profile_selectors.php:42
msgid "Divorced"
msgstr ""
#: include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
#: include/profile_selectors.php:42
msgid "Widowed"
msgstr ""
#: include/profile_selectors.php:42
msgid "Uncertain"
msgstr ""
#: include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
#: include/profile_selectors.php:42
msgid "Don't care"
msgstr ""
#: include/profile_selectors.php:42
msgid "Ask me"
msgstr ""
#: include/bb2diaspora.php:148 include/event.php:16 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: include/bb2diaspora.php:154 include/event.php:33 include/event.php:51
#: include/event.php:487
msgid "Starts:"
msgstr ""
#: include/bb2diaspora.php:162 include/event.php:36 include/event.php:57
#: include/event.php:488
msgid "Finishes:"
msgstr ""
#: include/bb2diaspora.php:170 include/event.php:39 include/event.php:63
#: include/event.php:489 include/identity.php:328 mod/notifications.php:232
#: mod/contacts.php:628 mod/directory.php:137 mod/events.php:494
msgid "Location:"
msgstr ""
#: include/dba_pdo.php:72 include/dba.php:56
#: boot.php:1655
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgid "Update %s failed. See error logs."
msgstr ""
#: include/auth.php:45
msgid "Logged out."
#: boot.php:1767
msgid "Create a New Account"
msgstr ""
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
msgid "Login failed."
#: boot.php:1768 include/nav.php:109 mod/register.php:289
msgid "Register"
msgstr ""
#: include/auth.php:132 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."
#: boot.php:1792 include/nav.php:78 view/theme/frio/theme.php:246
msgid "Logout"
msgstr ""
#: include/auth.php:132 include/user.php:75
msgid "The error message was:"
#: boot.php:1793 include/nav.php:95 mod/bookmarklet.php:12
msgid "Login"
msgstr ""
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
#: boot.php:1795 mod/lostpass.php:161
msgid "Nickname or Email: "
msgstr ""
#: include/group.php:209
msgid "Default privacy group for new contacts"
#: boot.php:1796
msgid "Password: "
msgstr ""
#: include/group.php:242
msgid "Everybody"
#: boot.php:1797
msgid "Remember me"
msgstr ""
#: include/group.php:265
msgid "edit"
#: boot.php:1800
msgid "Or login using OpenID: "
msgstr ""
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
#: boot.php:1806
msgid "Forgot your password?"
msgstr ""
#: include/group.php:288
msgid "Edit groups"
#: boot.php:1807 mod/lostpass.php:109
msgid "Password Reset"
msgstr ""
#: include/group.php:290
msgid "Edit group"
#: boot.php:1809
msgid "Website Terms of Service"
msgstr ""
#: include/group.php:291
msgid "Create a new group"
#: boot.php:1810
msgid "terms of service"
msgstr ""
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
#: boot.php:1812
msgid "Website Privacy Policy"
msgstr ""
#: include/group.php:294
msgid "Contacts not in any group"
#: boot.php:1813
msgid "privacy policy"
msgstr ""
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr ""
#: include/user.php:39 mod/settings.php:371
msgid "Passwords do not match. Password unchanged."
msgstr ""
#: include/user.php:48
msgid "An invitation is required."
msgstr ""
#: include/user.php:53
msgid "Invitation could not be verified."
msgstr ""
#: include/user.php:61
msgid "Invalid OpenID url"
msgstr ""
#: include/user.php:82
msgid "Please enter the required information."
msgstr ""
#: include/user.php:96
msgid "Please use a shorter name."
msgstr ""
#: include/user.php:98
msgid "Name too short."
msgstr ""
#: include/user.php:113
msgid "That doesn't appear to be your full (First Last) name."
msgstr ""
#: include/user.php:118
msgid "Your email domain is not among those allowed on this site."
msgstr ""
#: include/user.php:121
msgid "Not a valid email address."
msgstr ""
#: include/user.php:134
msgid "Cannot use that email."
msgstr ""
#: include/user.php:140
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
msgstr ""
#: include/user.php:147 include/user.php:245
msgid "Nickname is already registered. Please choose another."
msgstr ""
#: include/user.php:157
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: include/user.php:173
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr ""
#: include/user.php:231
msgid "An error occurred during registration. Please try again."
msgstr ""
#: include/user.php:256 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr ""
#: include/user.php:266
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: include/user.php:345 include/user.php:352 include/user.php:359
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: mod/profile_photo.php:210 mod/profile_photo.php:302
#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
#: mod/photos.php:1819 view/theme/diabook/theme.php:500
msgid "Profile Photos"
msgstr ""
#: include/user.php:387
#, 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:391
#, 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:423 mod/admin.php:1184
#, php-format
msgid "Registration details for %s"
msgstr ""
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr ""
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr ""
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr ""
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr ""
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr ""
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr ""
#: include/contact_selectors.php:56 mod/admin.php:862
msgid "Frequently"
msgstr ""
#: include/contact_selectors.php:57 mod/admin.php:863
msgid "Hourly"
msgstr ""
#: include/contact_selectors.php:58 mod/admin.php:864
msgid "Twice daily"
msgstr ""
#: include/contact_selectors.php:59 mod/admin.php:865
msgid "Daily"
msgstr ""
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr ""
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr ""
#: include/contact_selectors.php:76 mod/dfrn_request.php:867
msgid "Friendica"
msgstr ""
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr ""
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1367 mod/admin.php:1380 mod/admin.php:1392 mod/admin.php:1410
msgid "Email"
msgstr ""
#: include/contact_selectors.php:80 mod/dfrn_request.php:869
#: mod/settings.php:840
msgid "Diaspora"
msgstr ""
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr ""
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
#: include/contact_selectors.php:87
msgid "Google+"
msgstr ""
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr ""
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr ""
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr ""
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr ""
#: include/contact_selectors.php:92
msgid "App.net"
msgstr ""
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr ""
#: include/network.php:595
msgid "view full size"
msgstr ""
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr ""
#: include/acl_selectors.php:332
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: include/acl_selectors.php:333 mod/settings.php:1176
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr ""
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
msgid "show"
msgstr ""
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
msgid "don't show"
msgstr ""
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr ""
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr ""
#: include/acl_selectors.php:350
msgid "Close"
msgstr ""
#: include/like.php:163 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1808 mod/subthread.php:87
#: mod/tagger.php:62 view/theme/diabook/theme.php:471
msgid "photo"
msgstr ""
#: include/like.php:163 include/diaspora.php:1402 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
msgid "status"
msgstr ""
#: include/like.php:165 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1806
#: view/theme/diabook/theme.php:463
msgid "event"
msgstr ""
#: include/like.php:182 include/diaspora.php:1398 include/conversation.php:141
#: view/theme/diabook/theme.php:480
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""
#: include/like.php:184 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr ""
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr ""
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr ""
#: include/message.php:145 include/Photo.php:1045 include/Photo.php:1061
#: include/Photo.php:1069 include/Photo.php:1094 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
msgid "Wall Photos"
msgstr ""
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr ""
#: include/plugin.php:534
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: include/plugin.php:539
msgid "This action is not available under your subscription plan."
msgstr ""
#: 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 ""
#: include/uimport.php:153
msgid "User creation error"
msgstr ""
#: include/uimport.php:173
msgid "User profile creation error"
msgstr ""
#: include/uimport.php:222
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr ""
#: include/NotificationsManager.php:153
msgid "System"
msgstr ""
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:402
#: view/theme/frio/theme.php:253
msgid "Network"
msgstr ""
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:845
msgid "Personal"
msgstr ""
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161 view/theme/diabook/theme.php:123
msgid "Home"
msgstr ""
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr ""
#: include/NotificationsManager.php:234 include/NotificationsManager.php:245
#, php-format
msgid "%s commented on %s's post"
msgstr ""
#: include/NotificationsManager.php:244
#, php-format
msgid "%s created a new post"
msgstr ""
#: include/NotificationsManager.php:258
#, php-format
msgid "%s liked %s's post"
msgstr ""
#: include/NotificationsManager.php:269
#, php-format
msgid "%s disliked %s's post"
msgstr ""
#: include/NotificationsManager.php:280
#, php-format
msgid "%s is attending %s's event"
msgstr ""
#: include/NotificationsManager.php:291
#, php-format
msgid "%s is not attending %s's event"
msgstr ""
#: include/NotificationsManager.php:302
#, php-format
msgid "%s may attend %s's event"
msgstr ""
#: include/NotificationsManager.php:317
#, php-format
msgid "%s is now friends with %s"
msgstr ""
#: include/NotificationsManager.php:750
msgid "Friend Suggestion"
msgstr ""
#: include/NotificationsManager.php:783
msgid "Friend/Connect Request"
msgstr ""
#: include/NotificationsManager.php:783
msgid "New Follower"
msgstr ""
#: include/diaspora.php:1954
msgid "Sharing notification from Diaspora network"
msgstr ""
#: include/diaspora.php:2854
msgid "Attachments:"
msgstr ""
#: include/features.php:63
msgid "General Features"
msgstr ""
#: include/features.php:65
msgid "Multiple Profiles"
msgstr ""
#: include/features.php:65
msgid "Ability to create multiple profiles"
msgstr ""
#: include/features.php:66
msgid "Photo Location"
msgstr ""
#: include/features.php:66
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present) "
"prior to stripping metadata and links it to a map."
msgstr ""
#: include/features.php:67
msgid "Export Public Calendar"
msgstr ""
#: include/features.php:67
msgid "Ability for visitors to download the public calendar"
msgstr ""
#: include/features.php:72
msgid "Post Composition Features"
msgstr ""
#: include/features.php:73
msgid "Richtext Editor"
msgstr ""
#: include/features.php:73
msgid "Enable richtext editor"
msgstr ""
#: include/features.php:74
msgid "Post Preview"
msgstr ""
#: include/features.php:74
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: include/features.php:75
msgid "Auto-mention Forums"
msgstr ""
#: include/features.php:75
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr ""
#: include/features.php:80
msgid "Network Sidebar Widgets"
msgstr ""
#: include/features.php:81
msgid "Search by Date"
msgstr ""
#: include/features.php:81
msgid "Ability to select posts by date ranges"
msgstr ""
#: include/features.php:82 include/features.php:112
msgid "List Forums"
msgstr ""
#: include/features.php:82
msgid "Enable widget to display the forums your are connected with"
msgstr ""
#: include/features.php:83
msgid "Group Filter"
msgstr ""
#: include/features.php:83
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: include/features.php:84
msgid "Network Filter"
msgstr ""
#: include/features.php:84
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: include/features.php:85 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr ""
#: include/features.php:85
msgid "Save search terms for re-use"
msgstr ""
#: include/features.php:90
msgid "Network Tabs"
msgstr ""
#: include/features.php:91
msgid "Network Personal Tab"
msgstr ""
#: include/features.php:91
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: include/features.php:92
msgid "Network New Tab"
msgstr ""
#: include/features.php:92
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: include/features.php:93
msgid "Network Shared Links Tab"
msgstr ""
#: include/features.php:93
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: include/features.php:98
msgid "Post/Comment Tools"
msgstr ""
#: include/features.php:99
msgid "Multiple Deletion"
msgstr ""
#: include/features.php:99
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: include/features.php:100
msgid "Edit Sent Posts"
msgstr ""
#: include/features.php:100
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: include/features.php:101
msgid "Tagging"
msgstr ""
#: include/features.php:101
msgid "Ability to tag existing posts"
msgstr ""
#: include/features.php:102
msgid "Post Categories"
msgstr ""
#: include/features.php:102
msgid "Add categories to your posts"
msgstr ""
#: include/features.php:103
msgid "Ability to file posts under folders"
msgstr ""
#: include/features.php:104
msgid "Dislike Posts"
msgstr ""
#: include/features.php:104
msgid "Ability to dislike posts/comments"
msgstr ""
#: include/features.php:105
msgid "Star Posts"
msgstr ""
#: include/features.php:105
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: include/features.php:106
msgid "Mute Post Notifications"
msgstr ""
#: include/features.php:106
msgid "Ability to mute notifications for a thread"
msgstr ""
#: include/features.php:111
msgid "Advanced Profile Settings"
msgstr ""
#: include/features.php:112
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr ""
#: include/delivery.php:439
msgid "(no subject)"
msgstr ""
#: include/delivery.php:450 include/enotify.php:43
msgid "noreply"
msgstr ""
#: include/api.php:1019
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1039
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1060
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr ""
#: include/bbcode.php:465
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr ""
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr ""
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr ""
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:185 mod/dfrn_confirm.php:473
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr ""
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: include/conversation.php:303
msgid "post/item"
msgstr ""
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr ""
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr ""
#: include/conversation.php:586 include/conversation.php:1477
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr ""
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr ""
#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
#: mod/content.php:759 mod/admin.php:1384 mod/contacts.php:808
#: mod/contacts.php:1016 mod/photos.php:1682 mod/settings.php:739
#: object/Item.php:134
msgid "Delete"
msgstr ""
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr ""
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr ""
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr ""
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr ""
#: include/conversation.php:791 include/conversation.php:1261
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 mod/content.php:515 mod/content.php:948
#: mod/photos.php:1570 object/Item.php:406
msgid "Please wait"
msgstr ""
#: include/conversation.php:870
msgid "remove"
msgstr ""
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr ""
#: include/conversation.php:966
msgid "Follow Thread"
msgstr ""
#: include/conversation.php:967 include/Contact.php:390
msgid "View Status"
msgstr ""
#: include/conversation.php:968 include/conversation.php:984
#: include/Contact.php:333 include/Contact.php:346 include/Contact.php:391
#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
#: mod/match.php:71 mod/suggest.php:82
msgid "View Profile"
msgstr ""
#: include/conversation.php:969 include/Contact.php:392
msgid "View Photos"
msgstr ""
#: include/conversation.php:970 include/Contact.php:393
msgid "Network Posts"
msgstr ""
#: include/conversation.php:971 include/Contact.php:394
msgid "View Contact"
msgstr ""
#: include/conversation.php:972 include/Contact.php:396
msgid "Send PM"
msgstr ""
#: include/conversation.php:976 include/Contact.php:397
msgid "Poke"
msgstr ""
#: include/conversation.php:1094
#, php-format
msgid "%s likes this."
msgstr ""
#: include/conversation.php:1097
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: include/conversation.php:1100
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1103
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1106
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1116
msgid "and"
msgstr ""
#: include/conversation.php:1122
#, php-format
msgid ", and %d other people"
msgstr ""
#: include/conversation.php:1131
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: include/conversation.php:1132
#, php-format
msgid "%s like this."
msgstr ""
#: include/conversation.php:1135
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: include/conversation.php:1136
#, php-format
msgid "%s don't like this."
msgstr ""
#: include/conversation.php:1139
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1140
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1143
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1144
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1147
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr ""
#: include/conversation.php:1148
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1187 include/conversation.php:1205
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: include/conversation.php:1188 include/conversation.php:1206
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr ""
#: include/conversation.php:1189 include/conversation.php:1207
msgid "Please enter a video link/URL:"
msgstr ""
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Please enter an audio link/URL:"
msgstr ""
#: include/conversation.php:1191 include/conversation.php:1209
msgid "Tag term:"
msgstr ""
#: include/conversation.php:1192 include/conversation.php:1210
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr ""
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Where are you right now?"
msgstr ""
#: include/conversation.php:1194
msgid "Delete item(s)?"
msgstr ""
#: include/conversation.php:1242 mod/photos.php:1569
msgid "Share"
msgstr ""
#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr ""
#: include/conversation.php:1244 mod/editpost.php:111
msgid "upload photo"
msgstr ""
#: include/conversation.php:1245 mod/editpost.php:112
msgid "Attach file"
msgstr ""
#: include/conversation.php:1246 mod/editpost.php:113
msgid "attach file"
msgstr ""
#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr ""
#: include/conversation.php:1248 mod/editpost.php:115
msgid "web link"
msgstr ""
#: include/conversation.php:1249 mod/editpost.php:116
msgid "Insert video link"
msgstr ""
#: include/conversation.php:1250 mod/editpost.php:117
msgid "video link"
msgstr ""
#: include/conversation.php:1251 mod/editpost.php:118
msgid "Insert audio link"
msgstr ""
#: include/conversation.php:1252 mod/editpost.php:119
msgid "audio link"
msgstr ""
#: include/conversation.php:1253 mod/editpost.php:120
msgid "Set your location"
msgstr ""
#: include/conversation.php:1254 mod/editpost.php:121
msgid "set location"
msgstr ""
#: include/conversation.php:1255 mod/editpost.php:122
msgid "Clear browser location"
msgstr ""
#: include/conversation.php:1256 mod/editpost.php:123
msgid "clear location"
msgstr ""
#: include/conversation.php:1258 mod/editpost.php:137
msgid "Set title"
msgstr ""
#: include/conversation.php:1260 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr ""
#: include/conversation.php:1262 mod/editpost.php:125
msgid "Permission settings"
msgstr ""
#: include/conversation.php:1263 mod/editpost.php:154
msgid "permissions"
msgstr ""
#: include/conversation.php:1271 mod/editpost.php:134
msgid "Public post"
msgstr ""
#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
#: mod/photos.php:1725 object/Item.php:729
msgid "Preview"
msgstr ""
#: include/conversation.php:1280 include/items.php:1917 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
#: mod/contacts.php:445 mod/photos.php:235 mod/photos.php:322
#: mod/suggest.php:32 mod/videos.php:128 mod/settings.php:677
#: mod/settings.php:703
msgid "Cancel"
msgstr ""
#: include/conversation.php:1286
msgid "Post to Groups"
msgstr ""
#: include/conversation.php:1287
msgid "Post to Contacts"
msgstr ""
#: include/conversation.php:1288
msgid "Private post"
msgstr ""
#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr ""
#: include/conversation.php:1294 mod/editpost.php:153
msgid "Browser"
msgstr ""
#: include/conversation.php:1449
msgid "View all"
msgstr ""
#: include/conversation.php:1471
msgid "Like"
msgid_plural "Likes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1474
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1480
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
msgid "Miscellaneous"
msgstr ""
@ -1623,8 +131,8 @@ msgstr ""
msgid "years"
msgstr ""
#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
#: mod/events.php:389
#: include/datetime.php:351 include/event.php:480 mod/events.php:389
#: mod/cal.php:284
msgid "month"
msgstr ""
@ -1632,8 +140,8 @@ msgstr ""
msgid "months"
msgstr ""
#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
#: mod/events.php:390
#: include/datetime.php:352 include/event.php:481 mod/events.php:390
#: mod/cal.php:285
msgid "week"
msgstr ""
@ -1641,8 +149,8 @@ msgstr ""
msgid "weeks"
msgstr ""
#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
#: mod/events.php:391
#: include/datetime.php:353 include/event.php:482 mod/events.php:391
#: mod/cal.php:286
msgid "day"
msgstr ""
@ -1684,40 +192,175 @@ msgstr ""
msgid "%s's birthday"
msgstr ""
#: include/datetime.php:573 include/dfrn.php:1108
#: include/datetime.php:573 include/dfrn.php:1109
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: include/dbstructure.php:26
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr ""
#: include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr ""
#: include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
#: include/contact_widgets.php:10 include/identity.php:218 mod/dirfind.php:201
#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101
msgid "Connect"
msgstr ""
#: include/contact_widgets.php:24
#, 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."
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
#: include/contact_widgets.php:30
msgid "Find People"
msgstr ""
#: include/dbstructure.php:31
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr ""
#: include/contact_widgets.php:32 include/conversation.php:981
#: include/Contact.php:361 mod/dirfind.php:204 mod/match.php:72
#: mod/allfriends.php:66 mod/contacts.php:602 mod/follow.php:103
#: mod/suggest.php:83
msgid "Connect/Follow"
msgstr ""
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
msgid "Find"
msgstr ""
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203
msgid "Friend Suggestions"
msgstr ""
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
msgid "Similar Interests"
msgstr ""
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr ""
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
msgid "Invite Friends"
msgstr ""
#: include/contact_widgets.php:108
msgid "Networks"
msgstr ""
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr ""
#: include/contact_widgets.php:141 include/features.php:110
msgid "Saved Folders"
msgstr ""
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr ""
#: include/contact_widgets.php:173
msgid "Categories"
msgstr ""
#: include/contact_widgets.php:237
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: include/NotificationsManager.php:153
msgid "System"
msgstr ""
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:411
#: view/theme/frio/theme.php:256
msgid "Network"
msgstr ""
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:846
msgid "Personal"
msgstr ""
#: include/dfrn.php:1107
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161
msgid "Home"
msgstr ""
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr ""
#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
#, php-format
msgid "%s\\'s birthday"
msgid "%s commented on %s's post"
msgstr ""
#: include/NotificationsManager.php:243
#, php-format
msgid "%s created a new post"
msgstr ""
#: include/NotificationsManager.php:256
#, php-format
msgid "%s liked %s's post"
msgstr ""
#: include/NotificationsManager.php:267
#, php-format
msgid "%s disliked %s's post"
msgstr ""
#: include/NotificationsManager.php:278
#, php-format
msgid "%s is attending %s's event"
msgstr ""
#: include/NotificationsManager.php:289
#, php-format
msgid "%s is not attending %s's event"
msgstr ""
#: include/NotificationsManager.php:300
#, php-format
msgid "%s may attend %s's event"
msgstr ""
#: include/NotificationsManager.php:315
#, php-format
msgid "%s is now friends with %s"
msgstr ""
#: include/NotificationsManager.php:748
msgid "Friend Suggestion"
msgstr ""
#: include/NotificationsManager.php:781
msgid "Friend/Connect Request"
msgstr ""
#: include/NotificationsManager.php:781
msgid "New Follower"
msgstr ""
#: include/enotify.php:24
@ -1738,6 +381,10 @@ msgstr ""
msgid "%1$s, %2$s Administrator"
msgstr ""
#: include/enotify.php:43 include/delivery.php:457
msgid "noreply"
msgstr ""
#: include/enotify.php:70
#, php-format
msgid "%s <!item_type!>"
@ -2012,6 +659,114 @@ msgstr ""
msgid "Please visit %s to approve or reject the request."
msgstr ""
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr ""
#: include/plugin.php:534
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: include/plugin.php:539
msgid "This action is not available under your subscription plan."
msgstr ""
#: include/ForumManager.php:114 include/text.php:1025 include/nav.php:131
#: view/theme/vier/theme.php:255
msgid "Forums"
msgstr ""
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr ""
#: include/diaspora.php:1402 include/conversation.php:141 include/like.php:182
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""
#: include/diaspora.php:1406 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62
#: mod/subthread.php:87
msgid "status"
msgstr ""
#: include/diaspora.php:1958
msgid "Sharing notification from Diaspora network"
msgstr ""
#: include/diaspora.php:2864
msgid "Attachments:"
msgstr ""
#: include/dfrn.php:1108
#, php-format
msgid "%s\\'s birthday"
msgstr ""
#: 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 ""
#: include/uimport.php:153
msgid "User creation error"
msgstr ""
#: include/uimport.php:173
msgid "User profile creation error"
msgstr ""
#: include/uimport.php:222
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr ""
#: include/dba.php:56 include/dba_pdo.php:72
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: include/event.php:33 include/event.php:51 include/event.php:487
#: include/bb2diaspora.php:154
msgid "Starts:"
msgstr ""
#: include/event.php:36 include/event.php:57 include/event.php:488
#: include/bb2diaspora.php:162
msgid "Finishes:"
msgstr ""
#: include/event.php:39 include/event.php:63 include/event.php:489
#: include/identity.php:328 include/bb2diaspora.php:170
#: mod/notifications.php:232 mod/events.php:494 mod/directory.php:137
#: mod/contacts.php:628
msgid "Location:"
msgstr ""
#: include/event.php:441
msgid "Sun"
msgstr ""
@ -2040,11 +795,11 @@ msgstr ""
msgid "Sat"
msgstr ""
#: include/event.php:448 include/text.php:1130 mod/settings.php:968
#: include/event.php:448 include/text.php:1130 mod/settings.php:972
msgid "Sunday"
msgstr ""
#: include/event.php:449 include/text.php:1130 mod/settings.php:968
#: include/event.php:449 include/text.php:1130 mod/settings.php:972
msgid "Monday"
msgstr ""
@ -2160,7 +915,7 @@ msgstr ""
msgid "December"
msgstr ""
#: include/event.php:479 mod/cal.php:283 mod/events.php:388
#: include/event.php:479 mod/events.php:388 mod/cal.php:283
msgid "today"
msgstr ""
@ -2196,628 +951,6 @@ msgstr ""
msgid "Export calendar as csv"
msgstr ""
#: include/follow.php:77 mod/dfrn_request.php:507
msgid "Disallowed profile URL."
msgstr ""
#: include/follow.php:82
msgid "Connect URL missing."
msgstr ""
#: include/follow.php:109
msgid ""
"This site is not configured to allow communications with other networks."
msgstr ""
#: include/follow.php:110 include/follow.php:130
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: include/follow.php:128
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: include/follow.php:132
msgid "An author or name was not found."
msgstr ""
#: include/follow.php:134
msgid "No browser URL could be matched to this address."
msgstr ""
#: include/follow.php:136
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: include/follow.php:137
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: include/follow.php:143
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: include/follow.php:153
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: include/follow.php:254
msgid "Unable to retrieve contact information."
msgstr ""
#: include/follow.php:287
msgid "following"
msgstr ""
#: include/identity.php:42
msgid "Requested account is not available."
msgstr ""
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr ""
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr ""
#: include/identity.php:251
msgid "Atom feed"
msgstr ""
#: include/identity.php:282 include/nav.php:189
msgid "Profiles"
msgstr ""
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr ""
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr ""
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr ""
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr ""
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr ""
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr ""
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr ""
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr ""
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr ""
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/contacts.php:632 mod/directory.php:145
msgid "About:"
msgstr ""
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr ""
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr ""
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr ""
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr ""
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr ""
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr ""
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr ""
#: include/identity.php:569
msgid "[No description]"
msgstr ""
#: include/identity.php:593
msgid "Event Reminders"
msgstr ""
#: include/identity.php:594
msgid "Events this week:"
msgstr ""
#: include/identity.php:605 include/identity.php:691 include/identity.php:722
#: include/nav.php:82 mod/profperm.php:104 mod/newmember.php:32
#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
#: view/theme/diabook/theme.php:124
msgid "Profile"
msgstr ""
#: include/identity.php:614 mod/settings.php:1274
msgid "Full Name:"
msgstr ""
#: include/identity.php:621
msgid "j F, Y"
msgstr ""
#: include/identity.php:622
msgid "j F"
msgstr ""
#: include/identity.php:633
msgid "Age:"
msgstr ""
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr ""
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr ""
#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
#: mod/contacts.php:634
msgid "Tags:"
msgstr ""
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr ""
#: include/identity.php:655
msgid "Religion:"
msgstr ""
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr ""
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr ""
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr ""
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr ""
#: include/identity.php:668
msgid "Musical interests:"
msgstr ""
#: include/identity.php:670
msgid "Books, literature:"
msgstr ""
#: include/identity.php:672
msgid "Television:"
msgstr ""
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr ""
#: include/identity.php:676
msgid "Love/Romance:"
msgstr ""
#: include/identity.php:678
msgid "Work/employment:"
msgstr ""
#: include/identity.php:680
msgid "School/education:"
msgstr ""
#: include/identity.php:684
msgid "Forums:"
msgstr ""
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr ""
#: include/identity.php:693 mod/admin.php:931 mod/contacts.php:870
#: mod/events.php:508
msgid "Advanced"
msgstr ""
#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:246
msgid "Status"
msgstr ""
#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
msgid "Status Messages and Posts"
msgstr ""
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr ""
#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126
msgid "Photos"
msgstr ""
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr ""
#: include/identity.php:738 include/identity.php:741 include/nav.php:84
#: view/theme/frio/theme.php:249
msgid "Videos"
msgstr ""
#: include/identity.php:750 include/identity.php:761 include/nav.php:85
#: include/nav.php:149 mod/cal.php:275 mod/events.php:379
#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
#: view/theme/diabook/theme.php:127
msgid "Events"
msgstr ""
#: include/identity.php:753 include/identity.php:764 include/nav.php:149
#: view/theme/frio/theme.php:254
msgid "Events and Calendar"
msgstr ""
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr ""
#: include/identity.php:775
msgid "Only You Can See This"
msgstr ""
#: include/identity.php:783 include/identity.php:786 include/nav.php:128
#: include/nav.php:192 include/text.php:1022 mod/contacts.php:792
#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
#: view/theme/diabook/theme.php:125
msgid "Contacts"
msgstr ""
#: include/items.php:1518 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
msgid "[Name Withheld]"
msgstr ""
#: include/items.php:1873 mod/viewsrc.php:15 mod/notice.php:15
#: mod/admin.php:234 mod/admin.php:1441 mod/admin.php:1675 mod/display.php:103
#: mod/display.php:279 mod/display.php:478
msgid "Item not found."
msgstr ""
#: include/items.php:1912
msgid "Do you really want to delete this item?"
msgstr ""
#: include/items.php:1914 mod/follow.php:110 mod/api.php:105
#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
#: mod/register.php:238 mod/suggest.php:29 mod/settings.php:1158
#: mod/settings.php:1164 mod/settings.php:1172 mod/settings.php:1176
#: mod/settings.php:1181 mod/settings.php:1187 mod/settings.php:1193
#: mod/settings.php:1199 mod/settings.php:1225 mod/settings.php:1226
#: mod/settings.php:1227 mod/settings.php:1228 mod/settings.php:1229
msgid "Yes"
msgstr ""
#: include/items.php:2077 mod/wall_upload.php:77 mod/wall_upload.php:80
#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
#: mod/invite.php:101 mod/wall_attach.php:67 mod/wall_attach.php:70
#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
#: mod/events.php:190 mod/item.php:198 mod/item.php:210 mod/network.php:4
#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
#: mod/suggest.php:58 mod/viewcontacts.php:45 mod/settings.php:22
#: mod/settings.php:128 mod/settings.php:663 index.php:397
msgid "Permission denied."
msgstr ""
#: include/items.php:2182
msgid "Archives"
msgstr ""
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr ""
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr ""
#: include/nav.php:40 include/text.php:1015
msgid "@name, !forum, #tags, content"
msgstr ""
#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1778
msgid "Logout"
msgstr ""
#: include/nav.php:78 view/theme/frio/theme.php:243
msgid "End this session"
msgstr ""
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
#: view/theme/diabook/theme.php:123
msgid "Your posts and conversations"
msgstr ""
#: include/nav.php:82 view/theme/frio/theme.php:247
#: view/theme/diabook/theme.php:124
msgid "Your profile page"
msgstr ""
#: include/nav.php:83 view/theme/frio/theme.php:248
#: view/theme/diabook/theme.php:126
msgid "Your photos"
msgstr ""
#: include/nav.php:84 view/theme/frio/theme.php:249
msgid "Your videos"
msgstr ""
#: include/nav.php:85 view/theme/frio/theme.php:250
#: view/theme/diabook/theme.php:127
msgid "Your events"
msgstr ""
#: include/nav.php:86 view/theme/diabook/theme.php:128
msgid "Personal notes"
msgstr ""
#: include/nav.php:86
msgid "Your personal notes"
msgstr ""
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1779
msgid "Login"
msgstr ""
#: include/nav.php:95
msgid "Sign in"
msgstr ""
#: include/nav.php:105
msgid "Home Page"
msgstr ""
#: include/nav.php:109 mod/register.php:280 boot.php:1754
msgid "Register"
msgstr ""
#: include/nav.php:109
msgid "Create an account"
msgstr ""
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
msgid "Help"
msgstr ""
#: include/nav.php:115
msgid "Help and documentation"
msgstr ""
#: include/nav.php:119
msgid "Apps"
msgstr ""
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr ""
#: include/nav.php:123 include/text.php:1012 mod/search.php:149
msgid "Search"
msgstr ""
#: include/nav.php:123
msgid "Search site content"
msgstr ""
#: include/nav.php:126 include/text.php:1020
msgid "Full Text"
msgstr ""
#: include/nav.php:127 include/text.php:1021
msgid "Tags"
msgstr ""
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
#: view/theme/diabook/theme.php:129
msgid "Community"
msgstr ""
#: include/nav.php:143
msgid "Conversations on this site"
msgstr ""
#: include/nav.php:145
msgid "Conversations on the network"
msgstr ""
#: include/nav.php:152
msgid "Directory"
msgstr ""
#: include/nav.php:152
msgid "People directory"
msgstr ""
#: include/nav.php:154
msgid "Information"
msgstr ""
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr ""
#: include/nav.php:158 view/theme/frio/theme.php:253
msgid "Conversations from your friends"
msgstr ""
#: include/nav.php:159
msgid "Network Reset"
msgstr ""
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr ""
#: include/nav.php:166
msgid "Friend Requests"
msgstr ""
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr ""
#: include/nav.php:170
msgid "See all notifications"
msgstr ""
#: include/nav.php:171 mod/settings.php:900
msgid "Mark as seen"
msgstr ""
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr ""
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
msgid "Messages"
msgstr ""
#: include/nav.php:175 view/theme/frio/theme.php:255
msgid "Private mail"
msgstr ""
#: include/nav.php:176
msgid "Inbox"
msgstr ""
#: include/nav.php:177
msgid "Outbox"
msgstr ""
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr ""
#: include/nav.php:181
msgid "Manage"
msgstr ""
#: include/nav.php:181
msgid "Manage other pages"
msgstr ""
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr ""
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr ""
#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1494
#: mod/admin.php:1752 mod/settings.php:111 view/theme/frio/theme.php:256
#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
msgid "Settings"
msgstr ""
#: include/nav.php:186 view/theme/frio/theme.php:256
msgid "Account settings"
msgstr ""
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr ""
#: include/nav.php:192 view/theme/frio/theme.php:257
msgid "Manage/edit friends and contacts"
msgstr ""
#: include/nav.php:197 mod/admin.php:186
msgid "Admin"
msgstr ""
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr ""
#: include/nav.php:200
msgid "Navigation"
msgstr ""
#: include/nav.php:200
msgid "Site map"
msgstr ""
#: include/oembed.php:252
msgid "Embedded content"
msgstr ""
#: include/oembed.php:260
msgid "Embedding disabled"
msgstr ""
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
#: view/theme/diabook/theme.php:499
msgid "Contact Photos"
msgstr ""
#: include/security.php:22
msgid "Welcome "
msgstr ""
@ -2836,6 +969,300 @@ msgid ""
"form has been opened for too long (>3 hours) before submitting it."
msgstr ""
#: include/profile_selectors.php:6
msgid "Male"
msgstr ""
#: include/profile_selectors.php:6
msgid "Female"
msgstr ""
#: include/profile_selectors.php:6
msgid "Currently Male"
msgstr ""
#: include/profile_selectors.php:6
msgid "Currently Female"
msgstr ""
#: include/profile_selectors.php:6
msgid "Mostly Male"
msgstr ""
#: include/profile_selectors.php:6
msgid "Mostly Female"
msgstr ""
#: include/profile_selectors.php:6
msgid "Transgender"
msgstr ""
#: include/profile_selectors.php:6
msgid "Intersex"
msgstr ""
#: include/profile_selectors.php:6
msgid "Transsexual"
msgstr ""
#: include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr ""
#: include/profile_selectors.php:6
msgid "Neuter"
msgstr ""
#: include/profile_selectors.php:6
msgid "Non-specific"
msgstr ""
#: include/profile_selectors.php:6
msgid "Other"
msgstr ""
#: include/profile_selectors.php:6 include/conversation.php:1487
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] ""
msgstr[1] ""
#: include/profile_selectors.php:23
msgid "Males"
msgstr ""
#: include/profile_selectors.php:23
msgid "Females"
msgstr ""
#: include/profile_selectors.php:23
msgid "Gay"
msgstr ""
#: include/profile_selectors.php:23
msgid "Lesbian"
msgstr ""
#: include/profile_selectors.php:23
msgid "No Preference"
msgstr ""
#: include/profile_selectors.php:23
msgid "Bisexual"
msgstr ""
#: include/profile_selectors.php:23
msgid "Autosexual"
msgstr ""
#: include/profile_selectors.php:23
msgid "Abstinent"
msgstr ""
#: include/profile_selectors.php:23
msgid "Virgin"
msgstr ""
#: include/profile_selectors.php:23
msgid "Deviant"
msgstr ""
#: include/profile_selectors.php:23
msgid "Fetish"
msgstr ""
#: include/profile_selectors.php:23
msgid "Oodles"
msgstr ""
#: include/profile_selectors.php:23
msgid "Nonsexual"
msgstr ""
#: include/profile_selectors.php:42
msgid "Single"
msgstr ""
#: include/profile_selectors.php:42
msgid "Lonely"
msgstr ""
#: include/profile_selectors.php:42
msgid "Available"
msgstr ""
#: include/profile_selectors.php:42
msgid "Unavailable"
msgstr ""
#: include/profile_selectors.php:42
msgid "Has crush"
msgstr ""
#: include/profile_selectors.php:42
msgid "Infatuated"
msgstr ""
#: include/profile_selectors.php:42
msgid "Dating"
msgstr ""
#: include/profile_selectors.php:42
msgid "Unfaithful"
msgstr ""
#: include/profile_selectors.php:42
msgid "Sex Addict"
msgstr ""
#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
msgid "Friends"
msgstr ""
#: include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr ""
#: include/profile_selectors.php:42
msgid "Casual"
msgstr ""
#: include/profile_selectors.php:42
msgid "Engaged"
msgstr ""
#: include/profile_selectors.php:42
msgid "Married"
msgstr ""
#: include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
#: include/profile_selectors.php:42
msgid "Partners"
msgstr ""
#: include/profile_selectors.php:42
msgid "Cohabiting"
msgstr ""
#: include/profile_selectors.php:42
msgid "Common law"
msgstr ""
#: include/profile_selectors.php:42
msgid "Happy"
msgstr ""
#: include/profile_selectors.php:42
msgid "Not looking"
msgstr ""
#: include/profile_selectors.php:42
msgid "Swinger"
msgstr ""
#: include/profile_selectors.php:42
msgid "Betrayed"
msgstr ""
#: include/profile_selectors.php:42
msgid "Separated"
msgstr ""
#: include/profile_selectors.php:42
msgid "Unstable"
msgstr ""
#: include/profile_selectors.php:42
msgid "Divorced"
msgstr ""
#: include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
#: include/profile_selectors.php:42
msgid "Widowed"
msgstr ""
#: include/profile_selectors.php:42
msgid "Uncertain"
msgstr ""
#: include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
#: include/profile_selectors.php:42
msgid "Don't care"
msgstr ""
#: include/profile_selectors.php:42
msgid "Ask me"
msgstr ""
#: include/items.php:1571 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
msgid "[Name Withheld]"
msgstr ""
#: include/items.php:1926 mod/viewsrc.php:15 mod/admin.php:234
#: mod/admin.php:1471 mod/admin.php:1705 mod/display.php:103
#: mod/display.php:279 mod/display.php:478 mod/notice.php:15
msgid "Item not found."
msgstr ""
#: include/items.php:1965
msgid "Do you really want to delete this item?"
msgstr ""
#: include/items.php:1967 mod/profiles.php:648 mod/profiles.php:651
#: mod/profiles.php:677 mod/contacts.php:442 mod/follow.php:110
#: mod/suggest.php:29 mod/dfrn_request.php:862 mod/register.php:245
#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
#: mod/settings.php:1234 mod/api.php:105 mod/message.php:217
msgid "Yes"
msgstr ""
#: include/items.php:1970 include/conversation.php:1283 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:128
#: mod/photos.php:235 mod/photos.php:322 mod/contacts.php:445
#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148
#: mod/dfrn_request.php:876 mod/settings.php:679 mod/settings.php:705
#: mod/message.php:220
msgid "Cancel"
msgstr ""
#: include/items.php:2130 index.php:401 mod/regmod.php:110 mod/dirfind.php:11
#: mod/notifications.php:71 mod/dfrn_confirm.php:61 mod/wall_upload.php:77
#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22
#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12
#: mod/cal.php:304 mod/repair_ostatus.php:9 mod/delegate.php:12
#: mod/profiles.php:166 mod/profiles.php:605 mod/poke.php:150
#: mod/photos.php:159 mod/photos.php:1072 mod/attach.php:33
#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155
#: mod/suggest.php:58 mod/display.php:475 mod/common.php:18 mod/mood.php:114
#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19
#: mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:198
#: mod/item.php:210 mod/ostatus_subscribe.php:9 mod/message.php:46
#: mod/message.php:182 mod/manage.php:96
msgid "Permission denied."
msgstr ""
#: include/items.php:2235
msgid "Archives"
msgstr ""
#: include/text.php:304
msgid "newer"
msgstr ""
@ -2883,11 +1310,33 @@ msgstr[1] ""
msgid "View Contacts"
msgstr ""
#: include/text.php:1012 include/nav.php:123 mod/search.php:149
msgid "Search"
msgstr ""
#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
#: mod/editpost.php:109
msgid "Save"
msgstr ""
#: include/text.php:1015 include/nav.php:40
msgid "@name, !forum, #tags, content"
msgstr ""
#: include/text.php:1020 include/nav.php:126
msgid "Full Text"
msgstr ""
#: include/text.php:1021 include/nav.php:127
msgid "Tags"
msgstr ""
#: include/text.php:1022 include/identity.php:783 include/identity.php:786
#: include/nav.php:128 include/nav.php:192 mod/viewcontacts.php:116
#: mod/contacts.php:792 mod/contacts.php:853 view/theme/frio/theme.php:260
msgid "Contacts"
msgstr ""
#: include/text.php:1076
msgid "poke"
msgstr ""
@ -3036,6 +1485,17 @@ msgstr ""
msgid "view on separate page"
msgstr ""
#: include/text.php:1806 include/conversation.php:122
#: include/conversation.php:258 include/like.php:165
msgid "event"
msgstr ""
#: include/text.php:1808 include/conversation.php:130
#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62
#: mod/subthread.php:87
msgid "photo"
msgstr ""
#: include/text.php:1810
msgid "activity"
msgstr ""
@ -3055,30 +1515,1685 @@ msgstr ""
msgid "Item filed"
msgstr ""
#: include/Contact.php:119
#: include/conversation.php:144 include/like.php:184
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr ""
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:185 mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr ""
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: include/conversation.php:303
msgid "post/item"
msgstr ""
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr ""
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr ""
#: include/conversation.php:586 include/conversation.php:1481
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr ""
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr ""
#: include/conversation.php:709 mod/admin.php:1414 mod/content.php:454
#: mod/content.php:759 mod/photos.php:1682 mod/contacts.php:808
#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:741
#: object/Item.php:134
msgid "Delete"
msgstr ""
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr ""
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr ""
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr ""
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr ""
#: include/conversation.php:791 include/conversation.php:1264
#: mod/content.php:515 mod/content.php:948 mod/photos.php:1570
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 object/Item.php:406
msgid "Please wait"
msgstr ""
#: include/conversation.php:870
msgid "remove"
msgstr ""
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr ""
#: include/conversation.php:966
msgid "Follow Thread"
msgstr ""
#: include/conversation.php:967 include/Contact.php:404
msgid "View Status"
msgstr ""
#: include/conversation.php:968 include/conversation.php:984
#: include/Contact.php:347 include/Contact.php:360 include/Contact.php:405
#: mod/dirfind.php:203 mod/directory.php:155 mod/match.php:71
#: mod/allfriends.php:65 mod/suggest.php:82
msgid "View Profile"
msgstr ""
#: include/conversation.php:969 include/Contact.php:406
msgid "View Photos"
msgstr ""
#: include/conversation.php:970 include/Contact.php:407
msgid "Network Posts"
msgstr ""
#: include/conversation.php:971 include/Contact.php:408
msgid "View Contact"
msgstr ""
#: include/conversation.php:972 include/Contact.php:410
msgid "Send PM"
msgstr ""
#: include/conversation.php:976 include/Contact.php:411
msgid "Poke"
msgstr ""
#: include/conversation.php:1097
#, php-format
msgid "%s likes this."
msgstr ""
#: include/conversation.php:1100
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: include/conversation.php:1103
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1106
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1109
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1119
msgid "and"
msgstr ""
#: include/conversation.php:1125
#, php-format
msgid ", and %d other people"
msgstr ""
#: include/conversation.php:1134
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: include/conversation.php:1135
#, php-format
msgid "%s like this."
msgstr ""
#: include/conversation.php:1138
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: include/conversation.php:1139
#, php-format
msgid "%s don't like this."
msgstr ""
#: include/conversation.php:1142
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1143
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1146
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1147
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1150
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr ""
#: include/conversation.php:1151
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: include/conversation.php:1191 include/conversation.php:1209
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr ""
#: include/conversation.php:1192 include/conversation.php:1210
msgid "Please enter a video link/URL:"
msgstr ""
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Please enter an audio link/URL:"
msgstr ""
#: include/conversation.php:1194 include/conversation.php:1212
msgid "Tag term:"
msgstr ""
#: include/conversation.php:1195 include/conversation.php:1213
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr ""
#: include/conversation.php:1196 include/conversation.php:1214
msgid "Where are you right now?"
msgstr ""
#: include/conversation.php:1197
msgid "Delete item(s)?"
msgstr ""
#: include/conversation.php:1245 mod/photos.php:1569
msgid "Share"
msgstr ""
#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr ""
#: include/conversation.php:1247 mod/editpost.php:111
msgid "upload photo"
msgstr ""
#: include/conversation.php:1248 mod/editpost.php:112
msgid "Attach file"
msgstr ""
#: include/conversation.php:1249 mod/editpost.php:113
msgid "attach file"
msgstr ""
#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr ""
#: include/conversation.php:1251 mod/editpost.php:115
msgid "web link"
msgstr ""
#: include/conversation.php:1252 mod/editpost.php:116
msgid "Insert video link"
msgstr ""
#: include/conversation.php:1253 mod/editpost.php:117
msgid "video link"
msgstr ""
#: include/conversation.php:1254 mod/editpost.php:118
msgid "Insert audio link"
msgstr ""
#: include/conversation.php:1255 mod/editpost.php:119
msgid "audio link"
msgstr ""
#: include/conversation.php:1256 mod/editpost.php:120
msgid "Set your location"
msgstr ""
#: include/conversation.php:1257 mod/editpost.php:121
msgid "set location"
msgstr ""
#: include/conversation.php:1258 mod/editpost.php:122
msgid "Clear browser location"
msgstr ""
#: include/conversation.php:1259 mod/editpost.php:123
msgid "clear location"
msgstr ""
#: include/conversation.php:1261 mod/editpost.php:137
msgid "Set title"
msgstr ""
#: include/conversation.php:1263 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr ""
#: include/conversation.php:1265 mod/editpost.php:125
msgid "Permission settings"
msgstr ""
#: include/conversation.php:1266 mod/editpost.php:154
msgid "permissions"
msgstr ""
#: include/conversation.php:1274 mod/editpost.php:134
msgid "Public post"
msgstr ""
#: include/conversation.php:1279 mod/events.php:504 mod/content.php:737
#: mod/photos.php:1591 mod/photos.php:1639 mod/photos.php:1725
#: mod/editpost.php:145 object/Item.php:729
msgid "Preview"
msgstr ""
#: include/conversation.php:1289
msgid "Post to Groups"
msgstr ""
#: include/conversation.php:1290
msgid "Post to Contacts"
msgstr ""
#: include/conversation.php:1291
msgid "Private post"
msgstr ""
#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr ""
#: include/conversation.php:1297 mod/editpost.php:153
msgid "Browser"
msgstr ""
#: include/conversation.php:1453
msgid "View all"
msgstr ""
#: include/conversation.php:1475
msgid "Like"
msgid_plural "Likes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1478
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] ""
msgstr[1] ""
#: include/conversation.php:1484
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
msgid "Contact Photos"
msgstr ""
#: include/identity.php:42
msgid "Requested account is not available."
msgstr ""
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr ""
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr ""
#: include/identity.php:251
msgid "Atom feed"
msgstr ""
#: include/identity.php:282 include/nav.php:189
msgid "Profiles"
msgstr ""
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr ""
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr ""
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr ""
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr ""
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr ""
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr ""
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr ""
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr ""
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr ""
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/directory.php:145 mod/contacts.php:632
msgid "About:"
msgstr ""
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr ""
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr ""
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr ""
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr ""
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr ""
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr ""
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr ""
#: include/identity.php:569
msgid "[No description]"
msgstr ""
#: include/identity.php:593
msgid "Event Reminders"
msgstr ""
#: include/identity.php:594
msgid "Events this week:"
msgstr ""
#: include/identity.php:605 include/identity.php:691 include/identity.php:722
#: include/nav.php:82 mod/profperm.php:104 mod/contacts.php:639
#: mod/contacts.php:841 mod/newmember.php:32 view/theme/frio/theme.php:250
msgid "Profile"
msgstr ""
#: include/identity.php:614 mod/settings.php:1279
msgid "Full Name:"
msgstr ""
#: include/identity.php:621
msgid "j F, Y"
msgstr ""
#: include/identity.php:622
msgid "j F"
msgstr ""
#: include/identity.php:633
msgid "Age:"
msgstr ""
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr ""
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr ""
#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
#: mod/follow.php:134
msgid "Tags:"
msgstr ""
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr ""
#: include/identity.php:655
msgid "Religion:"
msgstr ""
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr ""
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr ""
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr ""
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr ""
#: include/identity.php:668
msgid "Musical interests:"
msgstr ""
#: include/identity.php:670
msgid "Books, literature:"
msgstr ""
#: include/identity.php:672
msgid "Television:"
msgstr ""
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr ""
#: include/identity.php:676
msgid "Love/Romance:"
msgstr ""
#: include/identity.php:678
msgid "Work/employment:"
msgstr ""
#: include/identity.php:680
msgid "School/education:"
msgstr ""
#: include/identity.php:684
msgid "Forums:"
msgstr ""
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr ""
#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
#: mod/contacts.php:870
msgid "Advanced"
msgstr ""
#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:249
msgid "Status"
msgstr ""
#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:143
msgid "Status Messages and Posts"
msgstr ""
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr ""
#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
#: view/theme/frio/theme.php:251
msgid "Photos"
msgstr ""
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr ""
#: include/identity.php:738 include/identity.php:741 include/nav.php:84
#: view/theme/frio/theme.php:252
msgid "Videos"
msgstr ""
#: include/identity.php:750 include/identity.php:761 include/nav.php:85
#: include/nav.php:149 mod/events.php:379 mod/cal.php:275
#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
msgid "Events"
msgstr ""
#: include/identity.php:753 include/identity.php:764 include/nav.php:149
#: view/theme/frio/theme.php:257
msgid "Events and Calendar"
msgstr ""
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr ""
#: include/identity.php:775
msgid "Only You Can See This"
msgstr ""
#: include/follow.php:77 mod/dfrn_request.php:509
msgid "Disallowed profile URL."
msgstr ""
#: include/follow.php:82
msgid "Connect URL missing."
msgstr ""
#: include/follow.php:109
msgid ""
"This site is not configured to allow communications with other networks."
msgstr ""
#: include/follow.php:110 include/follow.php:130
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: include/follow.php:128
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: include/follow.php:132
msgid "An author or name was not found."
msgstr ""
#: include/follow.php:134
msgid "No browser URL could be matched to this address."
msgstr ""
#: include/follow.php:136
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: include/follow.php:137
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: include/follow.php:143
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: include/follow.php:153
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: include/follow.php:254
msgid "Unable to retrieve contact information."
msgstr ""
#: include/follow.php:287
msgid "following"
msgstr ""
#: include/Contact.php:105
msgid "stopped following"
msgstr ""
#: include/Contact.php:395
#: include/Contact.php:409
msgid "Drop Contact"
msgstr ""
#: include/Contact.php:770
#: include/Contact.php:784
msgid "Organisation"
msgstr ""
#: include/Contact.php:773
#: include/Contact.php:787
msgid "News"
msgstr ""
#: include/Contact.php:776
#: include/Contact.php:790
msgid "Forum"
msgstr ""
#: include/oembed.php:264
msgid "Embedded content"
msgstr ""
#: include/oembed.php:272
msgid "Embedding disabled"
msgstr ""
#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr ""
#: include/bbcode.php:465
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr ""
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr ""
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr ""
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr ""
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr ""
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr ""
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr ""
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr ""
#: include/contact_selectors.php:56 mod/admin.php:890
msgid "Frequently"
msgstr ""
#: include/contact_selectors.php:57 mod/admin.php:891
msgid "Hourly"
msgstr ""
#: include/contact_selectors.php:58 mod/admin.php:892
msgid "Twice daily"
msgstr ""
#: include/contact_selectors.php:59 mod/admin.php:893
msgid "Daily"
msgstr ""
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr ""
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr ""
#: include/contact_selectors.php:76 mod/dfrn_request.php:868
msgid "Friendica"
msgstr ""
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr ""
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
msgid "Email"
msgstr ""
#: include/contact_selectors.php:80 mod/dfrn_request.php:870
#: mod/settings.php:842
msgid "Diaspora"
msgstr ""
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr ""
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
#: include/contact_selectors.php:87
msgid "Google+"
msgstr ""
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr ""
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr ""
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr ""
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr ""
#: include/contact_selectors.php:92
msgid "App.net"
msgstr ""
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr ""
#: include/dbstructure.php:26
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database "
"might be invalid."
msgstr ""
#: include/dbstructure.php:31
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr ""
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
msgstr ""
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr ""
#: include/auth.php:45
msgid "Logged out."
msgstr ""
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
msgid "Login failed."
msgstr ""
#: include/auth.php:132 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:132 include/user.php:75
msgid "The error message was:"
msgstr ""
#: include/network.php:595
msgid "view full size"
msgstr ""
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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:209
msgid "Default privacy group for new contacts"
msgstr ""
#: include/group.php:242
msgid "Everybody"
msgstr ""
#: include/group.php:265
msgid "edit"
msgstr ""
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr ""
#: include/group.php:288
msgid "Edit groups"
msgstr ""
#: include/group.php:290
msgid "Edit group"
msgstr ""
#: include/group.php:291
msgid "Create a new group"
msgstr ""
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr ""
#: include/group.php:294
msgid "Contacts not in any group"
msgstr ""
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr ""
#: include/Photo.php:1040 include/Photo.php:1056 include/Photo.php:1064
#: include/Photo.php:1089 include/message.php:145 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
msgid "Wall Photos"
msgstr ""
#: include/delivery.php:446
msgid "(no subject)"
msgstr ""
#: include/user.php:39 mod/settings.php:373
msgid "Passwords do not match. Password unchanged."
msgstr ""
#: include/user.php:48
msgid "An invitation is required."
msgstr ""
#: include/user.php:53
msgid "Invitation could not be verified."
msgstr ""
#: include/user.php:61
msgid "Invalid OpenID url"
msgstr ""
#: include/user.php:82
msgid "Please enter the required information."
msgstr ""
#: include/user.php:96
msgid "Please use a shorter name."
msgstr ""
#: include/user.php:98
msgid "Name too short."
msgstr ""
#: include/user.php:113
msgid "That doesn't appear to be your full (First Last) name."
msgstr ""
#: include/user.php:118
msgid "Your email domain is not among those allowed on this site."
msgstr ""
#: include/user.php:121
msgid "Not a valid email address."
msgstr ""
#: include/user.php:134
msgid "Cannot use that email."
msgstr ""
#: include/user.php:140
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
msgstr ""
#: include/user.php:147 include/user.php:245
msgid "Nickname is already registered. Please choose another."
msgstr ""
#: include/user.php:157
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: include/user.php:173
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr ""
#: include/user.php:231
msgid "An error occurred during registration. Please try again."
msgstr ""
#: include/user.php:256 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr ""
#: include/user.php:266
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: include/user.php:345 include/user.php:352 include/user.php:359
#: mod/photos.php:66 mod/photos.php:180 mod/photos.php:751 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1819 mod/profile_photo.php:74
#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210
#: mod/profile_photo.php:302 mod/profile_photo.php:311
msgid "Profile Photos"
msgstr ""
#: include/user.php:390
#, php-format
msgid ""
"\n"
"\t\tDear %1$s,\n"
"\t\t\tThank you for registering at %2$s. Your account is pending for "
"approval by the administrator.\n"
"\t"
msgstr ""
#: include/user.php:400
#, php-format
msgid "Registration at %s"
msgstr ""
#: include/user.php:410
#, 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:414
#, 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:446 mod/admin.php:1213
#, php-format
msgid "Registration details for %s"
msgstr ""
#: include/api.php:1018
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1038
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1059
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/features.php:70
msgid "General Features"
msgstr ""
#: include/features.php:72
msgid "Multiple Profiles"
msgstr ""
#: include/features.php:72
msgid "Ability to create multiple profiles"
msgstr ""
#: include/features.php:73
msgid "Photo Location"
msgstr ""
#: include/features.php:73
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present) "
"prior to stripping metadata and links it to a map."
msgstr ""
#: include/features.php:74
msgid "Export Public Calendar"
msgstr ""
#: include/features.php:74
msgid "Ability for visitors to download the public calendar"
msgstr ""
#: include/features.php:79
msgid "Post Composition Features"
msgstr ""
#: include/features.php:80
msgid "Richtext Editor"
msgstr ""
#: include/features.php:80
msgid "Enable richtext editor"
msgstr ""
#: include/features.php:81
msgid "Post Preview"
msgstr ""
#: include/features.php:81
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: include/features.php:82
msgid "Auto-mention Forums"
msgstr ""
#: include/features.php:82
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr ""
#: include/features.php:87
msgid "Network Sidebar Widgets"
msgstr ""
#: include/features.php:88
msgid "Search by Date"
msgstr ""
#: include/features.php:88
msgid "Ability to select posts by date ranges"
msgstr ""
#: include/features.php:89 include/features.php:119
msgid "List Forums"
msgstr ""
#: include/features.php:89
msgid "Enable widget to display the forums your are connected with"
msgstr ""
#: include/features.php:90
msgid "Group Filter"
msgstr ""
#: include/features.php:90
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: include/features.php:91
msgid "Network Filter"
msgstr ""
#: include/features.php:91
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: include/features.php:92 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr ""
#: include/features.php:92
msgid "Save search terms for re-use"
msgstr ""
#: include/features.php:97
msgid "Network Tabs"
msgstr ""
#: include/features.php:98
msgid "Network Personal Tab"
msgstr ""
#: include/features.php:98
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: include/features.php:99
msgid "Network New Tab"
msgstr ""
#: include/features.php:99
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: include/features.php:100
msgid "Network Shared Links Tab"
msgstr ""
#: include/features.php:100
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: include/features.php:105
msgid "Post/Comment Tools"
msgstr ""
#: include/features.php:106
msgid "Multiple Deletion"
msgstr ""
#: include/features.php:106
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: include/features.php:107
msgid "Edit Sent Posts"
msgstr ""
#: include/features.php:107
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: include/features.php:108
msgid "Tagging"
msgstr ""
#: include/features.php:108
msgid "Ability to tag existing posts"
msgstr ""
#: include/features.php:109
msgid "Post Categories"
msgstr ""
#: include/features.php:109
msgid "Add categories to your posts"
msgstr ""
#: include/features.php:110
msgid "Ability to file posts under folders"
msgstr ""
#: include/features.php:111
msgid "Dislike Posts"
msgstr ""
#: include/features.php:111
msgid "Ability to dislike posts/comments"
msgstr ""
#: include/features.php:112
msgid "Star Posts"
msgstr ""
#: include/features.php:112
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: include/features.php:113
msgid "Mute Post Notifications"
msgstr ""
#: include/features.php:113
msgid "Ability to mute notifications for a thread"
msgstr ""
#: include/features.php:118
msgid "Advanced Profile Settings"
msgstr ""
#: include/features.php:119
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr ""
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr ""
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr ""
#: include/nav.php:78 view/theme/frio/theme.php:246
msgid "End this session"
msgstr ""
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
msgid "Your posts and conversations"
msgstr ""
#: include/nav.php:82 view/theme/frio/theme.php:250
msgid "Your profile page"
msgstr ""
#: include/nav.php:83 view/theme/frio/theme.php:251
msgid "Your photos"
msgstr ""
#: include/nav.php:84 view/theme/frio/theme.php:252
msgid "Your videos"
msgstr ""
#: include/nav.php:85 view/theme/frio/theme.php:253
msgid "Your events"
msgstr ""
#: include/nav.php:86
msgid "Personal notes"
msgstr ""
#: include/nav.php:86
msgid "Your personal notes"
msgstr ""
#: include/nav.php:95
msgid "Sign in"
msgstr ""
#: include/nav.php:105
msgid "Home Page"
msgstr ""
#: include/nav.php:109
msgid "Create an account"
msgstr ""
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
msgid "Help"
msgstr ""
#: include/nav.php:115
msgid "Help and documentation"
msgstr ""
#: include/nav.php:119
msgid "Apps"
msgstr ""
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr ""
#: include/nav.php:123
msgid "Search site content"
msgstr ""
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
msgid "Community"
msgstr ""
#: include/nav.php:143
msgid "Conversations on this site"
msgstr ""
#: include/nav.php:145
msgid "Conversations on the network"
msgstr ""
#: include/nav.php:152
msgid "Directory"
msgstr ""
#: include/nav.php:152
msgid "People directory"
msgstr ""
#: include/nav.php:154
msgid "Information"
msgstr ""
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr ""
#: include/nav.php:158 view/theme/frio/theme.php:256
msgid "Conversations from your friends"
msgstr ""
#: include/nav.php:159
msgid "Network Reset"
msgstr ""
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr ""
#: include/nav.php:166
msgid "Friend Requests"
msgstr ""
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr ""
#: include/nav.php:170
msgid "See all notifications"
msgstr ""
#: include/nav.php:171 mod/settings.php:902
msgid "Mark as seen"
msgstr ""
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr ""
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
msgid "Messages"
msgstr ""
#: include/nav.php:175 view/theme/frio/theme.php:258
msgid "Private mail"
msgstr ""
#: include/nav.php:176
msgid "Inbox"
msgstr ""
#: include/nav.php:177
msgid "Outbox"
msgstr ""
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr ""
#: include/nav.php:181
msgid "Manage"
msgstr ""
#: include/nav.php:181
msgid "Manage other pages"
msgstr ""
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr ""
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr ""
#: include/nav.php:186 mod/admin.php:1524 mod/admin.php:1782
#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:259
msgid "Settings"
msgstr ""
#: include/nav.php:186 view/theme/frio/theme.php:259
msgid "Account settings"
msgstr ""
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr ""
#: include/nav.php:192 view/theme/frio/theme.php:260
msgid "Manage/edit friends and contacts"
msgstr ""
#: include/nav.php:197 mod/admin.php:186
msgid "Admin"
msgstr ""
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr ""
#: include/nav.php:200
msgid "Navigation"
msgstr ""
#: include/nav.php:200
msgid "Site map"
msgstr ""
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr ""
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr ""
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr ""
#: include/acl_selectors.php:332
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: include/acl_selectors.php:333 mod/settings.php:1181
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr ""
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
msgid "show"
msgstr ""
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
msgid "don't show"
msgstr ""
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr ""
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr ""
#: include/acl_selectors.php:350
msgid "Close"
msgstr ""
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr ""
#: index.php:244 mod/apps.php:7
msgid "You must be logged in to use addons. "
msgstr ""
#: index.php:288 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52
#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
msgid "Not Found"
msgstr ""
#: index.php:291 mod/help.php:56
msgid "Page not found."
msgstr ""
#: index.php:400 mod/profperm.php:19 mod/group.php:72
msgid "Permission denied"
msgstr ""
#: index.php:451
msgid "toggle mobile"
msgstr ""
#: mod/regmod.php:55
msgid "Account approved."
msgstr ""
#: mod/regmod.php:92
#, php-format
msgid "Registration revoked for %s"
msgstr ""
#: mod/regmod.php:104
msgid "Please login."
msgstr ""
#: mod/oexchange.php:25
msgid "Post successful."
msgstr ""
#: mod/update_community.php:19 mod/update_notes.php:36
#: mod/update_display.php:23 mod/update_profile.php:35
#: mod/update_network.php:27
msgid "[Embedded content - reload page to view]"
msgstr ""
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr ""
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr ""
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr ""
@ -3100,9 +3215,9 @@ msgstr ""
msgid "Remove term"
msgstr ""
#: mod/search.php:93 mod/search.php:99 mod/dfrn_request.php:790
#: mod/community.php:22 mod/directory.php:37 mod/display.php:200
#: mod/photos.php:944 mod/videos.php:194 mod/viewcontacts.php:35
#: mod/search.php:93 mod/search.php:99 mod/directory.php:37
#: mod/viewcontacts.php:35 mod/videos.php:194 mod/photos.php:944
#: mod/display.php:200 mod/community.php:22 mod/dfrn_request.php:791
msgid "Public access denied."
msgstr ""
@ -3132,6 +3247,210 @@ msgstr ""
msgid "Results for: %s"
msgstr ""
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr ""
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
msgstr ""
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:1000
msgid "Ignore"
msgstr ""
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr ""
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr ""
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr ""
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr ""
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr ""
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr ""
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr ""
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr ""
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
msgid "Approve"
msgstr ""
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr ""
#: mod/notifications.php:196
msgid "yes"
msgstr ""
#: mod/notifications.php:196
msgid "no"
msgstr ""
#: mod/notifications.php:197
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:200
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:209
msgid "Friend"
msgstr ""
#: mod/notifications.php:210
msgid "Sharer"
msgstr ""
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr ""
#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
msgid "Profile URL"
msgstr ""
#: mod/notifications.php:260
msgid "No introductions."
msgstr ""
#: mod/notifications.php:299
msgid "Show unread"
msgstr ""
#: mod/notifications.php:299
msgid "Show all"
msgstr ""
#: mod/notifications.php:305
#, php-format
msgid "No more %s notifications."
msgstr ""
#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:617
msgid "Profile not found."
msgstr ""
#: mod/dfrn_confirm.php:126 mod/fsuggest.php:20 mod/fsuggest.php:92
#: mod/crepair.php:114
msgid "Contact not found."
msgstr ""
#: mod/dfrn_confirm.php:127
msgid ""
"This may occasionally happen if contact was requested by both persons and it "
"has already been approved."
msgstr ""
#: mod/dfrn_confirm.php:246
msgid "Response from remote site was not understood."
msgstr ""
#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
msgid "Unexpected response from remote site: "
msgstr ""
#: mod/dfrn_confirm.php:269
msgid "Confirmation completed successfully."
msgstr ""
#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
msgid "Remote site reported: "
msgstr ""
#: mod/dfrn_confirm.php:283
msgid "Temporary failure. Please wait and try again."
msgstr ""
#: mod/dfrn_confirm.php:290
msgid "Introduction failed or was revoked."
msgstr ""
#: mod/dfrn_confirm.php:419
msgid "Unable to set contact photo."
msgstr ""
#: mod/dfrn_confirm.php:557
#, php-format
msgid "No user record found for '%s' "
msgstr ""
#: mod/dfrn_confirm.php:567
msgid "Our site encryption key is apparently messed up."
msgstr ""
#: mod/dfrn_confirm.php:578
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
#: mod/dfrn_confirm.php:599
msgid "Contact record was not found for you on our site."
msgstr ""
#: mod/dfrn_confirm.php:613
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: mod/dfrn_confirm.php:633
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr ""
#: mod/dfrn_confirm.php:644
msgid "Unable to set your contact credentials on our system."
msgstr ""
#: mod/dfrn_confirm.php:703
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: mod/dfrn_confirm.php:775
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: mod/friendica.php:70
msgid "This is Friendica, version"
msgstr ""
@ -3222,10 +3541,6 @@ msgid ""
"Password reset failed."
msgstr ""
#: mod/lostpass.php:109 boot.php:1793
msgid "Password Reset"
msgstr ""
#: mod/lostpass.php:110
msgid "Your password has been reset as requested."
msgstr ""
@ -3290,10 +3605,6 @@ msgid ""
"your email for further instructions."
msgstr ""
#: mod/lostpass.php:161 boot.php:1781
msgid "Nickname or Email: "
msgstr ""
#: mod/lostpass.php:162
msgid "Reset"
msgstr ""
@ -3306,34 +3617,51 @@ msgstr ""
msgid "Help:"
msgstr ""
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
#: mod/fetch.php:39 mod/fetch.php:48 index.php:284
msgid "Not Found"
msgstr ""
#: mod/help.php:56 index.php:287
msgid "Page not found."
msgstr ""
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
#: mod/wall_attach.php:25 mod/wall_attach.php:76
msgid "Invalid request."
msgstr ""
#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:786
#: mod/wall_upload.php:151 mod/photos.php:786 mod/profile_photo.php:150
#, php-format
msgid "Image exceeds size limit of %s"
msgstr ""
#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:826
#: mod/wall_upload.php:188 mod/photos.php:826 mod/profile_photo.php:159
msgid "Unable to process image."
msgstr ""
#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:853
#: mod/wall_upload.php:221 mod/photos.php:853 mod/profile_photo.php:307
msgid "Image upload failed."
msgstr ""
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr ""
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr ""
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr ""
#: mod/fsuggest.php:107 mod/events.php:506 mod/invite.php:140
#: mod/crepair.php:154 mod/content.php:728 mod/profiles.php:688
#: mod/poke.php:199 mod/photos.php:1104 mod/photos.php:1226
#: mod/photos.php:1539 mod/photos.php:1590 mod/photos.php:1638
#: mod/photos.php:1724 mod/install.php:272 mod/install.php:312
#: mod/contacts.php:577 mod/mood.php:137 mod/localtime.php:45
#: mod/message.php:357 mod/message.php:547 mod/manage.php:143
#: object/Item.php:720 view/theme/frio/config.php:59
#: view/theme/quattro/config.php:64 view/theme/vier/config.php:107
#: view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr ""
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr ""
@ -3342,6 +3670,94 @@ msgstr ""
msgid "Visible to:"
msgstr ""
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr ""
#: mod/events.php:380 mod/cal.php:276
msgid "View"
msgstr ""
#: mod/events.php:381
msgid "Create New Event"
msgstr ""
#: mod/events.php:382 mod/cal.php:277
msgid "Previous"
msgstr ""
#: mod/events.php:383 mod/cal.php:278 mod/install.php:231
msgid "Next"
msgstr ""
#: mod/events.php:392 mod/cal.php:287
msgid "list"
msgstr ""
#: mod/events.php:482
msgid "Event details"
msgstr ""
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr ""
#: mod/events.php:484 mod/events.php:496 mod/profiles.php:716
msgid "Required"
msgstr ""
#: mod/events.php:486 mod/events.php:502
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: mod/events.php:488 mod/events.php:489
msgid "Event Finishes:"
msgstr ""
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr ""
#: mod/events.php:492
msgid "Description:"
msgstr ""
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr ""
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr ""
#: mod/directory.php:197 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr ""
#: mod/directory.php:199
msgid "Find on this site"
msgstr ""
#: mod/directory.php:201
msgid "Results for:"
msgstr ""
#: mod/directory.php:203
msgid "Site Directory"
msgstr ""
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr ""
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
@ -3351,13 +3767,13 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
#: mod/uimport.php:50 mod/register.php:191
#: mod/uimport.php:50 mod/register.php:198
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr ""
#: mod/uimport.php:64 mod/register.php:286
#: mod/uimport.php:64 mod/register.php:295
msgid "Import"
msgstr ""
@ -3392,8 +3808,8 @@ msgid ""
"select \"Export account\""
msgstr ""
#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:939
#: mod/viewcontacts.php:97
#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586
#: mod/contacts.php:939
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
@ -3406,6 +3822,18 @@ msgstr ""
msgid "Contacts who are not members of a group"
msgstr ""
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
#: mod/match.php:86
msgid "is interested in:"
msgstr ""
#: mod/match.php:100
msgid "Profile Match"
msgstr ""
#: mod/uexport.php:29
msgid "Export account"
msgstr ""
@ -3528,26 +3956,12 @@ msgid ""
"important, please visit http://friendica.com"
msgstr ""
#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
#: mod/profiles.php:688 mod/contacts.php:577 mod/events.php:506
#: mod/install.php:272 mod/install.php:312 mod/photos.php:1104
#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
#: mod/photos.php:1638 mod/photos.php:1724 object/Item.php:720
#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80
#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70
#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633
#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr ""
#: mod/fbrowser.php:133
msgid "Files"
msgstr ""
#: mod/profperm.php:19 mod/group.php:72 index.php:396
msgid "Permission denied"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr ""
#: mod/profperm.php:25 mod/profperm.php:56
@ -3570,6 +3984,102 @@ msgstr ""
msgid "All Contacts (with secure profile access)"
msgstr ""
#: mod/viewcontacts.php:72
msgid "No contacts."
msgstr ""
#: mod/crepair.php:87
msgid "Contact settings applied."
msgstr ""
#: mod/crepair.php:89
msgid "Contact update failed."
msgstr ""
#: mod/crepair.php:120
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
"information your communications with this contact may stop working."
msgstr ""
#: mod/crepair.php:121
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
#: mod/crepair.php:134 mod/crepair.php:136
msgid "No mirroring"
msgstr ""
#: mod/crepair.php:134
msgid "Mirror as forwarded posting"
msgstr ""
#: mod/crepair.php:134 mod/crepair.php:136
msgid "Mirror as my own posting"
msgstr ""
#: mod/crepair.php:150
msgid "Return to contact editor"
msgstr ""
#: mod/crepair.php:152
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:156
msgid "Remote Self"
msgstr ""
#: mod/crepair.php:159
msgid "Mirror postings from this contact"
msgstr ""
#: mod/crepair.php:161
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr ""
#: mod/crepair.php:165 mod/admin.php:1396 mod/admin.php:1409
#: mod/admin.php:1422 mod/admin.php:1438 mod/settings.php:680
#: mod/settings.php:706
msgid "Name"
msgstr ""
#: mod/crepair.php:166
msgid "Account Nickname"
msgstr ""
#: mod/crepair.php:167
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: mod/crepair.php:168
msgid "Account URL"
msgstr ""
#: mod/crepair.php:169
msgid "Friend Request URL"
msgstr ""
#: mod/crepair.php:170
msgid "Friend Confirm URL"
msgstr ""
#: mod/crepair.php:171
msgid "Notification Endpoint URL"
msgstr ""
#: mod/crepair.php:172
msgid "Poll/Feed URL"
msgstr ""
#: mod/crepair.php:173
msgid "New photo from this URL"
msgstr ""
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr ""
@ -3586,6 +4096,1437 @@ msgstr ""
msgid "Remove"
msgstr ""
#: mod/ping.php:261
msgid "{0} wants to be your friend"
msgstr ""
#: mod/ping.php:276
msgid "{0} sent you a message"
msgstr ""
#: mod/ping.php:291
msgid "{0} requested registration"
msgstr ""
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr ""
#: mod/admin.php:156 mod/admin.php:954
msgid "Site"
msgstr ""
#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
msgid "Users"
msgstr ""
#: mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 mod/settings.php:74
msgid "Plugins"
msgstr ""
#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
msgid "Themes"
msgstr ""
#: mod/admin.php:160 mod/settings.php:52
msgid "Additional features"
msgstr ""
#: mod/admin.php:161
msgid "DB updates"
msgstr ""
#: mod/admin.php:162 mod/admin.php:406
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:163 mod/admin.php:372
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
msgid "Logs"
msgstr ""
#: mod/admin.php:178 mod/admin.php:1972
msgid "View Logs"
msgstr ""
#: mod/admin.php:179
msgid "probe address"
msgstr ""
#: mod/admin.php:180
msgid "check webfinger"
msgstr ""
#: mod/admin.php:187
msgid "Plugin Features"
msgstr ""
#: mod/admin.php:189
msgid "diagnostics"
msgstr ""
#: mod/admin.php:190
msgid "User registrations waiting for confirmation"
msgstr ""
#: mod/admin.php:306
msgid "unknown"
msgstr ""
#: mod/admin.php:365
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr ""
#: mod/admin.php:366
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr ""
#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
msgid "Administration"
msgstr ""
#: mod/admin.php:378
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr ""
#: mod/admin.php:408
msgid "ID"
msgstr ""
#: mod/admin.php:409
msgid "Recipient Name"
msgstr ""
#: mod/admin.php:410
msgid "Recipient Profile"
msgstr ""
#: mod/admin.php:412
msgid "Created"
msgstr ""
#: mod/admin.php:413
msgid "Last Tried"
msgstr ""
#: mod/admin.php:414
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:439
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
"InnoDB. As Friendica will use InnoDB only features in the future, you should "
"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
"converting the table engines. You may also use the <tt>convert_innodb.sql</"
"tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"
msgstr ""
#: mod/admin.php:444
msgid ""
"You are using a MySQL version which does not support all features that "
"Friendica uses. You should consider switching to MariaDB."
msgstr ""
#: mod/admin.php:448 mod/admin.php:1352
msgid "Normal Account"
msgstr ""
#: mod/admin.php:449 mod/admin.php:1353
msgid "Soapbox Account"
msgstr ""
#: mod/admin.php:450 mod/admin.php:1354
msgid "Community/Celebrity Account"
msgstr ""
#: mod/admin.php:451 mod/admin.php:1355
msgid "Automatic Friend Account"
msgstr ""
#: mod/admin.php:452
msgid "Blog Account"
msgstr ""
#: mod/admin.php:453
msgid "Private Forum"
msgstr ""
#: mod/admin.php:479
msgid "Message queues"
msgstr ""
#: mod/admin.php:485
msgid "Summary"
msgstr ""
#: mod/admin.php:488
msgid "Registered users"
msgstr ""
#: mod/admin.php:490
msgid "Pending registrations"
msgstr ""
#: mod/admin.php:491
msgid "Version"
msgstr ""
#: mod/admin.php:496
msgid "Active plugins"
msgstr ""
#: mod/admin.php:521
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr ""
#: mod/admin.php:826
msgid "RINO2 needs mcrypt php extension to work."
msgstr ""
#: mod/admin.php:834
msgid "Site settings updated."
msgstr ""
#: mod/admin.php:862 mod/settings.php:934
msgid "No special theme for mobile devices"
msgstr ""
#: mod/admin.php:881
msgid "No community page"
msgstr ""
#: mod/admin.php:882
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:883
msgid "Global community page"
msgstr ""
#: mod/admin.php:888 mod/contacts.php:530
msgid "Never"
msgstr ""
#: mod/admin.php:889
msgid "At post arrival"
msgstr ""
#: mod/admin.php:897 mod/contacts.php:557
msgid "Disabled"
msgstr ""
#: mod/admin.php:899
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:900
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:904
msgid "One month"
msgstr ""
#: mod/admin.php:905
msgid "Three months"
msgstr ""
#: mod/admin.php:906
msgid "Half a year"
msgstr ""
#: mod/admin.php:907
msgid "One year"
msgstr ""
#: mod/admin.php:912
msgid "Multi user instance"
msgstr ""
#: mod/admin.php:935
msgid "Closed"
msgstr ""
#: mod/admin.php:936
msgid "Requires approval"
msgstr ""
#: mod/admin.php:937
msgid "Open"
msgstr ""
#: mod/admin.php:941
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: mod/admin.php:942
msgid "Force all links to use SSL"
msgstr ""
#: mod/admin.php:943
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
#: mod/admin.php:2055 mod/settings.php:678 mod/settings.php:788
#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
#: mod/settings.php:1264
msgid "Save Settings"
msgstr ""
#: mod/admin.php:956 mod/register.php:272
msgid "Registration"
msgstr ""
#: mod/admin.php:957
msgid "File upload"
msgstr ""
#: mod/admin.php:958
msgid "Policies"
msgstr ""
#: mod/admin.php:960
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:961
msgid "Performance"
msgstr ""
#: mod/admin.php:962
msgid "Worker"
msgstr ""
#: mod/admin.php:963
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr ""
#: mod/admin.php:966
msgid "Site name"
msgstr ""
#: mod/admin.php:967
msgid "Host name"
msgstr ""
#: mod/admin.php:968
msgid "Sender Email"
msgstr ""
#: mod/admin.php:968
msgid ""
"The email address your server shall use to send notification emails from."
msgstr ""
#: mod/admin.php:969
msgid "Banner/Logo"
msgstr ""
#: mod/admin.php:970
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:970
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:971
msgid "Touch icon"
msgstr ""
#: mod/admin.php:971
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:972
msgid "Additional Info"
msgstr ""
#: mod/admin.php:972
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr ""
#: mod/admin.php:973
msgid "System language"
msgstr ""
#: mod/admin.php:974
msgid "System theme"
msgstr ""
#: mod/admin.php:974
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: mod/admin.php:975
msgid "Mobile system theme"
msgstr ""
#: mod/admin.php:975
msgid "Theme for mobile devices"
msgstr ""
#: mod/admin.php:976
msgid "SSL link policy"
msgstr ""
#: mod/admin.php:976
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: mod/admin.php:977
msgid "Force SSL"
msgstr ""
#: mod/admin.php:977
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
"to endless loops."
msgstr ""
#: mod/admin.php:978
msgid "Old style 'Share'"
msgstr ""
#: mod/admin.php:978
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr ""
#: mod/admin.php:979
msgid "Hide help entry from navigation menu"
msgstr ""
#: mod/admin.php:979
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:980
msgid "Single user instance"
msgstr ""
#: mod/admin.php:980
msgid "Make this instance multi-user or single-user for the named user"
msgstr ""
#: mod/admin.php:981
msgid "Maximum image size"
msgstr ""
#: mod/admin.php:981
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: mod/admin.php:982
msgid "Maximum image length"
msgstr ""
#: mod/admin.php:982
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: mod/admin.php:983
msgid "JPEG image quality"
msgstr ""
#: mod/admin.php:983
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: mod/admin.php:985
msgid "Register policy"
msgstr ""
#: mod/admin.php:986
msgid "Maximum Daily Registrations"
msgstr ""
#: mod/admin.php:986
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:987
msgid "Register text"
msgstr ""
#: mod/admin.php:987
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: mod/admin.php:988
msgid "Accounts abandoned after x days"
msgstr ""
#: mod/admin.php:988
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
#: mod/admin.php:989
msgid "Allowed friend domains"
msgstr ""
#: mod/admin.php:989
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:990
msgid "Allowed email domains"
msgstr ""
#: mod/admin.php:990
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:991
msgid "Block public"
msgstr ""
#: mod/admin.php:991
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:992
msgid "Force publish"
msgstr ""
#: mod/admin.php:992
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: mod/admin.php:993
msgid "Global directory URL"
msgstr ""
#: mod/admin.php:993
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
#: mod/admin.php:994
msgid "Allow threaded items"
msgstr ""
#: mod/admin.php:994
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: mod/admin.php:995
msgid "Private posts by default for new users"
msgstr ""
#: mod/admin.php:995
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: mod/admin.php:996
msgid "Don't include post content in email notifications"
msgstr ""
#: mod/admin.php:996
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:997
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: mod/admin.php:997
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: mod/admin.php:998
msgid "Don't embed private images in posts"
msgstr ""
#: mod/admin.php:998
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:999
msgid "Allow Users to set remote_self"
msgstr ""
#: mod/admin.php:999
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:1000
msgid "Block multiple registrations"
msgstr ""
#: mod/admin.php:1000
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: mod/admin.php:1001
msgid "OpenID support"
msgstr ""
#: mod/admin.php:1001
msgid "OpenID support for registration and logins."
msgstr ""
#: mod/admin.php:1002
msgid "Fullname check"
msgstr ""
#: mod/admin.php:1002
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: mod/admin.php:1003
msgid "UTF-8 Regular expressions"
msgstr ""
#: mod/admin.php:1003
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: mod/admin.php:1004
msgid "Community Page Style"
msgstr ""
#: mod/admin.php:1004
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:1005
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:1005
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:1006
msgid "Enable OStatus support"
msgstr ""
#: mod/admin.php:1006
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:1007
msgid "OStatus conversation completion interval"
msgstr ""
#: mod/admin.php:1007
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr ""
#: mod/admin.php:1008
msgid "Only import OStatus threads from our contacts"
msgstr ""
#: mod/admin.php:1008
msgid ""
"Normally we import every content from our OStatus contacts. With this option "
"we only store threads that are started by a contact that is known on our "
"system."
msgstr ""
#: mod/admin.php:1009
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:1011
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub "
"directory."
msgstr ""
#: mod/admin.php:1012
msgid "Enable Diaspora support"
msgstr ""
#: mod/admin.php:1012
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: mod/admin.php:1013
msgid "Only allow Friendica contacts"
msgstr ""
#: mod/admin.php:1013
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: mod/admin.php:1014
msgid "Verify SSL"
msgstr ""
#: mod/admin.php:1014
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:1015
msgid "Proxy user"
msgstr ""
#: mod/admin.php:1016
msgid "Proxy URL"
msgstr ""
#: mod/admin.php:1017
msgid "Network timeout"
msgstr ""
#: mod/admin.php:1017
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: mod/admin.php:1018
msgid "Delivery interval"
msgstr ""
#: mod/admin.php:1018
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:1019
msgid "Poll interval"
msgstr ""
#: mod/admin.php:1019
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: mod/admin.php:1020
msgid "Maximum Load Average"
msgstr ""
#: mod/admin.php:1020
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: mod/admin.php:1021
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:1021
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:1022
msgid "Maximum table size for optimization"
msgstr ""
#: mod/admin.php:1022
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr ""
#: mod/admin.php:1023
msgid "Minimum level of fragmentation"
msgstr ""
#: mod/admin.php:1023
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr ""
#: mod/admin.php:1025
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:1025
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:1026
msgid "Days between requery"
msgstr ""
#: mod/admin.php:1026
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:1027
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:1027
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:1028
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:1028
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:1029
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:1029
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:1031
msgid "Publish server information"
msgstr ""
#: mod/admin.php:1031
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 <a "
"href='http://the-federation.info/'>the-federation.info</a> for details."
msgstr ""
#: mod/admin.php:1033
msgid "Use MySQL full text engine"
msgstr ""
#: mod/admin.php:1033
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr ""
#: mod/admin.php:1034
msgid "Suppress Language"
msgstr ""
#: mod/admin.php:1034
msgid "Suppress language information in meta information about a posting."
msgstr ""
#: mod/admin.php:1035
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:1035
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:1036
msgid "Path to item cache"
msgstr ""
#: mod/admin.php:1036
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:1037
msgid "Cache duration in seconds"
msgstr ""
#: mod/admin.php:1037
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:1038
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:1038
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:1039
msgid "Path for lock file"
msgstr ""
#: mod/admin.php:1039
msgid ""
"The lock file is used to avoid multiple pollers at one time. Only define a "
"folder here."
msgstr ""
#: mod/admin.php:1040
msgid "Temp path"
msgstr ""
#: mod/admin.php:1040
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:1041
msgid "Base path to installation"
msgstr ""
#: mod/admin.php:1041
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:1042
msgid "Disable picture proxy"
msgstr ""
#: mod/admin.php:1042
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on "
"systems with very low bandwith."
msgstr ""
#: mod/admin.php:1043
msgid "Enable old style pager"
msgstr ""
#: mod/admin.php:1043
msgid ""
"The old style pager has page numbers but slows down massively the page speed."
msgstr ""
#: mod/admin.php:1044
msgid "Only search in tags"
msgstr ""
#: mod/admin.php:1044
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
#: mod/admin.php:1046
msgid "New base url"
msgstr ""
#: mod/admin.php:1046
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts "
"of all users."
msgstr ""
#: mod/admin.php:1048
msgid "RINO Encryption"
msgstr ""
#: mod/admin.php:1048
msgid "Encryption layer between nodes."
msgstr ""
#: mod/admin.php:1049
msgid "Embedly API key"
msgstr ""
#: mod/admin.php:1049
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr ""
#: mod/admin.php:1051
msgid "Enable 'worker' background processing"
msgstr ""
#: mod/admin.php:1051
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr ""
#: mod/admin.php:1052
msgid "Maximum number of parallel workers"
msgstr ""
#: mod/admin.php:1052
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr ""
#: mod/admin.php:1053
msgid "Don't use 'proc_open' with the worker"
msgstr ""
#: mod/admin.php:1053
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr ""
#: mod/admin.php:1054
msgid "Enable fastlane"
msgstr ""
#: mod/admin.php:1054
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes "
"with higher priority are blocked by processes of lower priority."
msgstr ""
#: mod/admin.php:1055
msgid "Enable frontend worker"
msgstr ""
#: mod/admin.php:1055
msgid ""
"When enabled the Worker process is triggered when backend access is "
"performed (e.g. messages being delivered). On smaller sites you might want "
"to call yourdomain.tld/worker on a regular basis via an external cron job. "
"You should only enable this option if you cannot utilize cron/scheduled jobs "
"on your server. The worker background process needs to be activated for this."
msgstr ""
#: mod/admin.php:1084
msgid "Update has been marked successful"
msgstr ""
#: mod/admin.php:1092
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: mod/admin.php:1095
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: mod/admin.php:1107
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: mod/admin.php:1110
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: mod/admin.php:1114
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: mod/admin.php:1116
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:1135
msgid "No failed updates."
msgstr ""
#: mod/admin.php:1136
msgid "Check database structure"
msgstr ""
#: mod/admin.php:1141
msgid "Failed Updates"
msgstr ""
#: mod/admin.php:1142
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: mod/admin.php:1143
msgid "Mark success (if update was manually applied)"
msgstr ""
#: mod/admin.php:1144
msgid "Attempt to execute this update step automatically"
msgstr ""
#: mod/admin.php:1178
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: mod/admin.php:1181
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\n"
"\t\t\tSite Location:\t%1$s\n"
"\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n"
"\n"
"\t\t\tYou may change your password from your account \"Settings\" page after "
"logging\n"
"\t\t\tin.\n"
"\n"
"\t\t\tPlease take a few moments to review the other account settings on that "
"page.\n"
"\n"
"\t\t\tYou may also wish to add some basic information to your default "
"profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
"and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more "
"specific\n"
"\t\t\tthan that.\n"
"\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are "
"necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n"
"\n"
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:1225
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1232
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1279
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: mod/admin.php:1287
#, php-format
msgid "User '%s' unblocked"
msgstr ""
#: mod/admin.php:1287
#, php-format
msgid "User '%s' blocked"
msgstr ""
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Register date"
msgstr ""
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last login"
msgstr ""
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last item"
msgstr ""
#: mod/admin.php:1396 mod/settings.php:43
msgid "Account"
msgstr ""
#: mod/admin.php:1405
msgid "Add User"
msgstr ""
#: mod/admin.php:1406
msgid "select all"
msgstr ""
#: mod/admin.php:1407
msgid "User registrations waiting for confirm"
msgstr ""
#: mod/admin.php:1408
msgid "User waiting for permanent deletion"
msgstr ""
#: mod/admin.php:1409
msgid "Request date"
msgstr ""
#: mod/admin.php:1410
msgid "No registrations."
msgstr ""
#: mod/admin.php:1411
msgid "Note from the user"
msgstr ""
#: mod/admin.php:1413
msgid "Deny"
msgstr ""
#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Block"
msgstr ""
#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Unblock"
msgstr ""
#: mod/admin.php:1417
msgid "Site admin"
msgstr ""
#: mod/admin.php:1418
msgid "Account expired"
msgstr ""
#: mod/admin.php:1421
msgid "New User"
msgstr ""
#: mod/admin.php:1422
msgid "Deleted since"
msgstr ""
#: mod/admin.php:1427
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:1428
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:1438
msgid "Name of the new user."
msgstr ""
#: mod/admin.php:1439
msgid "Nickname"
msgstr ""
#: mod/admin.php:1439
msgid "Nickname of the new user."
msgstr ""
#: mod/admin.php:1440
msgid "Email address of the new user."
msgstr ""
#: mod/admin.php:1483
#, php-format
msgid "Plugin %s disabled."
msgstr ""
#: mod/admin.php:1487
#, php-format
msgid "Plugin %s enabled."
msgstr ""
#: mod/admin.php:1498 mod/admin.php:1734
msgid "Disable"
msgstr ""
#: mod/admin.php:1500 mod/admin.php:1736
msgid "Enable"
msgstr ""
#: mod/admin.php:1523 mod/admin.php:1781
msgid "Toggle"
msgstr ""
#: mod/admin.php:1531 mod/admin.php:1790
msgid "Author: "
msgstr ""
#: mod/admin.php:1532 mod/admin.php:1791
msgid "Maintainer: "
msgstr ""
#: mod/admin.php:1584
msgid "Reload active plugins"
msgstr ""
#: mod/admin.php:1589
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr ""
#: mod/admin.php:1694
msgid "No themes found."
msgstr ""
#: mod/admin.php:1772
msgid "Screenshot"
msgstr ""
#: mod/admin.php:1832
msgid "Reload active themes"
msgstr ""
#: mod/admin.php:1837
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr ""
#: mod/admin.php:1838
msgid "[Experimental]"
msgstr ""
#: mod/admin.php:1839
msgid "[Unsupported]"
msgstr ""
#: mod/admin.php:1863
msgid "Log settings updated."
msgstr ""
#: mod/admin.php:1895
msgid "PHP log currently enabled."
msgstr ""
#: mod/admin.php:1897
msgid "PHP log currently disabled."
msgstr ""
#: mod/admin.php:1906
msgid "Clear"
msgstr ""
#: mod/admin.php:1911
msgid "Enable Debugging"
msgstr ""
#: mod/admin.php:1912
msgid "Log file"
msgstr ""
#: mod/admin.php:1912
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: mod/admin.php:1913
msgid "Log level"
msgstr ""
#: mod/admin.php:1916
msgid "PHP logging"
msgstr ""
#: mod/admin.php:1917
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr ""
#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
msgid "Off"
msgstr ""
#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
msgid "On"
msgstr ""
#: mod/admin.php:2045
#, php-format
msgid "Lock feature %s"
msgstr ""
#: mod/admin.php:2053
msgid "Manage Additional Features"
msgstr ""
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr ""
@ -3603,6 +5544,188 @@ msgstr ""
msgid "File upload failed."
msgstr ""
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr ""
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr ""
#: mod/cal.php:297
msgid "User not found"
msgstr ""
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr ""
#: mod/cal.php:315
msgid "No exportable data found"
msgstr ""
#: mod/cal.php:330
msgid "calendar"
msgstr ""
#: mod/content.php:119 mod/network.php:469
msgid "No such group"
msgstr ""
#: mod/content.php:130 mod/network.php:496 mod/group.php:193
msgid "Group is empty"
msgstr ""
#: mod/content.php:135 mod/network.php:500
#, php-format
msgid "Group: %s"
msgstr ""
#: mod/content.php:325 object/Item.php:95
msgid "This entry was edited"
msgstr ""
#: mod/content.php:621 object/Item.php:429
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] ""
msgstr[1] ""
#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
msgid "Private Message"
msgstr ""
#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
msgid "I like this (toggle)"
msgstr ""
#: mod/content.php:702 object/Item.php:263
msgid "like"
msgstr ""
#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
msgid "I don't like this (toggle)"
msgstr ""
#: mod/content.php:703 object/Item.php:264
msgid "dislike"
msgstr ""
#: mod/content.php:705 object/Item.php:266
msgid "Share this"
msgstr ""
#: mod/content.php:705 object/Item.php:266
msgid "share"
msgstr ""
#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
#: mod/photos.php:1721 object/Item.php:717
msgid "This is you"
msgstr ""
#: mod/content.php:729 object/Item.php:721
msgid "Bold"
msgstr ""
#: mod/content.php:730 object/Item.php:722
msgid "Italic"
msgstr ""
#: mod/content.php:731 object/Item.php:723
msgid "Underline"
msgstr ""
#: mod/content.php:732 object/Item.php:724
msgid "Quote"
msgstr ""
#: mod/content.php:733 object/Item.php:725
msgid "Code"
msgstr ""
#: mod/content.php:734 object/Item.php:726
msgid "Image"
msgstr ""
#: mod/content.php:735 object/Item.php:727
msgid "Link"
msgstr ""
#: mod/content.php:736 object/Item.php:728
msgid "Video"
msgstr ""
#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr ""
#: mod/content.php:771 object/Item.php:227
msgid "add star"
msgstr ""
#: mod/content.php:772 object/Item.php:228
msgid "remove star"
msgstr ""
#: mod/content.php:773 object/Item.php:229
msgid "toggle star status"
msgstr ""
#: mod/content.php:776 object/Item.php:232
msgid "starred"
msgstr ""
#: mod/content.php:777 mod/content.php:798 object/Item.php:252
msgid "add tag"
msgstr ""
#: mod/content.php:787 object/Item.php:240
msgid "ignore thread"
msgstr ""
#: mod/content.php:788 object/Item.php:241
msgid "unignore thread"
msgstr ""
#: mod/content.php:789 object/Item.php:242
msgid "toggle ignore status"
msgstr ""
#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245
msgid "ignored"
msgstr ""
#: mod/content.php:803 object/Item.php:137
msgid "save to folder"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I will attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I will not attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I might attend"
msgstr ""
#: mod/content.php:912 object/Item.php:369
msgid "to"
msgstr ""
#: mod/content.php:913 object/Item.php:371
msgid "Wall-to-Wall"
msgstr ""
#: mod/content.php:914 object/Item.php:372
msgid "via Wall-To-Wall:"
msgstr ""
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr ""
@ -3650,1319 +5773,32 @@ msgstr ""
msgid "No entries."
msgstr ""
#: mod/credits.php:16
msgid "Credits"
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr ""
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
#: mod/videos.php:125
msgid "Delete Video"
msgstr ""
#: mod/filer.php:30
msgid "- select -"
#: mod/videos.php:204
msgid "No videos selected"
msgstr ""
#: mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
#: mod/videos.php:305 mod/photos.php:1054
msgid "Access to this item is restricted."
msgstr ""
#: mod/attach.php:8
msgid "Item not available."
#: mod/videos.php:387 mod/photos.php:1847
msgid "View Album"
msgstr ""
#: mod/attach.php:20
msgid "Item was not found."
#: mod/videos.php:396
msgid "Recent Videos"
msgstr ""
#: mod/follow.php:19 mod/dfrn_request.php:874
msgid "Submit Request"
msgstr ""
#: mod/follow.php:30
msgid "You already added this contact."
msgstr ""
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
#: mod/follow.php:109 mod/dfrn_request.php:860
msgid "Please answer the following:"
msgstr ""
#: mod/follow.php:110 mod/dfrn_request.php:861
#, php-format
msgid "Does %s know you?"
msgstr ""
#: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861
#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
#: mod/register.php:239 mod/settings.php:1158 mod/settings.php:1164
#: mod/settings.php:1172 mod/settings.php:1176 mod/settings.php:1181
#: mod/settings.php:1187 mod/settings.php:1193 mod/settings.php:1199
#: mod/settings.php:1225 mod/settings.php:1226 mod/settings.php:1227
#: mod/settings.php:1228 mod/settings.php:1229
msgid "No"
msgstr ""
#: mod/follow.php:111 mod/dfrn_request.php:865
msgid "Add a personal note:"
msgstr ""
#: mod/follow.php:117 mod/dfrn_request.php:871
msgid "Your Identity Address:"
msgstr ""
#: mod/follow.php:126 mod/notifications.php:243 mod/contacts.php:624
msgid "Profile URL"
msgstr ""
#: mod/follow.php:180
msgid "Contact added"
msgstr ""
#: mod/apps.php:7 index.php:240
msgid "You must be logged in to use addons. "
msgstr ""
#: mod/apps.php:11
msgid "Applications"
msgstr ""
#: mod/apps.php:14
msgid "No installed applications."
msgstr ""
#: mod/p.php:9
msgid "Not Extended"
msgstr ""
#: mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr ""
#: mod/newmember.php:8
msgid "New Member Checklist"
msgstr ""
#: mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr ""
#: mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to "
"join."
msgstr ""
#: mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr ""
#: mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished "
"directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr ""
#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
msgid "Upload Profile Photo"
msgstr ""
#: mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make "
"friends than people who do not."
msgstr ""
#: mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> 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
msgid "Profile Keywords"
msgstr ""
#: mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr ""
#: mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: mod/newmember.php:51
msgid "Importing Emails"
msgstr ""
#: mod/newmember.php:51
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:53
msgid "Go to Your Contacts Page"
msgstr ""
#: mod/newmember.php:53
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 <em>Add New Contact</em> dialog."
msgstr ""
#: mod/newmember.php:55
msgid "Go to Your Site's Directory"
msgstr ""
#: mod/newmember.php:55
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr ""
#: mod/newmember.php:57
msgid "Finding New People"
msgstr ""
#: mod/newmember.php:57
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand "
"new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr ""
#: mod/newmember.php:65
msgid "Group Your Contacts"
msgstr ""
#: mod/newmember.php:65
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:68
msgid "Why Aren't My Posts Public?"
msgstr ""
#: mod/newmember.php:68
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:73
msgid "Getting Help"
msgstr ""
#: mod/newmember.php:77
msgid "Go to the Help Section"
msgstr ""
#: mod/newmember.php:77
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program "
"features and resources."
msgstr ""
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr ""
#: mod/removeme.php:47
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
#: mod/removeme.php:48
msgid "Please enter your password for verification:"
msgstr ""
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr ""
#: mod/editpost.php:40
msgid "Edit post"
msgstr ""
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr ""
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr ""
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr ""
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr ""
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr ""
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr ""
#: mod/group.php:29
msgid "Group created."
msgstr ""
#: mod/group.php:35
msgid "Could not create group."
msgstr ""
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr ""
#: mod/group.php:60
msgid "Group name changed."
msgstr ""
#: mod/group.php:87
msgid "Save Group"
msgstr ""
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr ""
#: mod/group.php:113
msgid "Group removed."
msgstr ""
#: mod/group.php:115
msgid "Unable to remove group."
msgstr ""
#: mod/group.php:177
msgid "Group Editor"
msgstr ""
#: mod/group.php:190
msgid "Members"
msgstr ""
#: mod/group.php:192 mod/contacts.php:692
msgid "All Contacts"
msgstr ""
#: mod/group.php:193 mod/content.php:130 mod/network.php:495
msgid "Group is empty"
msgstr ""
#: 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:71
msgid "No recipient selected."
msgstr ""
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr ""
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr ""
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr ""
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr ""
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr ""
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr ""
#: 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/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr ""
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr ""
#: mod/share.php:38
msgid "link"
msgstr ""
#: 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 ""
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts, "
"and/or create new posts for you?"
msgstr ""
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: mod/babel.php:31
msgid "Source input: "
msgstr ""
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr ""
#: mod/babel.php:39
msgid "bb2html: "
msgstr ""
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr ""
#: mod/babel.php:47
msgid "bb2md: "
msgstr ""
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr ""
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr ""
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr ""
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr ""
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr ""
#: mod/ostatus_subscribe.php:14
msgid "Subscribing 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/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
msgid "ignored"
msgstr ""
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr ""
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr ""
#: mod/message.php:235
msgid "Message deleted."
msgstr ""
#: mod/message.php:266
msgid "Conversation removed."
msgstr ""
#: mod/message.php:383
msgid "No messages."
msgstr ""
#: mod/message.php:426
msgid "Message not available."
msgstr ""
#: mod/message.php:503
msgid "Delete message"
msgstr ""
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr ""
#: mod/message.php:531
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: mod/message.php:535
msgid "Send Reply"
msgstr ""
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr ""
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr ""
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr ""
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr ""
#: mod/manage.php:140
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:141
msgid "Select an identity to manage: "
msgstr ""
#: mod/crepair.php:87
msgid "Contact settings applied."
msgstr ""
#: mod/crepair.php:89
msgid "Contact update failed."
msgstr ""
#: mod/crepair.php:114 mod/dfrn_confirm.php:122 mod/fsuggest.php:20
#: mod/fsuggest.php:92
msgid "Contact not found."
msgstr ""
#: mod/crepair.php:120
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
"information your communications with this contact may stop working."
msgstr ""
#: mod/crepair.php:121
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
#: mod/crepair.php:134 mod/crepair.php:136
msgid "No mirroring"
msgstr ""
#: mod/crepair.php:134
msgid "Mirror as forwarded posting"
msgstr ""
#: mod/crepair.php:134 mod/crepair.php:136
msgid "Mirror as my own posting"
msgstr ""
#: mod/crepair.php:150
msgid "Return to contact editor"
msgstr ""
#: mod/crepair.php:152
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:156
msgid "Remote Self"
msgstr ""
#: mod/crepair.php:159
msgid "Mirror postings from this contact"
msgstr ""
#: mod/crepair.php:161
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr ""
#: mod/crepair.php:165 mod/admin.php:1367 mod/admin.php:1380
#: mod/admin.php:1392 mod/admin.php:1408 mod/settings.php:678
#: mod/settings.php:704
msgid "Name"
msgstr ""
#: mod/crepair.php:166
msgid "Account Nickname"
msgstr ""
#: mod/crepair.php:167
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: mod/crepair.php:168
msgid "Account URL"
msgstr ""
#: mod/crepair.php:169
msgid "Friend Request URL"
msgstr ""
#: mod/crepair.php:170
msgid "Friend Confirm URL"
msgstr ""
#: mod/crepair.php:171
msgid "Notification Endpoint URL"
msgstr ""
#: mod/crepair.php:172
msgid "Poll/Feed URL"
msgstr ""
#: mod/crepair.php:173
msgid "New photo from this URL"
msgstr ""
#: mod/dfrn_request.php:100
msgid "This introduction has already been accepted."
msgstr ""
#: mod/dfrn_request.php:123 mod/dfrn_request.php:518
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
#: mod/dfrn_request.php:128 mod/dfrn_request.php:523
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
#: mod/dfrn_request.php:130 mod/dfrn_request.php:525
msgid "Warning: profile location has no profile photo."
msgstr ""
#: mod/dfrn_request.php:133 mod/dfrn_request.php:528
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] ""
msgstr[1] ""
#: mod/dfrn_request.php:178
msgid "Introduction complete."
msgstr ""
#: mod/dfrn_request.php:220
msgid "Unrecoverable protocol error."
msgstr ""
#: mod/dfrn_request.php:248
msgid "Profile unavailable."
msgstr ""
#: mod/dfrn_request.php:273
#, php-format
msgid "%s has received too many connection requests today."
msgstr ""
#: mod/dfrn_request.php:274
msgid "Spam protection measures have been invoked."
msgstr ""
#: mod/dfrn_request.php:275
msgid "Friends are advised to please try again in 24 hours."
msgstr ""
#: mod/dfrn_request.php:337
msgid "Invalid locator"
msgstr ""
#: mod/dfrn_request.php:346
msgid "Invalid email address."
msgstr ""
#: mod/dfrn_request.php:373
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: mod/dfrn_request.php:476
msgid "You have already introduced yourself here."
msgstr ""
#: mod/dfrn_request.php:480
#, php-format
msgid "Apparently you are already friends with %s."
msgstr ""
#: mod/dfrn_request.php:501
msgid "Invalid profile URL."
msgstr ""
#: mod/dfrn_request.php:579 mod/contacts.php:208
msgid "Failed to update contact record."
msgstr ""
#: mod/dfrn_request.php:600
msgid "Your introduction has been sent."
msgstr ""
#: mod/dfrn_request.php:640
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
#: mod/dfrn_request.php:663
msgid "Please login to confirm introduction."
msgstr ""
#: mod/dfrn_request.php:673
msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile."
msgstr ""
#: mod/dfrn_request.php:687 mod/dfrn_request.php:704
msgid "Confirm"
msgstr ""
#: mod/dfrn_request.php:699
msgid "Hide this contact"
msgstr ""
#: mod/dfrn_request.php:702
#, php-format
msgid "Welcome home %s."
msgstr ""
#: mod/dfrn_request.php:703
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: mod/dfrn_request.php:832
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: mod/dfrn_request.php:853
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
"\">follow this link to find a public Friendica site and join us today</a>."
msgstr ""
#: mod/dfrn_request.php:858
msgid "Friend/Connection Request"
msgstr ""
#: mod/dfrn_request.php:859
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: mod/dfrn_request.php:868
msgid "StatusNet/Federated Social Web"
msgstr ""
#: mod/dfrn_request.php:870
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: mod/content.php:119 mod/network.php:468
msgid "No such group"
msgstr ""
#: mod/content.php:135 mod/network.php:499
#, php-format
msgid "Group: %s"
msgstr ""
#: mod/content.php:325 object/Item.php:95
msgid "This entry was edited"
msgstr ""
#: mod/content.php:621 object/Item.php:429
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] ""
msgstr[1] ""
#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
msgid "Private Message"
msgstr ""
#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
msgid "I like this (toggle)"
msgstr ""
#: mod/content.php:702 object/Item.php:263
msgid "like"
msgstr ""
#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
msgid "I don't like this (toggle)"
msgstr ""
#: mod/content.php:703 object/Item.php:264
msgid "dislike"
msgstr ""
#: mod/content.php:705 object/Item.php:266
msgid "Share this"
msgstr ""
#: mod/content.php:705 object/Item.php:266
msgid "share"
msgstr ""
#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
#: mod/photos.php:1721 object/Item.php:717
msgid "This is you"
msgstr ""
#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719 boot.php:969
msgid "Comment"
msgstr ""
#: mod/content.php:729 object/Item.php:721
msgid "Bold"
msgstr ""
#: mod/content.php:730 object/Item.php:722
msgid "Italic"
msgstr ""
#: mod/content.php:731 object/Item.php:723
msgid "Underline"
msgstr ""
#: mod/content.php:732 object/Item.php:724
msgid "Quote"
msgstr ""
#: mod/content.php:733 object/Item.php:725
msgid "Code"
msgstr ""
#: mod/content.php:734 object/Item.php:726
msgid "Image"
msgstr ""
#: mod/content.php:735 object/Item.php:727
msgid "Link"
msgstr ""
#: mod/content.php:736 object/Item.php:728
msgid "Video"
msgstr ""
#: mod/content.php:746 mod/settings.php:738 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr ""
#: mod/content.php:771 object/Item.php:227
msgid "add star"
msgstr ""
#: mod/content.php:772 object/Item.php:228
msgid "remove star"
msgstr ""
#: mod/content.php:773 object/Item.php:229
msgid "toggle star status"
msgstr ""
#: mod/content.php:776 object/Item.php:232
msgid "starred"
msgstr ""
#: mod/content.php:777 mod/content.php:798 object/Item.php:252
msgid "add tag"
msgstr ""
#: mod/content.php:787 object/Item.php:240
msgid "ignore thread"
msgstr ""
#: mod/content.php:788 object/Item.php:241
msgid "unignore thread"
msgstr ""
#: mod/content.php:789 object/Item.php:242
msgid "toggle ignore status"
msgstr ""
#: mod/content.php:803 object/Item.php:137
msgid "save to folder"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I will attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I will not attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I might attend"
msgstr ""
#: mod/content.php:912 object/Item.php:369
msgid "to"
msgstr ""
#: mod/content.php:913 object/Item.php:371
msgid "Wall-to-Wall"
msgstr ""
#: mod/content.php:914 object/Item.php:372
msgid "via Wall-To-Wall:"
msgstr ""
#: mod/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:617
msgid "Profile not found."
msgstr ""
#: mod/dfrn_confirm.php:123
msgid ""
"This may occasionally happen if contact was requested by both persons and it "
"has already been approved."
msgstr ""
#: mod/dfrn_confirm.php:242
msgid "Response from remote site was not understood."
msgstr ""
#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256
msgid "Unexpected response from remote site: "
msgstr ""
#: mod/dfrn_confirm.php:265
msgid "Confirmation completed successfully."
msgstr ""
#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288
msgid "Remote site reported: "
msgstr ""
#: mod/dfrn_confirm.php:279
msgid "Temporary failure. Please wait and try again."
msgstr ""
#: mod/dfrn_confirm.php:286
msgid "Introduction failed or was revoked."
msgstr ""
#: mod/dfrn_confirm.php:415
msgid "Unable to set contact photo."
msgstr ""
#: mod/dfrn_confirm.php:553
#, php-format
msgid "No user record found for '%s' "
msgstr ""
#: mod/dfrn_confirm.php:563
msgid "Our site encryption key is apparently messed up."
msgstr ""
#: mod/dfrn_confirm.php:574
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
#: mod/dfrn_confirm.php:595
msgid "Contact record was not found for you on our site."
msgstr ""
#: mod/dfrn_confirm.php:609
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: mod/dfrn_confirm.php:629
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr ""
#: mod/dfrn_confirm.php:640
msgid "Unable to set your contact credentials on our system."
msgstr ""
#: mod/dfrn_confirm.php:699
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: mod/dfrn_confirm.php:771
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr ""
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr ""
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr ""
#: mod/mood.php:133
msgid "Mood"
msgstr ""
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: mod/poke.php:194
msgid "Recipient"
msgstr ""
#: mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr ""
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, php-format
msgid "Image size reduction [%s] failed."
msgstr ""
#: mod/profile_photo.php:124
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr ""
#: mod/profile_photo.php:134
msgid "Unable to process image"
msgstr ""
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr ""
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr ""
#: mod/profile_photo.php:251
msgid "Upload"
msgstr ""
#: mod/profile_photo.php:254
msgid "or"
msgstr ""
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr ""
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr ""
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr ""
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr ""
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr ""
#: mod/regmod.php:55
msgid "Account approved."
msgstr ""
#: mod/regmod.php:92
#, php-format
msgid "Registration revoked for %s"
msgstr ""
#: mod/regmod.php:104
msgid "Please login."
msgstr ""
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr ""
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
msgstr ""
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:1000
msgid "Ignore"
msgstr ""
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr ""
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr ""
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr ""
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr ""
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr ""
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr ""
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr ""
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr ""
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr ""
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1382
msgid "Approve"
msgstr ""
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr ""
#: mod/notifications.php:196
msgid "yes"
msgstr ""
#: mod/notifications.php:196
msgid "no"
msgstr ""
#: mod/notifications.php:197
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:200
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:209
msgid "Friend"
msgstr ""
#: mod/notifications.php:210
msgid "Sharer"
msgstr ""
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr ""
#: mod/notifications.php:260
msgid "No introductions."
msgstr ""
#: mod/notifications.php:299
msgid "Show unread"
msgstr ""
#: mod/notifications.php:299
msgid "Show all"
msgstr ""
#: mod/notifications.php:305
#, php-format
msgid "No more %s notifications."
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr ""
#: mod/profiles.php:38
@ -5064,6 +5900,16 @@ msgstr ""
msgid "Hide contacts and friends:"
msgstr ""
#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
#: mod/follow.php:110 mod/dfrn_request.php:862 mod/register.php:246
#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
#: mod/settings.php:1234 mod/api.php:106
msgid "No"
msgstr ""
#: mod/profiles.php:650
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
@ -5124,6 +5970,10 @@ msgstr ""
msgid "Relation"
msgstr ""
#: mod/profiles.php:707 mod/newmember.php:36 mod/profile_photo.php:250
msgid "Upload Profile Photo"
msgstr ""
#: mod/profiles.php:708
msgid "Your Gender:"
msgstr ""
@ -5140,10 +5990,6 @@ msgstr ""
msgid "Profile Name:"
msgstr ""
#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
msgid "Required"
msgstr ""
#: mod/profiles.php:718
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
@ -5268,1842 +6114,217 @@ msgstr ""
msgid "Edit/Manage Profiles"
msgstr ""
#: mod/admin.php:92
msgid "Theme settings updated."
#: mod/credits.php:16
msgid "Credits"
msgstr ""
#: mod/admin.php:156 mod/admin.php:926
msgid "Site"
msgstr ""
#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1375 mod/admin.php:1390
msgid "Users"
msgstr ""
#: mod/admin.php:158 mod/admin.php:1492 mod/admin.php:1552 mod/settings.php:74
msgid "Plugins"
msgstr ""
#: mod/admin.php:159 mod/admin.php:1750 mod/admin.php:1800
msgid "Themes"
msgstr ""
#: mod/admin.php:160 mod/settings.php:52
msgid "Additional features"
msgstr ""
#: mod/admin.php:161
msgid "DB updates"
msgstr ""
#: mod/admin.php:162 mod/admin.php:397
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:163 mod/admin.php:363
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1874
msgid "Logs"
msgstr ""
#: mod/admin.php:178 mod/admin.php:1942
msgid "View Logs"
msgstr ""
#: mod/admin.php:179
msgid "probe address"
msgstr ""
#: mod/admin.php:180
msgid "check webfinger"
msgstr ""
#: mod/admin.php:187
msgid "Plugin Features"
msgstr ""
#: mod/admin.php:189
msgid "diagnostics"
msgstr ""
#: mod/admin.php:190
msgid "User registrations waiting for confirmation"
msgstr ""
#: mod/admin.php:356
#: mod/credits.php:17
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr ""
#: mod/admin.php:357
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
#: mod/filer.php:30
msgid "- select -"
msgstr ""
#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925
#: mod/admin.php:1374 mod/admin.php:1491 mod/admin.php:1551 mod/admin.php:1749
#: mod/admin.php:1799 mod/admin.php:1873 mod/admin.php:1941
msgid "Administration"
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: mod/admin.php:369
#: mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: mod/poke.php:194
msgid "Recipient"
msgstr ""
#: mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr ""
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr ""
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr ""
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr ""
#: mod/photos.php:190
msgid "Album not found."
msgstr ""
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr ""
#: mod/photos.php:230
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr ""
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr ""
#: mod/photos.php:688
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: mod/admin.php:399
msgid "ID"
#: mod/photos.php:688
msgid "a photo"
msgstr ""
#: mod/admin.php:400
msgid "Recipient Name"
#: mod/photos.php:794
msgid "Image file is empty."
msgstr ""
#: mod/admin.php:401
msgid "Recipient Profile"
#: mod/photos.php:954
msgid "No photos selected"
msgstr ""
#: mod/admin.php:403
msgid "Created"
msgstr ""
#: mod/admin.php:404
msgid "Last Tried"
msgstr ""
#: mod/admin.php:405
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:424 mod/admin.php:1323
msgid "Normal Account"
msgstr ""
#: mod/admin.php:425 mod/admin.php:1324
msgid "Soapbox Account"
msgstr ""
#: mod/admin.php:426 mod/admin.php:1325
msgid "Community/Celebrity Account"
msgstr ""
#: mod/admin.php:427 mod/admin.php:1326
msgid "Automatic Friend Account"
msgstr ""
#: mod/admin.php:428
msgid "Blog Account"
msgstr ""
#: mod/admin.php:429
msgid "Private Forum"
msgstr ""
#: mod/admin.php:455
msgid "Message queues"
msgstr ""
#: mod/admin.php:461
msgid "Summary"
msgstr ""
#: mod/admin.php:464
msgid "Registered users"
msgstr ""
#: mod/admin.php:466
msgid "Pending registrations"
msgstr ""
#: mod/admin.php:467
msgid "Version"
msgstr ""
#: mod/admin.php:472
msgid "Active plugins"
msgstr ""
#: mod/admin.php:495
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr ""
#: mod/admin.php:798
msgid "RINO2 needs mcrypt php extension to work."
msgstr ""
#: mod/admin.php:806
msgid "Site settings updated."
msgstr ""
#: mod/admin.php:834 mod/settings.php:932
msgid "No special theme for mobile devices"
msgstr ""
#: mod/admin.php:853
msgid "No community page"
msgstr ""
#: mod/admin.php:854
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:855
msgid "Global community page"
msgstr ""
#: mod/admin.php:860 mod/contacts.php:530
msgid "Never"
msgstr ""
#: mod/admin.php:861
msgid "At post arrival"
msgstr ""
#: mod/admin.php:869 mod/contacts.php:557
msgid "Disabled"
msgstr ""
#: mod/admin.php:871
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:872
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:876
msgid "One month"
msgstr ""
#: mod/admin.php:877
msgid "Three months"
msgstr ""
#: mod/admin.php:878
msgid "Half a year"
msgstr ""
#: mod/admin.php:879
msgid "One year"
msgstr ""
#: mod/admin.php:884
msgid "Multi user instance"
msgstr ""
#: mod/admin.php:907
msgid "Closed"
msgstr ""
#: mod/admin.php:908
msgid "Requires approval"
msgstr ""
#: mod/admin.php:909
msgid "Open"
msgstr ""
#: mod/admin.php:913
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: mod/admin.php:914
msgid "Force all links to use SSL"
msgstr ""
#: mod/admin.php:915
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: mod/admin.php:927 mod/admin.php:1553 mod/admin.php:1801 mod/admin.php:1875
#: mod/admin.php:2025 mod/settings.php:676 mod/settings.php:786
#: mod/settings.php:833 mod/settings.php:902 mod/settings.php:992
#: mod/settings.php:1259
msgid "Save Settings"
msgstr ""
#: mod/admin.php:928 mod/register.php:263
msgid "Registration"
msgstr ""
#: mod/admin.php:929
msgid "File upload"
msgstr ""
#: mod/admin.php:930
msgid "Policies"
msgstr ""
#: mod/admin.php:932
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:933
msgid "Performance"
msgstr ""
#: mod/admin.php:934
msgid "Worker"
msgstr ""
#: mod/admin.php:935
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr ""
#: mod/admin.php:938
msgid "Site name"
msgstr ""
#: mod/admin.php:939
msgid "Host name"
msgstr ""
#: mod/admin.php:940
msgid "Sender Email"
msgstr ""
#: mod/admin.php:940
msgid ""
"The email address your server shall use to send notification emails from."
msgstr ""
#: mod/admin.php:941
msgid "Banner/Logo"
msgstr ""
#: mod/admin.php:942
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:942
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:943
msgid "Touch icon"
msgstr ""
#: mod/admin.php:943
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:944
msgid "Additional Info"
msgstr ""
#: mod/admin.php:944
#: mod/photos.php:1114
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: mod/admin.php:945
msgid "System language"
#: mod/photos.php:1148
msgid "Upload Photos"
msgstr ""
#: mod/admin.php:946
msgid "System theme"
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr ""
#: mod/admin.php:946
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr ""
#: mod/admin.php:947
msgid "Mobile system theme"
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr ""
#: mod/admin.php:947
msgid "Theme for mobile devices"
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
msgid "Show to Groups"
msgstr ""
#: mod/admin.php:948
msgid "SSL link policy"
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
msgid "Show to Contacts"
msgstr ""
#: mod/admin.php:948
msgid "Determines whether generated links should be forced to use SSL"
#: mod/photos.php:1167
msgid "Private Photo"
msgstr ""
#: mod/admin.php:949
msgid "Force SSL"
#: mod/photos.php:1168
msgid "Public Photo"
msgstr ""
#: mod/admin.php:949
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
"to endless loops."
#: mod/photos.php:1234
msgid "Edit Album"
msgstr ""
#: mod/admin.php:950
msgid "Old style 'Share'"
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr ""
#: mod/admin.php:950
msgid "Deactivates the bbcode element 'share' for repeating items."
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr ""
#: mod/admin.php:951
msgid "Hide help entry from navigation menu"
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr ""
#: mod/admin.php:951
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
#: mod/photos.php:1315
msgid "Permission denied. Access to this item may be restricted."
msgstr ""
#: mod/admin.php:952
msgid "Single user instance"
#: mod/photos.php:1317
msgid "Photo not available"
msgstr ""
#: mod/admin.php:952
msgid "Make this instance multi-user or single-user for the named user"
#: mod/photos.php:1372
msgid "View photo"
msgstr ""
#: mod/admin.php:953
msgid "Maximum image size"
#: mod/photos.php:1372
msgid "Edit photo"
msgstr ""
#: mod/admin.php:953
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
#: mod/photos.php:1373
msgid "Use as profile photo"
msgstr ""
#: mod/admin.php:954
msgid "Maximum image length"
#: mod/photos.php:1398
msgid "View Full Size"
msgstr ""
#: mod/admin.php:954
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
#: mod/photos.php:1484
msgid "Tags: "
msgstr ""
#: mod/admin.php:955
msgid "JPEG image quality"
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr ""
#: mod/admin.php:955
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
#: mod/photos.php:1526
msgid "New album name"
msgstr ""
#: mod/admin.php:957
msgid "Register policy"
#: mod/photos.php:1527
msgid "Caption"
msgstr ""
#: mod/admin.php:958
msgid "Maximum Daily Registrations"
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr ""
#: mod/admin.php:958
msgid ""
"If registration is permitted above, this sets the maximum number of new user "
"registrations to accept per day. If register is set to closed, this setting "
"has no effect."
#: mod/photos.php:1528
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
#: mod/admin.php:959
msgid "Register text"
#: mod/photos.php:1529
msgid "Do not rotate"
msgstr ""
#: mod/admin.php:959
msgid "Will be displayed prominently on the registration page."
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr ""
#: mod/admin.php:960
msgid "Accounts abandoned after x days"
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr ""
#: mod/admin.php:960
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
#: mod/photos.php:1546
msgid "Private photo"
msgstr ""
#: mod/admin.php:961
msgid "Allowed friend domains"
#: mod/photos.php:1547
msgid "Public photo"
msgstr ""
#: mod/admin.php:961
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:962
msgid "Allowed email domains"
msgstr ""
#: mod/admin.php:962
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:963
msgid "Block public"
msgstr ""
#: mod/admin.php:963
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:964
msgid "Force publish"
msgstr ""
#: mod/admin.php:964
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: mod/admin.php:965
msgid "Global directory URL"
msgstr ""
#: mod/admin.php:965
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
#: mod/admin.php:966
msgid "Allow threaded items"
msgstr ""
#: mod/admin.php:966
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: mod/admin.php:967
msgid "Private posts by default for new users"
msgstr ""
#: mod/admin.php:967
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: mod/admin.php:968
msgid "Don't include post content in email notifications"
msgstr ""
#: mod/admin.php:968
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:969
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: mod/admin.php:969
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: mod/admin.php:970
msgid "Don't embed private images in posts"
msgstr ""
#: mod/admin.php:970
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:971
msgid "Allow Users to set remote_self"
msgstr ""
#: mod/admin.php:971
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:972
msgid "Block multiple registrations"
msgstr ""
#: mod/admin.php:972
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: mod/admin.php:973
msgid "OpenID support"
msgstr ""
#: mod/admin.php:973
msgid "OpenID support for registration and logins."
msgstr ""
#: mod/admin.php:974
msgid "Fullname check"
msgstr ""
#: mod/admin.php:974
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: mod/admin.php:975
msgid "UTF-8 Regular expressions"
msgstr ""
#: mod/admin.php:975
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: mod/admin.php:976
msgid "Community Page Style"
msgstr ""
#: mod/admin.php:976
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:977
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:977
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:978
msgid "Enable OStatus support"
msgstr ""
#: mod/admin.php:978
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:979
msgid "OStatus conversation completion interval"
msgstr ""
#: mod/admin.php:979
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr ""
#: mod/admin.php:980
msgid "Only import OStatus threads from our contacts"
msgstr ""
#: mod/admin.php:980
msgid ""
"Normally we import every content from our OStatus contacts. With this option "
"we only store threads that are started by a contact that is known on our "
"system."
msgstr ""
#: mod/admin.php:981
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:983
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub "
"directory."
msgstr ""
#: mod/admin.php:984
msgid "Enable Diaspora support"
msgstr ""
#: mod/admin.php:984
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: mod/admin.php:985
msgid "Only allow Friendica contacts"
msgstr ""
#: mod/admin.php:985
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: mod/admin.php:986
msgid "Verify SSL"
msgstr ""
#: mod/admin.php:986
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:987
msgid "Proxy user"
msgstr ""
#: mod/admin.php:988
msgid "Proxy URL"
msgstr ""
#: mod/admin.php:989
msgid "Network timeout"
msgstr ""
#: mod/admin.php:989
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: mod/admin.php:990
msgid "Delivery interval"
msgstr ""
#: mod/admin.php:990
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:991
msgid "Poll interval"
msgstr ""
#: mod/admin.php:991
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: mod/admin.php:992
msgid "Maximum Load Average"
msgstr ""
#: mod/admin.php:992
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: mod/admin.php:993
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:993
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:994
msgid "Maximum table size for optimization"
msgstr ""
#: mod/admin.php:994
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr ""
#: mod/admin.php:995
msgid "Minimum level of fragmentation"
msgstr ""
#: mod/admin.php:995
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr ""
#: mod/admin.php:997
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:997
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:998
msgid "Days between requery"
msgstr ""
#: mod/admin.php:998
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:999
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:999
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:1000
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:1000
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:1001
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:1001
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:1003
msgid "Publish server information"
msgstr ""
#: mod/admin.php:1003
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 <a "
"href='http://the-federation.info/'>the-federation.info</a> for details."
msgstr ""
#: mod/admin.php:1005
msgid "Use MySQL full text engine"
msgstr ""
#: mod/admin.php:1005
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr ""
#: mod/admin.php:1006
msgid "Suppress Language"
msgstr ""
#: mod/admin.php:1006
msgid "Suppress language information in meta information about a posting."
msgstr ""
#: mod/admin.php:1007
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:1007
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:1008
msgid "Path to item cache"
msgstr ""
#: mod/admin.php:1008
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:1009
msgid "Cache duration in seconds"
msgstr ""
#: mod/admin.php:1009
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:1010
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:1010
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:1011
msgid "Path for lock file"
msgstr ""
#: mod/admin.php:1011
msgid ""
"The lock file is used to avoid multiple pollers at one time. Only define a "
"folder here."
msgstr ""
#: mod/admin.php:1012
msgid "Temp path"
msgstr ""
#: mod/admin.php:1012
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:1013
msgid "Base path to installation"
msgstr ""
#: mod/admin.php:1013
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:1014
msgid "Disable picture proxy"
msgstr ""
#: mod/admin.php:1014
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on "
"systems with very low bandwith."
msgstr ""
#: mod/admin.php:1015
msgid "Enable old style pager"
msgstr ""
#: mod/admin.php:1015
msgid ""
"The old style pager has page numbers but slows down massively the page speed."
msgstr ""
#: mod/admin.php:1016
msgid "Only search in tags"
msgstr ""
#: mod/admin.php:1016
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
#: mod/admin.php:1018
msgid "New base url"
msgstr ""
#: mod/admin.php:1018
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts "
"of all users."
msgstr ""
#: mod/admin.php:1020
msgid "RINO Encryption"
msgstr ""
#: mod/admin.php:1020
msgid "Encryption layer between nodes."
msgstr ""
#: mod/admin.php:1021
msgid "Embedly API key"
msgstr ""
#: mod/admin.php:1021
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr ""
#: mod/admin.php:1023
msgid "Enable 'worker' background processing"
msgstr ""
#: mod/admin.php:1023
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr ""
#: mod/admin.php:1024
msgid "Maximum number of parallel workers"
msgstr ""
#: mod/admin.php:1024
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr ""
#: mod/admin.php:1025
msgid "Don't use 'proc_open' with the worker"
msgstr ""
#: mod/admin.php:1025
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr ""
#: mod/admin.php:1026
msgid "Enable fastlane"
msgstr ""
#: mod/admin.php:1026
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes "
"with higher priority are blocked by processes of lower priority."
msgstr ""
#: mod/admin.php:1055
msgid "Update has been marked successful"
msgstr ""
#: mod/admin.php:1063
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: mod/admin.php:1066
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: mod/admin.php:1078
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: mod/admin.php:1081
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: mod/admin.php:1085
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: mod/admin.php:1087
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:1106
msgid "No failed updates."
msgstr ""
#: mod/admin.php:1107
msgid "Check database structure"
msgstr ""
#: mod/admin.php:1112
msgid "Failed Updates"
msgstr ""
#: mod/admin.php:1113
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: mod/admin.php:1114
msgid "Mark success (if update was manually applied)"
msgstr ""
#: mod/admin.php:1115
msgid "Attempt to execute this update step automatically"
msgstr ""
#: mod/admin.php:1149
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: mod/admin.php:1152
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\n"
"\t\t\tSite Location:\t%1$s\n"
"\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n"
"\n"
"\t\t\tYou may change your password from your account \"Settings\" page after "
"logging\n"
"\t\t\tin.\n"
"\n"
"\t\t\tPlease take a few moments to review the other account settings on that "
"page.\n"
"\n"
"\t\t\tYou may also wish to add some basic information to your default "
"profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
"and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more "
"specific\n"
"\t\t\tthan that.\n"
"\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are "
"necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n"
"\n"
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:1196
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1203
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: mod/admin.php:1250
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: mod/admin.php:1258
#, php-format
msgid "User '%s' unblocked"
msgstr ""
#: mod/admin.php:1258
#, php-format
msgid "User '%s' blocked"
msgstr ""
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Register date"
msgstr ""
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Last login"
msgstr ""
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Last item"
msgstr ""
#: mod/admin.php:1367 mod/settings.php:43
msgid "Account"
msgstr ""
#: mod/admin.php:1376
msgid "Add User"
msgstr ""
#: mod/admin.php:1377
msgid "select all"
msgstr ""
#: mod/admin.php:1378
msgid "User registrations waiting for confirm"
msgstr ""
#: mod/admin.php:1379
msgid "User waiting for permanent deletion"
msgstr ""
#: mod/admin.php:1380
msgid "Request date"
msgstr ""
#: mod/admin.php:1381
msgid "No registrations."
msgstr ""
#: mod/admin.php:1383
msgid "Deny"
msgstr ""
#: mod/admin.php:1385 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Block"
msgstr ""
#: mod/admin.php:1386 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Unblock"
msgstr ""
#: mod/admin.php:1387
msgid "Site admin"
msgstr ""
#: mod/admin.php:1388
msgid "Account expired"
msgstr ""
#: mod/admin.php:1391
msgid "New User"
msgstr ""
#: mod/admin.php:1392
msgid "Deleted since"
msgstr ""
#: mod/admin.php:1397
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:1398
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:1408
msgid "Name of the new user."
msgstr ""
#: mod/admin.php:1409
msgid "Nickname"
msgstr ""
#: mod/admin.php:1409
msgid "Nickname of the new user."
msgstr ""
#: mod/admin.php:1410
msgid "Email address of the new user."
msgstr ""
#: mod/admin.php:1453
#, php-format
msgid "Plugin %s disabled."
msgstr ""
#: mod/admin.php:1457
#, php-format
msgid "Plugin %s enabled."
msgstr ""
#: mod/admin.php:1468 mod/admin.php:1704
msgid "Disable"
msgstr ""
#: mod/admin.php:1470 mod/admin.php:1706
msgid "Enable"
msgstr ""
#: mod/admin.php:1493 mod/admin.php:1751
msgid "Toggle"
msgstr ""
#: mod/admin.php:1501 mod/admin.php:1760
msgid "Author: "
msgstr ""
#: mod/admin.php:1502 mod/admin.php:1761
msgid "Maintainer: "
msgstr ""
#: mod/admin.php:1554
msgid "Reload active plugins"
msgstr ""
#: mod/admin.php:1559
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr ""
#: mod/admin.php:1664
msgid "No themes found."
msgstr ""
#: mod/admin.php:1742
msgid "Screenshot"
msgstr ""
#: mod/admin.php:1802
msgid "Reload active themes"
msgstr ""
#: mod/admin.php:1807
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr ""
#: mod/admin.php:1808
msgid "[Experimental]"
msgstr ""
#: mod/admin.php:1809
msgid "[Unsupported]"
msgstr ""
#: mod/admin.php:1833
msgid "Log settings updated."
msgstr ""
#: mod/admin.php:1865
msgid "PHP log currently enabled."
msgstr ""
#: mod/admin.php:1867
msgid "PHP log currently disabled."
msgstr ""
#: mod/admin.php:1876
msgid "Clear"
msgstr ""
#: mod/admin.php:1881
msgid "Enable Debugging"
msgstr ""
#: mod/admin.php:1882
msgid "Log file"
msgstr ""
#: mod/admin.php:1882
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: mod/admin.php:1883
msgid "Log level"
msgstr ""
#: mod/admin.php:1886
msgid "PHP logging"
msgstr ""
#: mod/admin.php:1887
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr ""
#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
msgid "Off"
msgstr ""
#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
msgid "On"
msgstr ""
#: mod/admin.php:2015
#, php-format
msgid "Lock feature %s"
msgstr ""
#: mod/admin.php:2023
msgid "Manage Additional Features"
msgstr ""
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr ""
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr ""
#: mod/cal.php:276 mod/events.php:380
msgid "View"
msgstr ""
#: mod/cal.php:277 mod/events.php:382
msgid "Previous"
msgstr ""
#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
msgid "Next"
msgstr ""
#: mod/cal.php:287 mod/events.php:392
msgid "list"
msgstr ""
#: mod/cal.php:297
msgid "User not found"
msgstr ""
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr ""
#: mod/cal.php:315
msgid "No exportable data found"
msgstr ""
#: mod/cal.php:330
msgid "calendar"
msgstr ""
#: mod/common.php:86
msgid "No contacts in common."
msgstr ""
#: mod/common.php:134 mod/contacts.php:863
msgid "Common Friends"
msgstr ""
#: mod/community.php:27
msgid "Not available."
msgstr ""
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr ""
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr ""
#: mod/contacts.php:206
msgid "Contact updated."
msgstr ""
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr ""
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr ""
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr ""
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr ""
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr ""
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr ""
#: mod/contacts.php:437
msgid "Drop contact"
msgstr ""
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr ""
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr ""
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr ""
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr ""
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr ""
#: mod/contacts.php:536 mod/contacts.php:973
msgid "Suggest friends"
msgstr ""
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr ""
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr ""
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information and keywords"
msgstr ""
#: mod/contacts.php:575
msgid "Contact"
msgstr ""
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr ""
#: mod/contacts.php:579
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
#: mod/contacts.php:580
msgid "Contact Information / Notes"
msgstr ""
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr ""
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr ""
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr ""
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr ""
#: mod/contacts.php:590
msgid "View conversations"
msgstr ""
#: mod/contacts.php:596
msgid "Last update:"
msgstr ""
#: mod/contacts.php:598
msgid "Update public posts"
msgstr ""
#: mod/contacts.php:600 mod/contacts.php:983
msgid "Update now"
msgstr ""
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
msgid "Unignore"
msgstr ""
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr ""
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr ""
#: mod/contacts.php:612
msgid "Currently archived"
msgstr ""
#: mod/contacts.php:613
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr ""
#: mod/contacts.php:614
msgid "Send a notification of every new post of this contact"
msgstr ""
#: mod/contacts.php:617
msgid "Blacklisted keywords"
msgstr ""
#: mod/contacts.php:617
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/contacts.php:635
msgid "Actions"
msgstr ""
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr ""
#: mod/contacts.php:684
msgid "Suggestions"
msgstr ""
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr ""
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr ""
#: mod/contacts.php:700
msgid "Unblocked"
msgstr ""
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr ""
#: mod/contacts.php:709
msgid "Blocked"
msgstr ""
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr ""
#: mod/contacts.php:718
msgid "Ignored"
msgstr ""
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr ""
#: mod/contacts.php:727
msgid "Archived"
msgstr ""
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr ""
#: mod/contacts.php:736
msgid "Hidden"
msgstr ""
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr ""
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr ""
#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:702
msgid "Update"
msgstr ""
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Archive"
msgstr ""
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Unarchive"
msgstr ""
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr ""
#: mod/contacts.php:856
msgid "View all contacts"
msgstr ""
#: mod/contacts.php:866
msgid "View all common friends"
msgstr ""
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr ""
#: mod/contacts.php:916
msgid "Mutual Friendship"
msgstr ""
#: mod/contacts.php:920
msgid "is a fan of yours"
msgstr ""
#: mod/contacts.php:924
msgid "you are a fan of"
msgstr ""
#: mod/contacts.php:994
msgid "Toggle Blocked status"
msgstr ""
#: mod/contacts.php:1002
msgid "Toggle Ignored status"
msgstr ""
#: mod/contacts.php:1010
msgid "Toggle Archive status"
msgstr ""
#: mod/contacts.php:1018
msgid "Delete contact"
msgstr ""
#: mod/directory.php:197 view/theme/vier/theme.php:201
#: view/theme/diabook/theme.php:525
msgid "Global Directory"
msgstr ""
#: mod/directory.php:199
msgid "Find on this site"
msgstr ""
#: mod/directory.php:201
msgid "Results for:"
msgstr ""
#: mod/directory.php:203
msgid "Site Directory"
msgstr ""
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr ""
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr ""
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr ""
#: mod/display.php:473
msgid "Item has been removed."
msgstr ""
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr ""
#: mod/events.php:381
msgid "Create New Event"
msgstr ""
#: mod/events.php:482
msgid "Event details"
msgstr ""
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr ""
#: mod/events.php:486 mod/events.php:502
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: mod/events.php:488 mod/events.php:489
msgid "Event Finishes:"
msgstr ""
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr ""
#: mod/events.php:492
msgid "Description:"
msgstr ""
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr ""
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
#: mod/photos.php:1770
msgid "Map"
msgstr ""
#: mod/install.php:139
@ -7458,320 +6679,965 @@ msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
#: mod/item.php:116
msgid "Unable to locate original post."
#: mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: mod/item.php:340
msgid "Empty post discarded."
#: mod/attach.php:8
msgid "Item not available."
msgstr ""
#: mod/item.php:895
msgid "System error. Post not saved."
#: mod/attach.php:20
msgid "Item was not found."
msgstr ""
#: mod/item.php:985
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr ""
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr ""
#: mod/contacts.php:206
msgid "Contact updated."
msgstr ""
#: mod/contacts.php:208 mod/dfrn_request.php:583
msgid "Failed to update contact record."
msgstr ""
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr ""
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr ""
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr ""
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr ""
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr ""
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr ""
#: mod/contacts.php:437
msgid "Drop contact"
msgstr ""
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr ""
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr ""
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr ""
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr ""
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr ""
#: mod/contacts.php:536 mod/contacts.php:973
msgid "Suggest friends"
msgstr ""
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr ""
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr ""
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information and keywords"
msgstr ""
#: mod/contacts.php:575
msgid "Contact"
msgstr ""
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr ""
#: mod/contacts.php:579
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
#: mod/item.php:987
#, php-format
msgid "You may visit them online at %s"
#: mod/contacts.php:580
msgid "Contact Information / Notes"
msgstr ""
#: mod/item.php:988
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr ""
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr ""
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr ""
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr ""
#: mod/contacts.php:590
msgid "View conversations"
msgstr ""
#: mod/contacts.php:596
msgid "Last update:"
msgstr ""
#: mod/contacts.php:598
msgid "Update public posts"
msgstr ""
#: mod/contacts.php:600 mod/contacts.php:983
msgid "Update now"
msgstr ""
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
msgid "Unignore"
msgstr ""
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr ""
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr ""
#: mod/contacts.php:612
msgid "Currently archived"
msgstr ""
#: mod/contacts.php:613
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: mod/item.php:992
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr ""
#: mod/contacts.php:614
msgid "Send a notification of every new post of this contact"
msgstr ""
#: mod/contacts.php:617
msgid "Blacklisted keywords"
msgstr ""
#: mod/contacts.php:617
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/contacts.php:635
msgid "Actions"
msgstr ""
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr ""
#: mod/contacts.php:684
msgid "Suggestions"
msgstr ""
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr ""
#: mod/contacts.php:692 mod/group.php:192
msgid "All Contacts"
msgstr ""
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr ""
#: mod/contacts.php:700
msgid "Unblocked"
msgstr ""
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr ""
#: mod/contacts.php:709
msgid "Blocked"
msgstr ""
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr ""
#: mod/contacts.php:718
msgid "Ignored"
msgstr ""
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr ""
#: mod/contacts.php:727
msgid "Archived"
msgstr ""
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr ""
#: mod/contacts.php:736
msgid "Hidden"
msgstr ""
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr ""
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr ""
#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
msgid "Update"
msgstr ""
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Archive"
msgstr ""
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Unarchive"
msgstr ""
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr ""
#: mod/contacts.php:856
msgid "View all contacts"
msgstr ""
#: mod/contacts.php:863 mod/common.php:134
msgid "Common Friends"
msgstr ""
#: mod/contacts.php:866
msgid "View all common friends"
msgstr ""
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr ""
#: mod/contacts.php:916
msgid "Mutual Friendship"
msgstr ""
#: mod/contacts.php:920
msgid "is a fan of yours"
msgstr ""
#: mod/contacts.php:924
msgid "you are a fan of"
msgstr ""
#: mod/contacts.php:994
msgid "Toggle Blocked status"
msgstr ""
#: mod/contacts.php:1002
msgid "Toggle Ignored status"
msgstr ""
#: mod/contacts.php:1010
msgid "Toggle Archive status"
msgstr ""
#: mod/contacts.php:1018
msgid "Delete contact"
msgstr ""
#: mod/follow.php:19 mod/dfrn_request.php:875
msgid "Submit Request"
msgstr ""
#: mod/follow.php:30
msgid "You already added this contact."
msgstr ""
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
#: mod/follow.php:109 mod/dfrn_request.php:861
msgid "Please answer the following:"
msgstr ""
#: mod/follow.php:110 mod/dfrn_request.php:862
#, php-format
msgid "%s posted an update."
msgid "Does %s know you?"
msgstr ""
#: mod/maintenance.php:9
msgid "System down for maintenance"
#: mod/follow.php:111 mod/dfrn_request.php:866
msgid "Add a personal note:"
msgstr ""
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
#: mod/follow.php:117 mod/dfrn_request.php:872
msgid "Your Identity Address:"
msgstr ""
#: mod/match.php:86
msgid "is interested in:"
#: mod/follow.php:180
msgid "Contact added"
msgstr ""
#: mod/match.php:100
msgid "Profile Match"
#: mod/apps.php:11
msgid "Applications"
msgstr ""
#: mod/apps.php:14
msgid "No installed applications."
msgstr ""
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr ""
#: mod/p.php:9
msgid "Not Extended"
msgstr ""
#: mod/display.php:473
msgid "Item has been removed."
msgstr ""
#: mod/common.php:86
msgid "No contacts in common."
msgstr ""
#: mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr ""
#: mod/newmember.php:8
msgid "New Member Checklist"
msgstr ""
#: mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr ""
#: mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to "
"join."
msgstr ""
#: mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr ""
#: mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished "
"directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr ""
#: mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make "
"friends than people who do not."
msgstr ""
#: mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> 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
msgid "Profile Keywords"
msgstr ""
#: mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr ""
#: mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: mod/newmember.php:51
msgid "Importing Emails"
msgstr ""
#: mod/newmember.php:51
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:53
msgid "Go to Your Contacts Page"
msgstr ""
#: mod/newmember.php:53
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 <em>Add New Contact</em> dialog."
msgstr ""
#: mod/newmember.php:55
msgid "Go to Your Site's Directory"
msgstr ""
#: mod/newmember.php:55
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr ""
#: mod/newmember.php:57
msgid "Finding New People"
msgstr ""
#: mod/newmember.php:57
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand "
"new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr ""
#: mod/newmember.php:65
msgid "Group Your Contacts"
msgstr ""
#: mod/newmember.php:65
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:68
msgid "Why Aren't My Posts Public?"
msgstr ""
#: mod/newmember.php:68
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:73
msgid "Getting Help"
msgstr ""
#: mod/newmember.php:77
msgid "Go to the Help Section"
msgstr ""
#: mod/newmember.php:77
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program "
"features and resources."
msgstr ""
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr ""
#: mod/removeme.php:47
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
#: mod/removeme.php:48
msgid "Please enter your password for verification:"
msgstr ""
#: mod/mood.php:133
msgid "Mood"
msgstr ""
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr ""
#: mod/editpost.php:40
msgid "Edit post"
msgstr ""
#: mod/network.php:398
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid ""
"Warning: This group contains %s member from a network that doesn't allow non "
"public messages."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
"Warning: This group contains %s members from a network that doesn't allow "
"non public messages."
msgstr[0] ""
msgstr[1] ""
#: mod/network.php:401
msgid "Private messages to this group are at risk of public disclosure."
msgid "Messages in this group won't be send to these receivers."
msgstr ""
#: mod/network.php:528
#: mod/network.php:529
msgid "Private messages to this person are at risk of public disclosure."
msgstr ""
#: mod/network.php:533
#: mod/network.php:534
msgid "Invalid contact."
msgstr ""
#: mod/network.php:826
#: mod/network.php:827
msgid "Commented Order"
msgstr ""
#: mod/network.php:829
#: mod/network.php:830
msgid "Sort by Comment Date"
msgstr ""
#: mod/network.php:834
#: mod/network.php:835
msgid "Posted Order"
msgstr ""
#: mod/network.php:837
#: mod/network.php:838
msgid "Sort by Post Date"
msgstr ""
#: mod/network.php:848
#: mod/network.php:849
msgid "Posts that mention or involve you"
msgstr ""
#: mod/network.php:856
#: mod/network.php:857
msgid "New"
msgstr ""
#: mod/network.php:859
#: mod/network.php:860
msgid "Activity Stream - by date"
msgstr ""
#: mod/network.php:867
#: mod/network.php:868
msgid "Shared Links"
msgstr ""
#: mod/network.php:870
#: mod/network.php:871
msgid "Interesting Links"
msgstr ""
#: mod/network.php:878
#: mod/network.php:879
msgid "Starred"
msgstr ""
#: mod/network.php:881
#: mod/network.php:882
msgid "Favourite Posts"
msgstr ""
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
#: mod/community.php:27
msgid "Not available."
msgstr ""
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr ""
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr ""
#: mod/photos.php:190
msgid "Album not found."
msgstr ""
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr ""
#: mod/photos.php:230
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr ""
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr ""
#: mod/photos.php:688
#: mod/localtime.php:30
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgid "UTC time: %s"
msgstr ""
#: mod/photos.php:688
msgid "a photo"
msgstr ""
#: mod/photos.php:794
msgid "Image file is empty."
msgstr ""
#: mod/photos.php:954
msgid "No photos selected"
msgstr ""
#: mod/photos.php:1054 mod/videos.php:305
msgid "Access to this item is restricted."
msgstr ""
#: mod/photos.php:1114
#: mod/localtime.php:33
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgid "Current timezone: %s"
msgstr ""
#: mod/photos.php:1148
msgid "Upload Photos"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr ""
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr ""
#: mod/photos.php:1153
msgid "or existing album name: "
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr ""
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
#: mod/group.php:29
msgid "Group created."
msgstr ""
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1295
msgid "Show to Groups"
#: mod/group.php:35
msgid "Could not create group."
msgstr ""
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1296
msgid "Show to Contacts"
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr ""
#: mod/photos.php:1167
msgid "Private Photo"
#: mod/group.php:60
msgid "Group name changed."
msgstr ""
#: mod/photos.php:1168
msgid "Public Photo"
#: mod/group.php:87
msgid "Save Group"
msgstr ""
#: mod/photos.php:1234
msgid "Edit Album"
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr ""
#: mod/photos.php:1240
msgid "Show Newest First"
#: mod/group.php:113
msgid "Group removed."
msgstr ""
#: mod/photos.php:1242
msgid "Show Oldest First"
#: mod/group.php:115
msgid "Unable to remove group."
msgstr ""
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
#: mod/group.php:177
msgid "Group Editor"
msgstr ""
#: mod/photos.php:1315
msgid "Permission denied. Access to this item may be restricted."
#: mod/group.php:190
msgid "Members"
msgstr ""
#: mod/photos.php:1317
msgid "Photo not available"
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr ""
#: mod/photos.php:1372
msgid "View photo"
#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
#: mod/photos.php:1372
msgid "Edit photo"
#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
#: mod/photos.php:1373
msgid "Use as profile photo"
#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
msgid "Warning: profile location has no profile photo."
msgstr ""
#: mod/photos.php:1398
msgid "View Full Size"
#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] ""
msgstr[1] ""
#: mod/dfrn_request.php:180
msgid "Introduction complete."
msgstr ""
#: mod/photos.php:1484
msgid "Tags: "
#: mod/dfrn_request.php:222
msgid "Unrecoverable protocol error."
msgstr ""
#: mod/photos.php:1487
msgid "[Remove any tag]"
#: mod/dfrn_request.php:250
msgid "Profile unavailable."
msgstr ""
#: mod/photos.php:1526
msgid "New album name"
#: mod/dfrn_request.php:277
#, php-format
msgid "%s has received too many connection requests today."
msgstr ""
#: mod/photos.php:1527
msgid "Caption"
#: mod/dfrn_request.php:278
msgid "Spam protection measures have been invoked."
msgstr ""
#: mod/photos.php:1528
msgid "Add a Tag"
#: mod/dfrn_request.php:279
msgid "Friends are advised to please try again in 24 hours."
msgstr ""
#: mod/photos.php:1528
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: mod/dfrn_request.php:341
msgid "Invalid locator"
msgstr ""
#: mod/photos.php:1529
msgid "Do not rotate"
#: mod/dfrn_request.php:350
msgid "Invalid email address."
msgstr ""
#: mod/photos.php:1530
msgid "Rotate CW (right)"
#: mod/dfrn_request.php:375
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
#: mod/dfrn_request.php:478
msgid "You have already introduced yourself here."
msgstr ""
#: mod/photos.php:1546
msgid "Private photo"
#: mod/dfrn_request.php:482
#, php-format
msgid "Apparently you are already friends with %s."
msgstr ""
#: mod/photos.php:1547
msgid "Public photo"
#: mod/dfrn_request.php:503
msgid "Invalid profile URL."
msgstr ""
#: mod/photos.php:1770
msgid "Map"
#: mod/dfrn_request.php:604
msgid "Your introduction has been sent."
msgstr ""
#: mod/photos.php:1847 mod/videos.php:387
msgid "View Album"
#: mod/dfrn_request.php:644
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
#: mod/ping.php:234
msgid "{0} wants to be your friend"
#: mod/dfrn_request.php:664
msgid "Please login to confirm introduction."
msgstr ""
#: mod/ping.php:249
msgid "{0} sent you a message"
#: mod/dfrn_request.php:674
msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile."
msgstr ""
#: mod/ping.php:264
msgid "{0} requested registration"
#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
msgid "Confirm"
msgstr ""
#: mod/profile.php:179
msgid "Tips for New Members"
#: mod/dfrn_request.php:700
msgid "Hide this contact"
msgstr ""
#: mod/dfrn_request.php:703
#, php-format
msgid "Welcome home %s."
msgstr ""
#: mod/dfrn_request.php:704
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: mod/dfrn_request.php:833
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: mod/dfrn_request.php:854
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
"\">follow this link to find a public Friendica site and join us today</a>."
msgstr ""
#: mod/dfrn_request.php:859
msgid "Friend/Connection Request"
msgstr ""
#: mod/dfrn_request.php:860
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: mod/dfrn_request.php:869
msgid "StatusNet/Federated Social Web"
msgstr ""
#: mod/dfrn_request.php:871
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr ""
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, php-format
msgid "Image size reduction [%s] failed."
msgstr ""
#: mod/profile_photo.php:124
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr ""
#: mod/profile_photo.php:134
msgid "Unable to process image"
msgstr ""
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr ""
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr ""
#: mod/profile_photo.php:251
msgid "Upload"
msgstr ""
#: mod/profile_photo.php:254
msgid "or"
msgstr ""
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr ""
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr ""
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr ""
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr ""
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr ""
#: mod/register.php:93
@ -7794,121 +7660,86 @@ msgstr ""
msgid "Your registration can not be processed."
msgstr ""
#: mod/register.php:153
#: mod/register.php:160
msgid "Your registration is pending approval by the site owner."
msgstr ""
#: mod/register.php:219
#: mod/register.php:226
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
#: mod/register.php:220
#: mod/register.php:227
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:221
#: mod/register.php:228
msgid "Your OpenID (optional): "
msgstr ""
#: mod/register.php:235
#: mod/register.php:242
msgid "Include your profile in member directory?"
msgstr ""
#: mod/register.php:259
#: mod/register.php:267
msgid "Note for the admin"
msgstr ""
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
msgstr ""
#: mod/register.php:260
#: mod/register.php:269
msgid "Your invitation ID: "
msgstr ""
#: mod/register.php:271
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr ""
#: mod/register.php:272
#: mod/register.php:281
msgid "Your Email Address: "
msgstr ""
#: mod/register.php:274 mod/settings.php:1266
#: mod/register.php:283 mod/settings.php:1271
msgid "New Password:"
msgstr ""
#: mod/register.php:274
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr ""
#: mod/register.php:275 mod/settings.php:1267
#: mod/register.php:284 mod/settings.php:1272
msgid "Confirm:"
msgstr ""
#: mod/register.php:276
#: mod/register.php:285
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be '<strong>nickname@$sitename</"
"strong>'."
msgstr ""
#: mod/register.php:277
#: mod/register.php:286
msgid "Choose a nickname: "
msgstr ""
#: mod/register.php:287
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr ""
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr ""
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr ""
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr ""
#: mod/videos.php:125
msgid "Delete Video"
msgstr ""
#: mod/videos.php:204
msgid "No videos selected"
msgstr ""
#: mod/videos.php:396
msgid "Recent Videos"
msgstr ""
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr ""
#: mod/viewcontacts.php:72
msgid "No contacts."
msgstr ""
#: mod/settings.php:60
msgid "Display"
msgstr ""
#: mod/settings.php:67 mod/settings.php:884
#: mod/settings.php:67 mod/settings.php:886
msgid "Social Networks"
msgstr ""
@ -7936,675 +7767,951 @@ msgstr ""
msgid "Features updated"
msgstr ""
#: mod/settings.php:357
#: mod/settings.php:359
msgid "Relocate message has been send to your contacts"
msgstr ""
#: mod/settings.php:376
#: mod/settings.php:378
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: mod/settings.php:384
#: mod/settings.php:386
msgid "Wrong password."
msgstr ""
#: mod/settings.php:395
#: mod/settings.php:397
msgid "Password changed."
msgstr ""
#: mod/settings.php:397
#: mod/settings.php:399
msgid "Password update failed. Please try again."
msgstr ""
#: mod/settings.php:477
#: mod/settings.php:479
msgid " Please use a shorter name."
msgstr ""
#: mod/settings.php:479
#: mod/settings.php:481
msgid " Name too short."
msgstr ""
#: mod/settings.php:488
#: mod/settings.php:490
msgid "Wrong Password"
msgstr ""
#: mod/settings.php:493
#: mod/settings.php:495
msgid " Not valid email."
msgstr ""
#: mod/settings.php:499
#: mod/settings.php:501
msgid " Cannot change to that email."
msgstr ""
#: mod/settings.php:555
#: mod/settings.php:557
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: mod/settings.php:559
#: mod/settings.php:561
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: mod/settings.php:599
#: mod/settings.php:601
msgid "Settings updated."
msgstr ""
#: mod/settings.php:675 mod/settings.php:701 mod/settings.php:737
#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
msgid "Add application"
msgstr ""
#: mod/settings.php:679 mod/settings.php:705
#: mod/settings.php:681 mod/settings.php:707
msgid "Consumer Key"
msgstr ""
#: mod/settings.php:680 mod/settings.php:706
#: mod/settings.php:682 mod/settings.php:708
msgid "Consumer Secret"
msgstr ""
#: mod/settings.php:681 mod/settings.php:707
#: mod/settings.php:683 mod/settings.php:709
msgid "Redirect"
msgstr ""
#: mod/settings.php:682 mod/settings.php:708
#: mod/settings.php:684 mod/settings.php:710
msgid "Icon url"
msgstr ""
#: mod/settings.php:693
#: mod/settings.php:695
msgid "You can't edit this application."
msgstr ""
#: mod/settings.php:736
#: mod/settings.php:738
msgid "Connected Apps"
msgstr ""
#: mod/settings.php:740
#: mod/settings.php:742
msgid "Client key starts with"
msgstr ""
#: mod/settings.php:741
#: mod/settings.php:743
msgid "No name"
msgstr ""
#: mod/settings.php:742
#: mod/settings.php:744
msgid "Remove authorization"
msgstr ""
#: mod/settings.php:754
#: mod/settings.php:756
msgid "No Plugin settings configured"
msgstr ""
#: mod/settings.php:762
#: mod/settings.php:764
msgid "Plugin Settings"
msgstr ""
#: mod/settings.php:784
#: mod/settings.php:786
msgid "Additional Features"
msgstr ""
#: mod/settings.php:794 mod/settings.php:798
#: mod/settings.php:796 mod/settings.php:800
msgid "General Social Media Settings"
msgstr ""
#: mod/settings.php:804
#: mod/settings.php:806
msgid "Disable intelligent shortening"
msgstr ""
#: mod/settings.php:806
#: mod/settings.php:808
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:812
#: mod/settings.php:814
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr ""
#: mod/settings.php:814
#: mod/settings.php:816
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:820
#: mod/settings.php:822
msgid "Default group for OStatus contacts"
msgstr ""
#: mod/settings.php:826
#: mod/settings.php:828
msgid "Your legacy GNU Social account"
msgstr ""
#: mod/settings.php:828
#: mod/settings.php:830
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:831
#: mod/settings.php:833
msgid "Repair OStatus subscriptions"
msgstr ""
#: mod/settings.php:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
#: mod/settings.php:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
msgid "enabled"
msgstr ""
#: mod/settings.php:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
msgid "disabled"
msgstr ""
#: mod/settings.php:841
#: mod/settings.php:843
msgid "GNU Social (OStatus)"
msgstr ""
#: mod/settings.php:877
#: mod/settings.php:879
msgid "Email access is disabled on this site."
msgstr ""
#: mod/settings.php:889
#: mod/settings.php:891
msgid "Email/Mailbox Setup"
msgstr ""
#: mod/settings.php:890
#: mod/settings.php:892
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:891
#: mod/settings.php:893
msgid "Last successful email check:"
msgstr ""
#: mod/settings.php:893
#: mod/settings.php:895
msgid "IMAP server name:"
msgstr ""
#: mod/settings.php:894
#: mod/settings.php:896
msgid "IMAP port:"
msgstr ""
#: mod/settings.php:895
#: mod/settings.php:897
msgid "Security:"
msgstr ""
#: mod/settings.php:895 mod/settings.php:900
#: mod/settings.php:897 mod/settings.php:902
msgid "None"
msgstr ""
#: mod/settings.php:896
#: mod/settings.php:898
msgid "Email login name:"
msgstr ""
#: mod/settings.php:897
#: mod/settings.php:899
msgid "Email password:"
msgstr ""
#: mod/settings.php:898
#: mod/settings.php:900
msgid "Reply-to address:"
msgstr ""
#: mod/settings.php:899
#: mod/settings.php:901
msgid "Send public posts to all email contacts:"
msgstr ""
#: mod/settings.php:900
#: mod/settings.php:902
msgid "Action after import:"
msgstr ""
#: mod/settings.php:900
#: mod/settings.php:902
msgid "Move to folder"
msgstr ""
#: mod/settings.php:901
#: mod/settings.php:903
msgid "Move to folder:"
msgstr ""
#: mod/settings.php:990
#: mod/settings.php:994
msgid "Display Settings"
msgstr ""
#: mod/settings.php:996 mod/settings.php:1018
#: mod/settings.php:1000 mod/settings.php:1023
msgid "Display Theme:"
msgstr ""
#: mod/settings.php:997
#: mod/settings.php:1001
msgid "Mobile Theme:"
msgstr ""
#: mod/settings.php:998
msgid "Update browser every xx seconds"
msgstr ""
#: mod/settings.php:998
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
#: mod/settings.php:999
msgid "Number of items to display per page:"
msgstr ""
#: mod/settings.php:999 mod/settings.php:1000
msgid "Maximum of 100 items"
msgstr ""
#: mod/settings.php:1000
msgid "Number of items to display per page when viewed from mobile device:"
msgstr ""
#: mod/settings.php:1001
msgid "Don't show emoticons"
#: mod/settings.php:1002
msgid "Suppress warning of insecure networks"
msgstr ""
#: mod/settings.php:1002
msgid "Calendar"
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr ""
#: mod/settings.php:1003
msgid "Beginning of week:"
msgid "Update browser every xx seconds"
msgstr ""
#: mod/settings.php:1003
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
#: mod/settings.php:1004
msgid "Don't show notices"
msgid "Number of items to display per page:"
msgstr ""
#: mod/settings.php:1004 mod/settings.php:1005
msgid "Maximum of 100 items"
msgstr ""
#: mod/settings.php:1005
msgid "Infinite scroll"
msgid "Number of items to display per page when viewed from mobile device:"
msgstr ""
#: mod/settings.php:1006
msgid "Don't show emoticons"
msgstr ""
#: mod/settings.php:1007
msgid "Calendar"
msgstr ""
#: mod/settings.php:1008
msgid "Beginning of week:"
msgstr ""
#: mod/settings.php:1009
msgid "Don't show notices"
msgstr ""
#: mod/settings.php:1010
msgid "Infinite scroll"
msgstr ""
#: mod/settings.php:1011
msgid "Automatic updates only at the top of the network page"
msgstr ""
#: mod/settings.php:1007
#: mod/settings.php:1012
msgid "Bandwith Saver Mode"
msgstr ""
#: mod/settings.php:1007
#: mod/settings.php:1012
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr ""
#: mod/settings.php:1009
#: mod/settings.php:1014
msgid "General Theme Settings"
msgstr ""
#: mod/settings.php:1010
#: mod/settings.php:1015
msgid "Custom Theme Settings"
msgstr ""
#: mod/settings.php:1011
#: mod/settings.php:1016
msgid "Content Settings"
msgstr ""
#: mod/settings.php:1012 view/theme/frio/config.php:61
#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66
#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109
#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61
#: mod/settings.php:1017 view/theme/frio/config.php:61
#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr ""
#: mod/settings.php:1094
#: mod/settings.php:1099
msgid "Account Types"
msgstr ""
#: mod/settings.php:1095
#: mod/settings.php:1100
msgid "Personal Page Subtypes"
msgstr ""
#: mod/settings.php:1096
#: mod/settings.php:1101
msgid "Community Forum Subtypes"
msgstr ""
#: mod/settings.php:1103
#: mod/settings.php:1108
msgid "Personal Page"
msgstr ""
#: mod/settings.php:1104
#: mod/settings.php:1109
msgid "This account is a regular personal profile"
msgstr ""
#: mod/settings.php:1107
#: mod/settings.php:1112
msgid "Organisation Page"
msgstr ""
#: mod/settings.php:1108
#: mod/settings.php:1113
msgid "This account is a profile for an organisation"
msgstr ""
#: mod/settings.php:1111
#: mod/settings.php:1116
msgid "News Page"
msgstr ""
#: mod/settings.php:1112
#: mod/settings.php:1117
msgid "This account is a news account/reflector"
msgstr ""
#: mod/settings.php:1115
#: mod/settings.php:1120
msgid "Community Forum"
msgstr ""
#: mod/settings.php:1116
#: mod/settings.php:1121
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr ""
#: mod/settings.php:1119
#: mod/settings.php:1124
msgid "Normal Account Page"
msgstr ""
#: mod/settings.php:1120
#: mod/settings.php:1125
msgid "This account is a normal personal profile"
msgstr ""
#: mod/settings.php:1123
#: mod/settings.php:1128
msgid "Soapbox Page"
msgstr ""
#: mod/settings.php:1124
#: mod/settings.php:1129
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
#: mod/settings.php:1127
#: mod/settings.php:1132
msgid "Public Forum"
msgstr ""
#: mod/settings.php:1128
#: mod/settings.php:1133
msgid "Automatically approve all contact requests"
msgstr ""
#: mod/settings.php:1131
#: mod/settings.php:1136
msgid "Automatic Friend Page"
msgstr ""
#: mod/settings.php:1132
#: mod/settings.php:1137
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
#: mod/settings.php:1135
#: mod/settings.php:1140
msgid "Private Forum [Experimental]"
msgstr ""
#: mod/settings.php:1136
#: mod/settings.php:1141
msgid "Private forum - approved members only"
msgstr ""
#: mod/settings.php:1148
#: mod/settings.php:1153
msgid "OpenID:"
msgstr ""
#: mod/settings.php:1148
#: mod/settings.php:1153
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: mod/settings.php:1158
#: mod/settings.php:1163
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: mod/settings.php:1164
#: mod/settings.php:1169
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: mod/settings.php:1172
#: mod/settings.php:1177
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: mod/settings.php:1176
#: mod/settings.php:1181
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr ""
#: mod/settings.php:1181
#: mod/settings.php:1186
msgid "Allow friends to post to your profile page?"
msgstr ""
#: mod/settings.php:1187
#: mod/settings.php:1192
msgid "Allow friends to tag your posts?"
msgstr ""
#: mod/settings.php:1193
#: mod/settings.php:1198
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: mod/settings.php:1199
#: mod/settings.php:1204
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: mod/settings.php:1207
#: mod/settings.php:1212
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: mod/settings.php:1215
#: mod/settings.php:1220
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr ""
#: mod/settings.php:1222
#: mod/settings.php:1227
msgid "Automatically expire posts after this many days:"
msgstr ""
#: mod/settings.php:1222
#: mod/settings.php:1227
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: mod/settings.php:1223
#: mod/settings.php:1228
msgid "Advanced expiration settings"
msgstr ""
#: mod/settings.php:1224
#: mod/settings.php:1229
msgid "Advanced Expiration"
msgstr ""
#: mod/settings.php:1225
#: mod/settings.php:1230
msgid "Expire posts:"
msgstr ""
#: mod/settings.php:1226
#: mod/settings.php:1231
msgid "Expire personal notes:"
msgstr ""
#: mod/settings.php:1227
#: mod/settings.php:1232
msgid "Expire starred posts:"
msgstr ""
#: mod/settings.php:1228
#: mod/settings.php:1233
msgid "Expire photos:"
msgstr ""
#: mod/settings.php:1229
#: mod/settings.php:1234
msgid "Only expire posts by others:"
msgstr ""
#: mod/settings.php:1257
#: mod/settings.php:1262
msgid "Account Settings"
msgstr ""
#: mod/settings.php:1265
#: mod/settings.php:1270
msgid "Password Settings"
msgstr ""
#: mod/settings.php:1267
#: mod/settings.php:1272
msgid "Leave password fields blank unless changing"
msgstr ""
#: mod/settings.php:1268
#: mod/settings.php:1273
msgid "Current Password:"
msgstr ""
#: mod/settings.php:1268 mod/settings.php:1269
#: mod/settings.php:1273 mod/settings.php:1274
msgid "Your current password to confirm the changes"
msgstr ""
#: mod/settings.php:1269
#: mod/settings.php:1274
msgid "Password:"
msgstr ""
#: mod/settings.php:1273
#: mod/settings.php:1278
msgid "Basic Settings"
msgstr ""
#: mod/settings.php:1275
#: mod/settings.php:1280
msgid "Email Address:"
msgstr ""
#: mod/settings.php:1276
#: mod/settings.php:1281
msgid "Your Timezone:"
msgstr ""
#: mod/settings.php:1277
#: mod/settings.php:1282
msgid "Your Language:"
msgstr ""
#: mod/settings.php:1277
#: mod/settings.php:1282
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr ""
#: mod/settings.php:1278
#: mod/settings.php:1283
msgid "Default Post Location:"
msgstr ""
#: mod/settings.php:1279
#: mod/settings.php:1284
msgid "Use Browser Location:"
msgstr ""
#: mod/settings.php:1282
#: mod/settings.php:1287
msgid "Security and Privacy Settings"
msgstr ""
#: mod/settings.php:1284
#: mod/settings.php:1289
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: mod/settings.php:1284 mod/settings.php:1314
#: mod/settings.php:1289 mod/settings.php:1319
msgid "(to prevent spam abuse)"
msgstr ""
#: mod/settings.php:1285
#: mod/settings.php:1290
msgid "Default Post Permissions"
msgstr ""
#: mod/settings.php:1286
#: mod/settings.php:1291
msgid "(click to open/close)"
msgstr ""
#: mod/settings.php:1297
#: mod/settings.php:1302
msgid "Default Private Post"
msgstr ""
#: mod/settings.php:1298
#: mod/settings.php:1303
msgid "Default Public Post"
msgstr ""
#: mod/settings.php:1302
#: mod/settings.php:1307
msgid "Default Permissions for New Posts"
msgstr ""
#: mod/settings.php:1314
#: mod/settings.php:1319
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: mod/settings.php:1317
#: mod/settings.php:1322
msgid "Notification Settings"
msgstr ""
#: mod/settings.php:1318
#: mod/settings.php:1323
msgid "By default post a status message when:"
msgstr ""
#: mod/settings.php:1319
#: mod/settings.php:1324
msgid "accepting a friend request"
msgstr ""
#: mod/settings.php:1320
#: mod/settings.php:1325
msgid "joining a forum/community"
msgstr ""
#: mod/settings.php:1321
#: mod/settings.php:1326
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: mod/settings.php:1322
#: mod/settings.php:1327
msgid "Send a notification email when:"
msgstr ""
#: mod/settings.php:1323
#: mod/settings.php:1328
msgid "You receive an introduction"
msgstr ""
#: mod/settings.php:1324
#: mod/settings.php:1329
msgid "Your introductions are confirmed"
msgstr ""
#: mod/settings.php:1325
#: mod/settings.php:1330
msgid "Someone writes on your profile wall"
msgstr ""
#: mod/settings.php:1326
#: mod/settings.php:1331
msgid "Someone writes a followup comment"
msgstr ""
#: mod/settings.php:1327
#: mod/settings.php:1332
msgid "You receive a private message"
msgstr ""
#: mod/settings.php:1328
#: mod/settings.php:1333
msgid "You receive a friend suggestion"
msgstr ""
#: mod/settings.php:1329
#: mod/settings.php:1334
msgid "You are tagged in a post"
msgstr ""
#: mod/settings.php:1330
#: mod/settings.php:1335
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: mod/settings.php:1332
#: mod/settings.php:1337
msgid "Activate desktop notifications"
msgstr ""
#: mod/settings.php:1332
#: mod/settings.php:1337
msgid "Show desktop popup on new notifications"
msgstr ""
#: mod/settings.php:1334
#: mod/settings.php:1339
msgid "Text-only notification emails"
msgstr ""
#: mod/settings.php:1336
#: mod/settings.php:1341
msgid "Send text only notification emails, without the html part"
msgstr ""
#: mod/settings.php:1338
#: mod/settings.php:1343
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: mod/settings.php:1339
#: mod/settings.php:1344
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: mod/settings.php:1342
#: mod/settings.php:1347
msgid "Relocate"
msgstr ""
#: mod/settings.php:1343
#: mod/settings.php:1348
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:1344
#: mod/settings.php:1349
msgid "Resend relocate message to contacts"
msgstr ""
#: 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:71
msgid "No recipient selected."
msgstr ""
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr ""
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr ""
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr ""
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr ""
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr ""
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr ""
#: 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/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr ""
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr ""
#: mod/share.php:38
msgid "link"
msgstr ""
#: 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 ""
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts, "
"and/or create new posts for you?"
msgstr ""
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: mod/babel.php:31
msgid "Source input: "
msgstr ""
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr ""
#: mod/babel.php:39
msgid "bb2html: "
msgstr ""
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr ""
#: mod/babel.php:47
msgid "bb2md: "
msgstr ""
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr ""
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr ""
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr ""
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr ""
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr ""
#: mod/item.php:116
msgid "Unable to locate original post."
msgstr ""
#: mod/item.php:340
msgid "Empty post discarded."
msgstr ""
#: mod/item.php:898
msgid "System error. Post not saved."
msgstr ""
#: mod/item.php:988
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: mod/item.php:990
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: mod/item.php:991
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: mod/item.php:995
#, php-format
msgid "%s posted an update."
msgstr ""
#: mod/ostatus_subscribe.php:14
msgid "Subscribing 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/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr ""
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr ""
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr ""
#: mod/message.php:235
msgid "Message deleted."
msgstr ""
#: mod/message.php:266
msgid "Conversation removed."
msgstr ""
#: mod/message.php:383
msgid "No messages."
msgstr ""
#: mod/message.php:426
msgid "Message not available."
msgstr ""
#: mod/message.php:503
msgid "Delete message"
msgstr ""
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr ""
#: mod/message.php:531
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: mod/message.php:535
msgid "Send Reply"
msgstr ""
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr ""
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr ""
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr ""
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr ""
#: mod/manage.php:140
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:141
msgid "Select an identity to manage: "
msgstr ""
#: object/Item.php:370
msgid "via"
msgstr ""
@ -8641,6 +8748,14 @@ msgstr ""
msgid "Resize to best fit and retain aspect ratio."
msgstr ""
#: view/theme/frio/theme.php:229
msgid "Guest"
msgstr ""
#: view/theme/frio/theme.php:235
msgid "Visitor"
msgstr ""
#: view/theme/frio/config.php:42
msgid "Default"
msgstr ""
@ -8681,31 +8796,6 @@ msgstr ""
msgid "Set the background image"
msgstr ""
#: view/theme/frio/theme.php:226
msgid "Guest"
msgstr ""
#: view/theme/frio/theme.php:232
msgid "Visitor"
msgstr ""
#: view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73
#: view/theme/diabook/config.php:151
msgid "Set font-size for posts and comments"
msgstr ""
#: view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr ""
#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr ""
#: view/theme/quattro/config.php:67
msgid "Alignment"
msgstr ""
@ -8718,6 +8808,10 @@ msgstr ""
msgid "Center"
msgstr ""
#: view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr ""
#: view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr ""
@ -8726,33 +8820,19 @@ msgstr ""
msgid "Textareas font size"
msgstr ""
#: 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
msgid "Set colour scheme"
msgstr ""
#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
#: view/theme/diabook/config.php:160
msgid "Community Profiles"
msgstr ""
#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
#: view/theme/diabook/config.php:164
msgid "Last users"
msgstr ""
#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
#: view/theme/diabook/config.php:163
msgid "Find Friends"
msgstr ""
#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524
#: view/theme/vier/theme.php:200
msgid "Local Directory"
msgstr ""
@ -8761,8 +8841,6 @@ msgid "Quick Start"
msgstr ""
#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
#: view/theme/diabook/config.php:162
msgid "Connect Services"
msgstr ""
@ -8774,68 +8852,14 @@ msgstr ""
msgid "Set style"
msgstr ""
#: view/theme/vier/config.php:111 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/vier/config.php:111
msgid "Community Pages"
msgstr ""
#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599
#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161
#: view/theme/vier/config.php:113
msgid "Help or @NewHere ?"
msgstr ""
#: view/theme/diabook/theme.php:125
msgid "Your contacts"
msgstr ""
#: view/theme/diabook/theme.php:128
msgid "Your personal photos"
msgstr ""
#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632
#: view/theme/diabook/config.php:166
msgid "Last likes"
msgstr ""
#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
#: view/theme/diabook/config.php:165
msgid "Last photos"
msgstr ""
#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
#: view/theme/diabook/config.php:159
msgid "Earth Layers"
msgstr ""
#: view/theme/diabook/theme.php:584
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: view/theme/diabook/theme.php:622
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: view/theme/diabook/config.php:153
msgid "Set resolution for middle column"
msgstr ""
#: view/theme/diabook/config.php:154
msgid "Set color scheme"
msgstr ""
#: view/theme/diabook/config.php:155
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: view/theme/duepuntozero/config.php:45
msgid "greenzero"
msgstr ""
@ -8863,56 +8887,3 @@ msgstr ""
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
msgstr ""
#: index.php:447
msgid "toggle mobile"
msgstr ""
#: boot.php:968
msgid "Delete this item?"
msgstr ""
#: boot.php:971
msgid "show fewer"
msgstr ""
#: boot.php:1641
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: boot.php:1753
msgid "Create a New Account"
msgstr ""
#: boot.php:1782
msgid "Password: "
msgstr ""
#: boot.php:1783
msgid "Remember me"
msgstr ""
#: boot.php:1786
msgid "Or login using OpenID: "
msgstr ""
#: boot.php:1792
msgid "Forgot your password?"
msgstr ""
#: boot.php:1795
msgid "Website Terms of Service"
msgstr ""
#: boot.php:1796
msgid "terms of service"
msgstr ""
#: boot.php:1798
msgid "Website Privacy Policy"
msgstr ""
#: boot.php:1799
msgid "privacy policy"
msgstr ""

View file

@ -32,16 +32,30 @@ sudo apt-get install -y apache2
sudo a2enmod rewrite actions ssl
sudo cp /vagrant/util/vagrant_vhost.sh /usr/local/bin/vhost
sudo chmod guo+x /usr/local/bin/vhost
sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica.dev
sudo a2dissite 000-default
sudo service apache2 restart
if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica-trusty.dev
sudo a2dissite 000-default
sudo service apache2 restart
elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
sudo vhost -s 192.168.22.11.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica-xenial.dev
sudo a2dissite 000-default
sudo systemctl restart apache2
fi
#Install php
echo ">>> Installing PHP5"
sudo apt-get install -y php5 libapache2-mod-php5 php5-cli php5-mysql php5-curl php5-gd
sudo apt-get install -y imagemagick
sudo apt-get install -y php5-imagick
sudo service apache2 restart
if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
echo ">>> Installing PHP5"
sudo apt-get install -y php5 libapache2-mod-php5 php5-cli php5-mysql php5-curl php5-gd
sudo apt-get install -y imagemagick
sudo apt-get install -y php5-imagick
sudo service apache2 restart
elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
echo ">>> Installing PHP7"
sudo apt-get install -y php libapache2-mod-php php-cli php-mysql php-curl php-gd
sudo apt-get install -y imagemagick
sudo apt-get install -y php-imagick
sudo systemctl restart apache2
fi
#Install mysql
@ -59,12 +73,21 @@ Q1="GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;"
Q2="FLUSH PRIVILEGES;"
SQL="${Q1}${Q2}"
$MYSQL -uroot -proot -e "$SQL"
service mysql restart
if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
service mysql restart
elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
systemctl restart mysql
fi
#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"
if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
debconf-set-selections <<< "postfix postfix/mailname string friendica-trusty.dev"
elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
debconf-set-selections <<< "postfix postfix/mailname string friendica-xenial.dev"
fi
debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'"
sudo apt-get install -y postfix mailutils libmailutils-dev
sudo echo -e "friendica1: vagrant\nfriendica2: vagrant\nfriendica3: vagrant\nfriendica4: vagrant\nfriendica5: vagrant" >> /etc/aliases && sudo newaliases

View file

@ -365,15 +365,15 @@ a {
color: #00a700;
}
.federation-graph {
width: 400px;
height: 400px;
float: right;
width: 400px;
height: 400px;
float: right;
margin: 20px;
}
.federation-network-graph {
width: 240px;
height: 240px;
float: left;
width: 240px;
height: 240px;
float: left;
margin: 20px;
}
ul.federation-stats,
@ -429,7 +429,7 @@ td.federation-data {
}
.p-addr {
clear: both;
clear: both;
}
#live-community {
@ -464,3 +464,27 @@ td.federation-data {
#settings-form .pageflags {
margin: 0 0 20px 30px;
}
/* admin pending user notes */
td.pendingnote {
padding-left: 20px;
padding-right: 20px;
}
td.pendingnote > p > span {
font-weight: bold;
}
/* warning message */
.warning-message {
padding: 10px;
margin: 5px;
border-left: 5px solid #f00;
font-weight: bold;
}
/* src/href attributes filter error display */
.invalid-src { border: 1px dotted red;}
.invalid-href { border-bottom: 1px dotted red;}
.invalid-src:after,
.invalid-href:after { content: '⚠️'}
img.invalid-src:after { vertical-align: top;}

View file

@ -35,9 +35,9 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-10 15:43+0100\n"
"PO-Revision-Date: 2016-11-11 10:10+0000\n"
"Last-Translator: Andreas H.\n"
"POT-Creation-Date: 2016-12-06 08:42+0100\n"
"PO-Revision-Date: 2016-12-08 06:38+0000\n"
"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\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"
@ -45,1573 +45,86 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Neuen Kontakt hinzufügen"
#: boot.php:970
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Adresse oder Web-Link eingeben"
#: boot.php:971 mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719
msgid "Comment"
msgstr "Kommentar"
#: 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:10 include/identity.php:218
#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
#: mod/suggest.php:101
msgid "Connect"
msgstr "Verbinden"
#: 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 include/conversation.php:981
#: include/Contact.php:347 mod/follow.php:103 mod/allfriends.php:66
#: mod/contacts.php:602 mod/dirfind.php:204 mod/match.php:72
#: mod/suggest.php:83
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:34 mod/contacts.php:798 mod/directory.php:204
msgid "Find"
msgstr "Finde"
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
#: 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/vier/theme.php:204
#: view/theme/diabook/theme.php:528
msgid "Invite Friends"
msgstr "Freunde einladen"
#: include/contact_widgets.php:108
msgid "Networks"
msgstr "Netzwerke"
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr "Alle Netzwerke"
#: include/contact_widgets.php:141 include/features.php:103
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr "Alles"
#: include/contact_widgets.php:173
msgid "Categories"
msgstr "Kategorien"
#: include/contact_widgets.php:237
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2188 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260 boot.php:970
#: boot.php:972 include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2241 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260
msgid "show more"
msgstr "mehr anzeigen"
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
#: view/theme/vier/theme.php:255
msgid "Forums"
msgstr "Foren"
#: boot.php:973
msgid "show fewer"
msgstr "weniger anzeigen"
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr "Externer Link zum Forum"
#: include/profile_selectors.php:6
msgid "Male"
msgstr "Männlich"
#: include/profile_selectors.php:6
msgid "Female"
msgstr "Weiblich"
#: include/profile_selectors.php:6
msgid "Currently Male"
msgstr "Momentan männlich"
#: include/profile_selectors.php:6
msgid "Currently Female"
msgstr "Momentan weiblich"
#: include/profile_selectors.php:6
msgid "Mostly Male"
msgstr "Hauptsächlich männlich"
#: include/profile_selectors.php:6
msgid "Mostly Female"
msgstr "Hauptsächlich weiblich"
#: 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 "Transsexuell"
#: include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr "Hermaphrodit"
#: include/profile_selectors.php:6
msgid "Neuter"
msgstr "Neuter"
#: include/profile_selectors.php:6
msgid "Non-specific"
msgstr "Nicht spezifiziert"
#: include/profile_selectors.php:6
msgid "Other"
msgstr "Andere"
#: include/profile_selectors.php:6 include/conversation.php:1483
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Unentschieden"
msgstr[1] "Unentschieden"
#: include/profile_selectors.php:23
msgid "Males"
msgstr "Männer"
#: include/profile_selectors.php:23
msgid "Females"
msgstr "Frauen"
#: include/profile_selectors.php:23
msgid "Gay"
msgstr "Schwul"
#: include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbisch"
#: include/profile_selectors.php:23
msgid "No Preference"
msgstr "Keine Vorlieben"
#: include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bisexuell"
#: include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autosexual"
#: include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Abstinent"
#: include/profile_selectors.php:23
msgid "Virgin"
msgstr "Jungfrauen"
#: include/profile_selectors.php:23
msgid "Deviant"
msgstr "Deviant"
#: include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetish"
#: include/profile_selectors.php:23
msgid "Oodles"
msgstr "Oodles"
#: include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Nonsexual"
#: include/profile_selectors.php:42
msgid "Single"
msgstr "Single"
#: include/profile_selectors.php:42
msgid "Lonely"
msgstr "Einsam"
#: include/profile_selectors.php:42
msgid "Available"
msgstr "Verfügbar"
#: include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Nicht verfügbar"
#: include/profile_selectors.php:42
msgid "Has crush"
msgstr "verknallt"
#: include/profile_selectors.php:42
msgid "Infatuated"
msgstr "verliebt"
#: include/profile_selectors.php:42
msgid "Dating"
msgstr "Dating"
#: include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Untreu"
#: include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Sexbesessen"
#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
msgid "Friends"
msgstr "Kontakte"
#: include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Freunde/Zuwendungen"
#: include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
#: include/profile_selectors.php:42
msgid "Engaged"
msgstr "Verlobt"
#: include/profile_selectors.php:42
msgid "Married"
msgstr "Verheiratet"
#: include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr "imaginär verheiratet"
#: include/profile_selectors.php:42
msgid "Partners"
msgstr "Partner"
#: include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "zusammenlebend"
#: include/profile_selectors.php:42
msgid "Common law"
msgstr "wilde Ehe"
#: include/profile_selectors.php:42
msgid "Happy"
msgstr "Glücklich"
#: include/profile_selectors.php:42
msgid "Not looking"
msgstr "Nicht auf der Suche"
#: include/profile_selectors.php:42
msgid "Swinger"
msgstr "Swinger"
#: include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Betrogen"
#: include/profile_selectors.php:42
msgid "Separated"
msgstr "Getrennt"
#: include/profile_selectors.php:42
msgid "Unstable"
msgstr "Unstabil"
#: include/profile_selectors.php:42
msgid "Divorced"
msgstr "Geschieden"
#: include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr "imaginär geschieden"
#: include/profile_selectors.php:42
msgid "Widowed"
msgstr "Verwitwet"
#: include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Unsicher"
#: include/profile_selectors.php:42
msgid "It's complicated"
msgstr "Ist kompliziert"
#: include/profile_selectors.php:42
msgid "Don't care"
msgstr "Ist mir nicht wichtig"
#: include/profile_selectors.php:42
msgid "Ask me"
msgstr "Frag mich"
#: include/bb2diaspora.php:148 include/event.php:16 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: include/bb2diaspora.php:154 include/event.php:33 include/event.php:51
#: include/event.php:487
msgid "Starts:"
msgstr "Beginnt:"
#: include/bb2diaspora.php:162 include/event.php:36 include/event.php:57
#: include/event.php:488
msgid "Finishes:"
msgstr "Endet:"
#: include/bb2diaspora.php:170 include/event.php:39 include/event.php:63
#: include/event.php:489 include/identity.php:328 mod/notifications.php:232
#: mod/contacts.php:628 mod/directory.php:137 mod/events.php:494
msgid "Location:"
msgstr "Ort:"
#: include/dba_pdo.php:72 include/dba.php:56
#: boot.php:1655
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: include/auth.php:45
msgid "Logged out."
msgstr "Abgemeldet."
#: boot.php:1767
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
#: boot.php:1768 include/nav.php:109 mod/register.php:289
msgid "Register"
msgstr "Registrieren"
#: include/auth.php:132 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."
#: boot.php:1792 include/nav.php:78 view/theme/frio/theme.php:246
msgid "Logout"
msgstr "Abmelden"
#: include/auth.php:132 include/user.php:75
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
#: boot.php:1793 include/nav.php:95 mod/bookmarklet.php:12
msgid "Login"
msgstr "Anmeldung"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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 <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
#: boot.php:1795 mod/lostpass.php:161
msgid "Nickname or Email: "
msgstr "Spitzname oder E-Mail:"
#: include/group.php:209
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: boot.php:1796
msgid "Password: "
msgstr "Passwort: "
#: include/group.php:242
msgid "Everybody"
msgstr "Alle Kontakte"
#: boot.php:1797
msgid "Remember me"
msgstr "Anmeldedaten merken"
#: include/group.php:265
msgid "edit"
msgstr "bearbeiten"
#: boot.php:1800
msgid "Or login using OpenID: "
msgstr "Oder melde Dich mit Deiner OpenID an: "
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr "Gruppen"
#: boot.php:1806
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: include/group.php:288
msgid "Edit groups"
msgstr "Gruppen bearbeiten"
#: boot.php:1807 mod/lostpass.php:109
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
#: include/group.php:290
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: boot.php:1809
msgid "Website Terms of Service"
msgstr "Website Nutzungsbedingungen"
#: include/group.php:291
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: boot.php:1810
msgid "terms of service"
msgstr "Nutzungsbedingungen"
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr "Gruppenname:"
#: boot.php:1812
msgid "Website Privacy Policy"
msgstr "Website Datenschutzerklärung"
#: include/group.php:294
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr "hinzufügen"
#: include/user.php:39 mod/settings.php:371
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: 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:147 include/user.php:245
msgid "Nickname is already registered. Please choose another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: include/user.php:157
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:173
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
#: include/user.php:231
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:256 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr "Standard"
#: include/user.php:266
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:345 include/user.php:352 include/user.php:359
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: mod/profile_photo.php:210 mod/profile_photo.php:302
#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
#: mod/photos.php:1819 view/theme/diabook/theme.php:500
msgid "Profile Photos"
msgstr "Profilbilder"
#: include/user.php:387
#, 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:391
#, 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/user.php:423 mod/admin.php:1184
#, php-format
msgid "Registration details for %s"
msgstr "Details der Registration von %s"
#: 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:56 mod/admin.php:862
msgid "Frequently"
msgstr "immer wieder"
#: include/contact_selectors.php:57 mod/admin.php:863
msgid "Hourly"
msgstr "Stündlich"
#: include/contact_selectors.php:58 mod/admin.php:864
msgid "Twice daily"
msgstr "Zweimal täglich"
#: include/contact_selectors.php:59 mod/admin.php:865
msgid "Daily"
msgstr "Täglich"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Wöchentlich"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Monatlich"
#: include/contact_selectors.php:76 mod/dfrn_request.php:867
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:1367 mod/admin.php:1380 mod/admin.php:1392 mod/admin.php:1410
msgid "Email"
msgstr "E-Mail"
#: include/contact_selectors.php:80 mod/dfrn_request.php:869
#: mod/settings.php:840
msgid "Diaspora"
msgstr "Diaspora"
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: 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 "GNU Social"
msgstr "GNU Social"
#: include/contact_selectors.php:92
msgid "App.net"
msgstr "App.net"
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr "Hubzilla/Redmatrix"
#: include/network.php:595
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr "An E-Mail senden"
#: include/acl_selectors.php:332
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
#: include/acl_selectors.php:333 mod/settings.php:1176
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
msgid "show"
msgstr "zeigen"
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
msgid "don't show"
msgstr "nicht zeigen"
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr "Berechtigungen"
#: include/acl_selectors.php:350
msgid "Close"
msgstr "Schließen"
#: include/like.php:163 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1808 mod/subthread.php:87
#: mod/tagger.php:62 view/theme/diabook/theme.php:471
msgid "photo"
msgstr "Foto"
#: include/like.php:163 include/diaspora.php:1402 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
msgid "status"
msgstr "Status"
#: include/like.php:165 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1806
#: view/theme/diabook/theme.php:463
msgid "event"
msgstr "Event"
#: include/like.php:182 include/diaspora.php:1398 include/conversation.php:141
#: 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"
#: include/like.php:184 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[kein Betreff]"
#: include/message.php:145 include/Photo.php:1045 include/Photo.php:1061
#: include/Photo.php:1069 include/Photo.php:1094 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: include/plugin.php:534
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
#: include/plugin.php:539
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
#: 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:173
msgid "User profile creation error"
msgstr "Fehler beim Anlegen des Nutzerkontos"
#: include/uimport.php:222
#, 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: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/NotificationsManager.php:153
msgid "System"
msgstr "System"
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:402
#: view/theme/frio/theme.php:253
msgid "Network"
msgstr "Netzwerk"
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:845
msgid "Personal"
msgstr "Persönlich"
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161 view/theme/diabook/theme.php:123
msgid "Home"
msgstr "Pinnwand"
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr "Kontaktanfragen"
#: include/NotificationsManager.php:234 include/NotificationsManager.php:245
#, php-format
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
#: include/NotificationsManager.php:244
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
#: include/NotificationsManager.php:258
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: include/NotificationsManager.php:269
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: include/NotificationsManager.php:280
#, php-format
msgid "%s is attending %s's event"
msgstr "%s nimmt an %s's Event teil"
#: include/NotificationsManager.php:291
#, php-format
msgid "%s is not attending %s's event"
msgstr "%s nimmt nicht an %s's Event teil"
#: include/NotificationsManager.php:302
#, php-format
msgid "%s may attend %s's event"
msgstr "%s nimmt eventuell an %s's Event teil"
#: include/NotificationsManager.php:317
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: include/NotificationsManager.php:750
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: include/NotificationsManager.php:783
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: include/NotificationsManager.php:783
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: include/diaspora.php:1954
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: include/diaspora.php:2854
msgid "Attachments:"
msgstr "Anhänge:"
#: include/features.php:63
msgid "General Features"
msgstr "Allgemeine Features"
#: include/features.php:65
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: include/features.php:65
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: include/features.php:66
msgid "Photo Location"
msgstr "Aufnahmeort"
#: include/features.php:66
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
#: include/features.php:67
msgid "Export Public Calendar"
msgstr "Öffentlichen Kalender exportieren"
#: include/features.php:67
msgid "Ability for visitors to download the public calendar"
msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
#: include/features.php:72
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: include/features.php:73
msgid "Richtext Editor"
msgstr "Web-Editor"
#: include/features.php:73
msgid "Enable richtext editor"
msgstr "Den Web-Editor für neue Beiträge aktivieren"
#: include/features.php:74
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: include/features.php:74
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: include/features.php:75
msgid "Auto-mention Forums"
msgstr "Foren automatisch erwähnen"
#: include/features.php:75
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."
#: include/features.php:80
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: include/features.php:81
msgid "Search by Date"
msgstr "Archiv"
#: include/features.php:81
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: include/features.php:82 include/features.php:112
msgid "List Forums"
msgstr "Zeige Foren"
#: include/features.php:82
msgid "Enable widget to display the forums your are connected with"
msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
#: include/features.php:83
msgid "Group Filter"
msgstr "Gruppen Filter"
#: include/features.php:83
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: include/features.php:84
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: include/features.php:84
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: include/features.php:85 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: include/features.php:85
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: include/features.php:90
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: include/features.php:91
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: include/features.php:91
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
#: include/features.php:92
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: include/features.php:92
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: include/features.php:93
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: include/features.php:93
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: include/features.php:98
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: include/features.php:99
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: include/features.php:99
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: include/features.php:100
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: include/features.php:100
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: include/features.php:101
msgid "Tagging"
msgstr "Tagging"
#: include/features.php:101
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: include/features.php:102
msgid "Post Categories"
msgstr "Beitragskategorien"
#: include/features.php:102
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: include/features.php:103
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: include/features.php:104
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: include/features.php:104
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: include/features.php:105
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: include/features.php:105
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: include/features.php:106
msgid "Mute Post Notifications"
msgstr "Benachrichtigungen für Beiträge Stumm schalten"
#: include/features.php:106
msgid "Ability to mute notifications for a thread"
msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
#: include/features.php:111
msgid "Advanced Profile Settings"
msgstr "Erweiterte Profil-Einstellungen"
#: include/features.php:112
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
#: include/delivery.php:439
msgid "(no subject)"
msgstr "(kein Betreff)"
#: include/delivery.php:450 include/enotify.php:43
msgid "noreply"
msgstr "noreply"
#: include/api.php:1019
#, 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:1039
#, 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:1060
#, 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/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr "Bild/Foto"
#: include/bbcode.php:465
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/conversation.php:185 mod/dfrn_confirm.php:473
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: include/conversation.php:303
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: include/conversation.php:304
#, 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:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr "Likes"
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr "Dislikes"
#: include/conversation.php:586 include/conversation.php:1477
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Teilnehmend"
msgstr[1] "Teilnehmend"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr "Nicht teilnehmend"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr "Eventuell teilnehmend"
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr "Auswählen"
#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
#: mod/content.php:759 mod/admin.php:1384 mod/contacts.php:808
#: mod/contacts.php:1016 mod/photos.php:1682 mod/settings.php:739
#: object/Item.php:134
msgid "Delete"
msgstr "Löschen"
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr "Kategorien:"
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: include/conversation.php:791 include/conversation.php:1261
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 mod/content.php:515 mod/content.php:948
#: mod/photos.php:1570 object/Item.php:406
msgid "Please wait"
msgstr "Bitte warten"
#: include/conversation.php:870
msgid "remove"
msgstr "löschen"
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: include/conversation.php:966
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: include/conversation.php:967 include/Contact.php:390
msgid "View Status"
msgstr "Pinnwand anschauen"
#: include/conversation.php:968 include/conversation.php:984
#: include/Contact.php:333 include/Contact.php:346 include/Contact.php:391
#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
#: mod/match.php:71 mod/suggest.php:82
msgid "View Profile"
msgstr "Profil anschauen"
#: include/conversation.php:969 include/Contact.php:392
msgid "View Photos"
msgstr "Bilder anschauen"
#: include/conversation.php:970 include/Contact.php:393
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: include/conversation.php:971 include/Contact.php:394
msgid "View Contact"
msgstr "Kontakt anzeigen"
#: include/conversation.php:972 include/Contact.php:396
msgid "Send PM"
msgstr "Private Nachricht senden"
#: include/conversation.php:976 include/Contact.php:397
msgid "Poke"
msgstr "Anstupsen"
#: include/conversation.php:1094
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: include/conversation.php:1097
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: include/conversation.php:1100
#, php-format
msgid "%s attends."
msgstr "%s nimmt teil."
#: include/conversation.php:1103
#, php-format
msgid "%s doesn't attend."
msgstr "%s nimmt nicht teil."
#: include/conversation.php:1106
#, php-format
msgid "%s attends maybe."
msgstr "%s nimmt eventuell teil."
#: include/conversation.php:1116
msgid "and"
msgstr "und"
#: include/conversation.php:1122
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: include/conversation.php:1131
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: include/conversation.php:1132
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: include/conversation.php:1135
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: include/conversation.php:1136
#, php-format
msgid "%s don't like this."
msgstr "%s mögen dies nicht."
#: include/conversation.php:1139
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
#: include/conversation.php:1140
#, php-format
msgid "%s attend."
msgstr "%s nehmen teil."
#: include/conversation.php:1143
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
#: include/conversation.php:1144
#, php-format
msgid "%s don't attend."
msgstr "%s nehmen nicht teil."
#: include/conversation.php:1147
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
#: include/conversation.php:1148
#, php-format
msgid "%s anttend maybe."
msgstr "%s nehmen vielleicht teil."
#: include/conversation.php:1187 include/conversation.php:1205
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: include/conversation.php:1188 include/conversation.php:1206
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: include/conversation.php:1189 include/conversation.php:1207
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: include/conversation.php:1191 include/conversation.php:1209
msgid "Tag term:"
msgstr "Tag:"
#: include/conversation.php:1192 include/conversation.php:1210
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "In diesem Ordner speichern:"
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Where are you right now?"
msgstr "Wo hältst Du Dich jetzt gerade auf?"
#: include/conversation.php:1194
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: include/conversation.php:1242 mod/photos.php:1569
msgid "Share"
msgstr "Teilen"
#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr "Foto hochladen"
#: include/conversation.php:1244 mod/editpost.php:111
msgid "upload photo"
msgstr "Bild hochladen"
#: include/conversation.php:1245 mod/editpost.php:112
msgid "Attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1246 mod/editpost.php:113
msgid "attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: include/conversation.php:1248 mod/editpost.php:115
msgid "web link"
msgstr "Weblink"
#: include/conversation.php:1249 mod/editpost.php:116
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: include/conversation.php:1250 mod/editpost.php:117
msgid "video link"
msgstr "Video-Link"
#: include/conversation.php:1251 mod/editpost.php:118
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: include/conversation.php:1252 mod/editpost.php:119
msgid "audio link"
msgstr "Audio-Link"
#: include/conversation.php:1253 mod/editpost.php:120
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: include/conversation.php:1254 mod/editpost.php:121
msgid "set location"
msgstr "Ort setzen"
#: include/conversation.php:1255 mod/editpost.php:122
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: include/conversation.php:1256 mod/editpost.php:123
msgid "clear location"
msgstr "Ort löschen"
#: include/conversation.php:1258 mod/editpost.php:137
msgid "Set title"
msgstr "Titel setzen"
#: include/conversation.php:1260 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: include/conversation.php:1262 mod/editpost.php:125
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: include/conversation.php:1263 mod/editpost.php:154
msgid "permissions"
msgstr "Zugriffsrechte"
#: include/conversation.php:1271 mod/editpost.php:134
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
#: mod/photos.php:1725 object/Item.php:729
msgid "Preview"
msgstr "Vorschau"
#: include/conversation.php:1280 include/items.php:1917 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
#: mod/contacts.php:445 mod/photos.php:235 mod/photos.php:322
#: mod/suggest.php:32 mod/videos.php:128 mod/settings.php:677
#: mod/settings.php:703
msgid "Cancel"
msgstr "Abbrechen"
#: include/conversation.php:1286
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: include/conversation.php:1287
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: include/conversation.php:1288
msgid "Private post"
msgstr "Privater Beitrag"
#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr "Nachricht"
#: include/conversation.php:1294 mod/editpost.php:153
msgid "Browser"
msgstr "Browser"
#: include/conversation.php:1449
msgid "View all"
msgstr "Zeige alle"
#: include/conversation.php:1471
msgid "Like"
msgid_plural "Likes"
msgstr[0] "mag ich"
msgstr[1] "Mag ich"
#: include/conversation.php:1474
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "mag ich nicht"
msgstr[1] "Mag ich nicht"
#: include/conversation.php:1480
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Nicht teilnehmend "
msgstr[1] "Nicht teilnehmend"
#: boot.php:1813
msgid "privacy policy"
msgstr "Datenschutzerklärung"
#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
msgid "Miscellaneous"
@ -1645,8 +158,8 @@ msgstr "Jahr"
msgid "years"
msgstr "Jahre"
#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
#: mod/events.php:389
#: include/datetime.php:351 include/event.php:480 mod/events.php:389
#: mod/cal.php:284
msgid "month"
msgstr "Monat"
@ -1654,8 +167,8 @@ msgstr "Monat"
msgid "months"
msgstr "Monate"
#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
#: mod/events.php:390
#: include/datetime.php:352 include/event.php:481 mod/events.php:390
#: mod/cal.php:285
msgid "week"
msgstr "Woche"
@ -1663,8 +176,8 @@ msgstr "Woche"
msgid "weeks"
msgstr "Wochen"
#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
#: mod/events.php:391
#: include/datetime.php:353 include/event.php:482 mod/events.php:391
#: mod/cal.php:286
msgid "day"
msgstr "Tag"
@ -1706,40 +219,176 @@ msgstr "%1$d %2$s her"
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: include/datetime.php:573 include/dfrn.php:1108
#: include/datetime.php:573 include/dfrn.php:1109
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
#: include/dbstructure.php:26
#: 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:10 include/identity.php:218 mod/dirfind.php:201
#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101
msgid "Connect"
msgstr "Verbinden"
#: include/contact_widgets.php:24
#, 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 invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d Einladung verfügbar"
msgstr[1] "%d Einladungen verfügbar"
#: include/dbstructure.php:31
#: 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 include/conversation.php:981
#: include/Contact.php:361 mod/dirfind.php:204 mod/match.php:72
#: mod/allfriends.php:66 mod/contacts.php:602 mod/follow.php:103
#: mod/suggest.php:83
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:34 mod/directory.php:204 mod/contacts.php:798
msgid "Find"
msgstr "Finde"
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
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/vier/theme.php:204
msgid "Invite Friends"
msgstr "Freunde einladen"
#: include/contact_widgets.php:108
msgid "Networks"
msgstr "Netzwerke"
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr "Alle Netzwerke"
#: include/contact_widgets.php:141 include/features.php:110
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr "Alles"
#: include/contact_widgets.php:173
msgid "Categories"
msgstr "Kategorien"
#: include/contact_widgets.php:237
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
#: include/NotificationsManager.php:153
msgid "System"
msgstr "System"
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:411
#: view/theme/frio/theme.php:256
msgid "Network"
msgstr "Netzwerk"
#: include/dfrn.php:1107
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:846
msgid "Personal"
msgstr "Persönlich"
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161
msgid "Home"
msgstr "Pinnwand"
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr "Kontaktanfragen"
#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
#, php-format
msgid "%s\\'s birthday"
msgstr "%ss Geburtstag"
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
#: include/NotificationsManager.php:243
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
#: include/NotificationsManager.php:256
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: include/NotificationsManager.php:267
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: include/NotificationsManager.php:278
#, php-format
msgid "%s is attending %s's event"
msgstr "%s nimmt an %s's Event teil"
#: include/NotificationsManager.php:289
#, php-format
msgid "%s is not attending %s's event"
msgstr "%s nimmt nicht an %s's Event teil"
#: include/NotificationsManager.php:300
#, php-format
msgid "%s may attend %s's event"
msgstr "%s nimmt eventuell an %s's Event teil"
#: include/NotificationsManager.php:315
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: include/NotificationsManager.php:748
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: include/NotificationsManager.php:781
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: include/NotificationsManager.php:781
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: include/enotify.php:24
msgid "Friendica Notification"
@ -1759,6 +408,10 @@ msgstr "der Administrator von %s"
msgid "%1$s, %2$s Administrator"
msgstr "%1$s, %2$s Administrator"
#: include/enotify.php:43 include/delivery.php:457
msgid "noreply"
msgstr "noreply"
#: include/enotify.php:70
#, php-format
msgid "%s <!item_type!>"
@ -2034,6 +687,114 @@ 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/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: include/plugin.php:534
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
#: include/plugin.php:539
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
#: include/ForumManager.php:114 include/text.php:1025 include/nav.php:131
#: view/theme/vier/theme.php:255
msgid "Forums"
msgstr "Foren"
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr "Externer Link zum Forum"
#: include/diaspora.php:1402 include/conversation.php:141 include/like.php:182
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: include/diaspora.php:1406 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62
#: mod/subthread.php:87
msgid "status"
msgstr "Status"
#: include/diaspora.php:1958
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: include/diaspora.php:2864
msgid "Attachments:"
msgstr "Anhänge:"
#: include/dfrn.php:1108
#, php-format
msgid "%s\\'s birthday"
msgstr "%ss Geburtstag"
#: 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:173
msgid "User profile creation error"
msgstr "Fehler beim Anlegen des Nutzerkontos"
#: include/uimport.php:222
#, 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: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/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/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: include/event.php:33 include/event.php:51 include/event.php:487
#: include/bb2diaspora.php:154
msgid "Starts:"
msgstr "Beginnt:"
#: include/event.php:36 include/event.php:57 include/event.php:488
#: include/bb2diaspora.php:162
msgid "Finishes:"
msgstr "Endet:"
#: include/event.php:39 include/event.php:63 include/event.php:489
#: include/identity.php:328 include/bb2diaspora.php:170
#: mod/notifications.php:232 mod/events.php:494 mod/directory.php:137
#: mod/contacts.php:628
msgid "Location:"
msgstr "Ort:"
#: include/event.php:441
msgid "Sun"
msgstr "So"
@ -2062,11 +823,11 @@ msgstr "Fr"
msgid "Sat"
msgstr "Sa"
#: include/event.php:448 include/text.php:1130 mod/settings.php:968
#: include/event.php:448 include/text.php:1130 mod/settings.php:972
msgid "Sunday"
msgstr "Sonntag"
#: include/event.php:449 include/text.php:1130 mod/settings.php:968
#: include/event.php:449 include/text.php:1130 mod/settings.php:972
msgid "Monday"
msgstr "Montag"
@ -2182,7 +943,7 @@ msgstr "November"
msgid "December"
msgstr "Dezember"
#: include/event.php:479 mod/cal.php:283 mod/events.php:388
#: include/event.php:479 mod/events.php:388 mod/cal.php:283
msgid "today"
msgstr "Heute"
@ -2218,628 +979,6 @@ msgstr "Kalender als ical exportieren"
msgid "Export calendar as csv"
msgstr "Kalender als csv exportieren"
#: include/follow.php:77 mod/dfrn_request.php:507
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: include/follow.php:82
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: include/follow.php:109
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/follow.php:110 include/follow.php:130
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: include/follow.php:128
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: include/follow.php:132
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: include/follow.php:134
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: include/follow.php:136
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/follow.php:137
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/follow.php:143
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/follow.php:153
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/follow.php:254
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: include/follow.php:287
msgid "following"
msgstr "folgen"
#: include/identity.php:42
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: include/identity.php:251
msgid "Atom feed"
msgstr "Atom-Feed"
#: include/identity.php:282 include/nav.php:189
msgid "Profiles"
msgstr "Profile"
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr "Profilbild"
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr "Geschlecht:"
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr "Status:"
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr "Homepage:"
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/contacts.php:632 mod/directory.php:145
msgid "About:"
msgstr "Über:"
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr "XMPP:"
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr "Netzwerk:"
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr "d. F"
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr "[heute]"
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: include/identity.php:569
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: include/identity.php:593
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: include/identity.php:594
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: include/identity.php:605 include/identity.php:691 include/identity.php:722
#: include/nav.php:82 mod/profperm.php:104 mod/newmember.php:32
#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
#: view/theme/diabook/theme.php:124
msgid "Profile"
msgstr "Profil"
#: include/identity.php:614 mod/settings.php:1274
msgid "Full Name:"
msgstr "Kompletter Name:"
#: include/identity.php:621
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:622
msgid "j F"
msgstr "j F"
#: include/identity.php:633
msgid "Age:"
msgstr "Alter:"
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr "Heimatort:"
#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
#: mod/contacts.php:634
msgid "Tags:"
msgstr "Tags:"
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: include/identity.php:655
msgid "Religion:"
msgstr "Religion:"
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interessen:"
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr "Likes:"
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr "Dislikes:"
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformationen und Soziale Netzwerke:"
#: include/identity.php:668
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
#: include/identity.php:670
msgid "Books, literature:"
msgstr "Literatur/Bücher:"
#: include/identity.php:672
msgid "Television:"
msgstr "Fernsehen:"
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
#: include/identity.php:676
msgid "Love/Romance:"
msgstr "Liebesleben:"
#: include/identity.php:678
msgid "Work/employment:"
msgstr "Arbeit/Beschäftigung:"
#: include/identity.php:680
msgid "School/education:"
msgstr "Schule/Ausbildung:"
#: include/identity.php:684
msgid "Forums:"
msgstr "Foren:"
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr "Allgemein"
#: include/identity.php:693 mod/admin.php:931 mod/contacts.php:870
#: mod/events.php:508
msgid "Advanced"
msgstr "Erweitert"
#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:246
msgid "Status"
msgstr "Status"
#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr "Profildetails"
#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126
msgid "Photos"
msgstr "Bilder"
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr "Fotoalben"
#: include/identity.php:738 include/identity.php:741 include/nav.php:84
#: view/theme/frio/theme.php:249
msgid "Videos"
msgstr "Videos"
#: include/identity.php:750 include/identity.php:761 include/nav.php:85
#: include/nav.php:149 mod/cal.php:275 mod/events.php:379
#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
#: view/theme/diabook/theme.php:127
msgid "Events"
msgstr "Veranstaltungen"
#: include/identity.php:753 include/identity.php:764 include/nav.php:149
#: view/theme/frio/theme.php:254
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: include/identity.php:775
msgid "Only You Can See This"
msgstr "Nur Du kannst das sehen"
#: include/identity.php:783 include/identity.php:786 include/nav.php:128
#: include/nav.php:192 include/text.php:1022 mod/contacts.php:792
#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
#: view/theme/diabook/theme.php:125
msgid "Contacts"
msgstr "Kontakte"
#: include/items.php:1518 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: include/items.php:1873 mod/viewsrc.php:15 mod/notice.php:15
#: mod/admin.php:234 mod/admin.php:1441 mod/admin.php:1675 mod/display.php:103
#: mod/display.php:279 mod/display.php:478
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: include/items.php:1912
msgid "Do you really want to delete this item?"
msgstr "Möchtest Du wirklich dieses Item löschen?"
#: include/items.php:1914 mod/follow.php:110 mod/api.php:105
#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
#: mod/register.php:238 mod/suggest.php:29 mod/settings.php:1158
#: mod/settings.php:1164 mod/settings.php:1172 mod/settings.php:1176
#: mod/settings.php:1181 mod/settings.php:1187 mod/settings.php:1193
#: mod/settings.php:1199 mod/settings.php:1225 mod/settings.php:1226
#: mod/settings.php:1227 mod/settings.php:1228 mod/settings.php:1229
msgid "Yes"
msgstr "Ja"
#: include/items.php:2077 mod/wall_upload.php:77 mod/wall_upload.php:80
#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
#: mod/invite.php:101 mod/wall_attach.php:67 mod/wall_attach.php:70
#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
#: mod/events.php:190 mod/item.php:198 mod/item.php:210 mod/network.php:4
#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
#: mod/suggest.php:58 mod/viewcontacts.php:45 mod/settings.php:22
#: mod/settings.php:128 mod/settings.php:663 index.php:397
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: include/items.php:2182
msgid "Archives"
msgstr "Archiv"
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr "Keine Neuigkeiten"
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
#: include/nav.php:40 include/text.php:1015
msgid "@name, !forum, #tags, content"
msgstr "@name, !forum, #tags, content"
#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1778
msgid "Logout"
msgstr "Abmelden"
#: include/nav.php:78 view/theme/frio/theme.php:243
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
#: view/theme/diabook/theme.php:123
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: include/nav.php:82 view/theme/frio/theme.php:247
#: view/theme/diabook/theme.php:124
msgid "Your profile page"
msgstr "Deine Profilseite"
#: include/nav.php:83 view/theme/frio/theme.php:248
#: view/theme/diabook/theme.php:126
msgid "Your photos"
msgstr "Deine Fotos"
#: include/nav.php:84 view/theme/frio/theme.php:249
msgid "Your videos"
msgstr "Deine Videos"
#: include/nav.php:85 view/theme/frio/theme.php:250
#: view/theme/diabook/theme.php:127
msgid "Your events"
msgstr "Deine Ereignisse"
#: include/nav.php:86 view/theme/diabook/theme.php:128
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: include/nav.php:86
msgid "Your personal notes"
msgstr "Deine persönlichen Notizen"
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1779
msgid "Login"
msgstr "Anmeldung"
#: include/nav.php:95
msgid "Sign in"
msgstr "Anmelden"
#: include/nav.php:105
msgid "Home Page"
msgstr "Homepage"
#: include/nav.php:109 mod/register.php:280 boot.php:1754
msgid "Register"
msgstr "Registrieren"
#: include/nav.php:109
msgid "Create an account"
msgstr "Nutzerkonto erstellen"
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
msgid "Help"
msgstr "Hilfe"
#: include/nav.php:115
msgid "Help and documentation"
msgstr "Hilfe und Dokumentation"
#: include/nav.php:119
msgid "Apps"
msgstr "Apps"
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
#: include/nav.php:123 include/text.php:1012 mod/search.php:149
msgid "Search"
msgstr "Suche"
#: include/nav.php:123
msgid "Search site content"
msgstr "Inhalt der Seite durchsuchen"
#: include/nav.php:126 include/text.php:1020
msgid "Full Text"
msgstr "Volltext"
#: include/nav.php:127 include/text.php:1021
msgid "Tags"
msgstr "Tags"
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
#: view/theme/diabook/theme.php:129
msgid "Community"
msgstr "Gemeinschaft"
#: include/nav.php:143
msgid "Conversations on this site"
msgstr "Unterhaltungen auf dieser Seite"
#: include/nav.php:145
msgid "Conversations on the network"
msgstr "Unterhaltungen im Netzwerk"
#: include/nav.php:152
msgid "Directory"
msgstr "Verzeichnis"
#: include/nav.php:152
msgid "People directory"
msgstr "Nutzerverzeichnis"
#: include/nav.php:154
msgid "Information"
msgstr "Information"
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr "Informationen zu dieser Friendica Instanz"
#: include/nav.php:158 view/theme/frio/theme.php:253
msgid "Conversations from your friends"
msgstr "Unterhaltungen Deiner Kontakte"
#: include/nav.php:159
msgid "Network Reset"
msgstr "Netzwerk zurücksetzen"
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr "Netzwerk-Seite ohne Filter laden"
#: include/nav.php:166
msgid "Friend Requests"
msgstr "Kontaktanfragen"
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr "Benachrichtigungen"
#: include/nav.php:170
msgid "See all notifications"
msgstr "Alle Benachrichtigungen anzeigen"
#: include/nav.php:171 mod/settings.php:900
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
msgid "Messages"
msgstr "Nachrichten"
#: include/nav.php:175 view/theme/frio/theme.php:255
msgid "Private mail"
msgstr "Private E-Mail"
#: include/nav.php:176
msgid "Inbox"
msgstr "Eingang"
#: include/nav.php:177
msgid "Outbox"
msgstr "Ausgang"
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr "Neue Nachricht"
#: include/nav.php:181
msgid "Manage"
msgstr "Verwalten"
#: include/nav.php:181
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr "Delegationen"
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1494
#: mod/admin.php:1752 mod/settings.php:111 view/theme/frio/theme.php:256
#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
msgid "Settings"
msgstr "Einstellungen"
#: include/nav.php:186 view/theme/frio/theme.php:256
msgid "Account settings"
msgstr "Kontoeinstellungen"
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr "Profile Verwalten/Editieren"
#: include/nav.php:192 view/theme/frio/theme.php:257
msgid "Manage/edit friends and contacts"
msgstr " Kontakte verwalten/editieren"
#: include/nav.php:197 mod/admin.php:186
msgid "Admin"
msgstr "Administration"
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr "Einstellungen der Seite und Konfiguration"
#: include/nav.php:200
msgid "Navigation"
msgstr "Navigation"
#: include/nav.php:200
msgid "Site map"
msgstr "Sitemap"
#: include/oembed.php:252
msgid "Embedded content"
msgstr "Eingebetteter Inhalt"
#: include/oembed.php:260
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
#: view/theme/diabook/theme.php:499
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: include/security.php:22
msgid "Welcome "
msgstr "Willkommen "
@ -2858,6 +997,300 @@ 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/profile_selectors.php:6
msgid "Male"
msgstr "Männlich"
#: include/profile_selectors.php:6
msgid "Female"
msgstr "Weiblich"
#: include/profile_selectors.php:6
msgid "Currently Male"
msgstr "Momentan männlich"
#: include/profile_selectors.php:6
msgid "Currently Female"
msgstr "Momentan weiblich"
#: include/profile_selectors.php:6
msgid "Mostly Male"
msgstr "Hauptsächlich männlich"
#: include/profile_selectors.php:6
msgid "Mostly Female"
msgstr "Hauptsächlich weiblich"
#: 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 "Transsexuell"
#: include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr "Hermaphrodit"
#: include/profile_selectors.php:6
msgid "Neuter"
msgstr "Neuter"
#: include/profile_selectors.php:6
msgid "Non-specific"
msgstr "Nicht spezifiziert"
#: include/profile_selectors.php:6
msgid "Other"
msgstr "Andere"
#: include/profile_selectors.php:6 include/conversation.php:1487
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Unentschieden"
msgstr[1] "Unentschieden"
#: include/profile_selectors.php:23
msgid "Males"
msgstr "Männer"
#: include/profile_selectors.php:23
msgid "Females"
msgstr "Frauen"
#: include/profile_selectors.php:23
msgid "Gay"
msgstr "Schwul"
#: include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbisch"
#: include/profile_selectors.php:23
msgid "No Preference"
msgstr "Keine Vorlieben"
#: include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bisexuell"
#: include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autosexual"
#: include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Abstinent"
#: include/profile_selectors.php:23
msgid "Virgin"
msgstr "Jungfrauen"
#: include/profile_selectors.php:23
msgid "Deviant"
msgstr "Deviant"
#: include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetish"
#: include/profile_selectors.php:23
msgid "Oodles"
msgstr "Oodles"
#: include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Nonsexual"
#: include/profile_selectors.php:42
msgid "Single"
msgstr "Single"
#: include/profile_selectors.php:42
msgid "Lonely"
msgstr "Einsam"
#: include/profile_selectors.php:42
msgid "Available"
msgstr "Verfügbar"
#: include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Nicht verfügbar"
#: include/profile_selectors.php:42
msgid "Has crush"
msgstr "verknallt"
#: include/profile_selectors.php:42
msgid "Infatuated"
msgstr "verliebt"
#: include/profile_selectors.php:42
msgid "Dating"
msgstr "Dating"
#: include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Untreu"
#: include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Sexbesessen"
#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
msgid "Friends"
msgstr "Kontakte"
#: include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Freunde/Zuwendungen"
#: include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
#: include/profile_selectors.php:42
msgid "Engaged"
msgstr "Verlobt"
#: include/profile_selectors.php:42
msgid "Married"
msgstr "Verheiratet"
#: include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr "imaginär verheiratet"
#: include/profile_selectors.php:42
msgid "Partners"
msgstr "Partner"
#: include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "zusammenlebend"
#: include/profile_selectors.php:42
msgid "Common law"
msgstr "wilde Ehe"
#: include/profile_selectors.php:42
msgid "Happy"
msgstr "Glücklich"
#: include/profile_selectors.php:42
msgid "Not looking"
msgstr "Nicht auf der Suche"
#: include/profile_selectors.php:42
msgid "Swinger"
msgstr "Swinger"
#: include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Betrogen"
#: include/profile_selectors.php:42
msgid "Separated"
msgstr "Getrennt"
#: include/profile_selectors.php:42
msgid "Unstable"
msgstr "Unstabil"
#: include/profile_selectors.php:42
msgid "Divorced"
msgstr "Geschieden"
#: include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr "imaginär geschieden"
#: include/profile_selectors.php:42
msgid "Widowed"
msgstr "Verwitwet"
#: include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Unsicher"
#: include/profile_selectors.php:42
msgid "It's complicated"
msgstr "Ist kompliziert"
#: include/profile_selectors.php:42
msgid "Don't care"
msgstr "Ist mir nicht wichtig"
#: include/profile_selectors.php:42
msgid "Ask me"
msgstr "Frag mich"
#: include/items.php:1571 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: include/items.php:1926 mod/viewsrc.php:15 mod/admin.php:234
#: mod/admin.php:1471 mod/admin.php:1705 mod/display.php:103
#: mod/display.php:279 mod/display.php:478 mod/notice.php:15
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: include/items.php:1965
msgid "Do you really want to delete this item?"
msgstr "Möchtest Du wirklich dieses Item löschen?"
#: include/items.php:1967 mod/profiles.php:648 mod/profiles.php:651
#: mod/profiles.php:677 mod/contacts.php:442 mod/follow.php:110
#: mod/suggest.php:29 mod/dfrn_request.php:862 mod/register.php:245
#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
#: mod/settings.php:1234 mod/api.php:105 mod/message.php:217
msgid "Yes"
msgstr "Ja"
#: include/items.php:1970 include/conversation.php:1283 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:128
#: mod/photos.php:235 mod/photos.php:322 mod/contacts.php:445
#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148
#: mod/dfrn_request.php:876 mod/settings.php:679 mod/settings.php:705
#: mod/message.php:220
msgid "Cancel"
msgstr "Abbrechen"
#: include/items.php:2130 index.php:401 mod/regmod.php:110 mod/dirfind.php:11
#: mod/notifications.php:71 mod/dfrn_confirm.php:61 mod/wall_upload.php:77
#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22
#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12
#: mod/cal.php:304 mod/repair_ostatus.php:9 mod/delegate.php:12
#: mod/profiles.php:166 mod/profiles.php:605 mod/poke.php:150
#: mod/photos.php:159 mod/photos.php:1072 mod/attach.php:33
#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155
#: mod/suggest.php:58 mod/display.php:475 mod/common.php:18 mod/mood.php:114
#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19
#: mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:198
#: mod/item.php:210 mod/ostatus_subscribe.php:9 mod/message.php:46
#: mod/message.php:182 mod/manage.php:96
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: include/items.php:2235
msgid "Archives"
msgstr "Archiv"
#: include/text.php:304
msgid "newer"
msgstr "neuer"
@ -2905,11 +1338,33 @@ msgstr[1] "%d Kontakte"
msgid "View Contacts"
msgstr "Kontakte anzeigen"
#: include/text.php:1012 include/nav.php:123 mod/search.php:149
msgid "Search"
msgstr "Suche"
#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
#: mod/editpost.php:109
msgid "Save"
msgstr "Speichern"
#: include/text.php:1015 include/nav.php:40
msgid "@name, !forum, #tags, content"
msgstr "@name, !forum, #tags, content"
#: include/text.php:1020 include/nav.php:126
msgid "Full Text"
msgstr "Volltext"
#: include/text.php:1021 include/nav.php:127
msgid "Tags"
msgstr "Tags"
#: include/text.php:1022 include/identity.php:783 include/identity.php:786
#: include/nav.php:128 include/nav.php:192 mod/viewcontacts.php:116
#: mod/contacts.php:792 mod/contacts.php:853 view/theme/frio/theme.php:260
msgid "Contacts"
msgstr "Kontakte"
#: include/text.php:1076
msgid "poke"
msgstr "anstupsen"
@ -3058,6 +1513,17 @@ msgstr "Auf separater Seite ansehen"
msgid "view on separate page"
msgstr "auf separater Seite ansehen"
#: include/text.php:1806 include/conversation.php:122
#: include/conversation.php:258 include/like.php:165
msgid "event"
msgstr "Event"
#: include/text.php:1808 include/conversation.php:130
#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62
#: mod/subthread.php:87
msgid "photo"
msgstr "Foto"
#: include/text.php:1810
msgid "activity"
msgstr "Aktivität"
@ -3077,30 +1543,1678 @@ msgstr "Beitrag"
msgid "Item filed"
msgstr "Beitrag abgelegt"
#: include/Contact.php:119
#: include/conversation.php:144 include/like.php:184
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/conversation.php:185 mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: include/conversation.php:303
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: include/conversation.php:304
#, 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:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr "Likes"
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr "Dislikes"
#: include/conversation.php:586 include/conversation.php:1481
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Teilnehmend"
msgstr[1] "Teilnehmend"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr "Nicht teilnehmend"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr "Eventuell teilnehmend"
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr "Auswählen"
#: include/conversation.php:709 mod/admin.php:1414 mod/content.php:454
#: mod/content.php:759 mod/photos.php:1682 mod/contacts.php:808
#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:741
#: object/Item.php:134
msgid "Delete"
msgstr "Löschen"
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr "Kategorien:"
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: include/conversation.php:791 include/conversation.php:1264
#: mod/content.php:515 mod/content.php:948 mod/photos.php:1570
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 object/Item.php:406
msgid "Please wait"
msgstr "Bitte warten"
#: include/conversation.php:870
msgid "remove"
msgstr "löschen"
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: include/conversation.php:966
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: include/conversation.php:967 include/Contact.php:404
msgid "View Status"
msgstr "Pinnwand anschauen"
#: include/conversation.php:968 include/conversation.php:984
#: include/Contact.php:347 include/Contact.php:360 include/Contact.php:405
#: mod/dirfind.php:203 mod/directory.php:155 mod/match.php:71
#: mod/allfriends.php:65 mod/suggest.php:82
msgid "View Profile"
msgstr "Profil anschauen"
#: include/conversation.php:969 include/Contact.php:406
msgid "View Photos"
msgstr "Bilder anschauen"
#: include/conversation.php:970 include/Contact.php:407
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: include/conversation.php:971 include/Contact.php:408
msgid "View Contact"
msgstr "Kontakt anzeigen"
#: include/conversation.php:972 include/Contact.php:410
msgid "Send PM"
msgstr "Private Nachricht senden"
#: include/conversation.php:976 include/Contact.php:411
msgid "Poke"
msgstr "Anstupsen"
#: include/conversation.php:1097
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: include/conversation.php:1100
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: include/conversation.php:1103
#, php-format
msgid "%s attends."
msgstr "%s nimmt teil."
#: include/conversation.php:1106
#, php-format
msgid "%s doesn't attend."
msgstr "%s nimmt nicht teil."
#: include/conversation.php:1109
#, php-format
msgid "%s attends maybe."
msgstr "%s nimmt eventuell teil."
#: include/conversation.php:1119
msgid "and"
msgstr "und"
#: include/conversation.php:1125
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: include/conversation.php:1134
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: include/conversation.php:1135
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: include/conversation.php:1138
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: include/conversation.php:1139
#, php-format
msgid "%s don't like this."
msgstr "%s mögen dies nicht."
#: include/conversation.php:1142
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
#: include/conversation.php:1143
#, php-format
msgid "%s attend."
msgstr "%s nehmen teil."
#: include/conversation.php:1146
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
#: include/conversation.php:1147
#, php-format
msgid "%s don't attend."
msgstr "%s nehmen nicht teil."
#: include/conversation.php:1150
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
#: include/conversation.php:1151
#, php-format
msgid "%s anttend maybe."
msgstr "%s nehmen vielleicht teil."
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: include/conversation.php:1191 include/conversation.php:1209
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: include/conversation.php:1192 include/conversation.php:1210
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: include/conversation.php:1194 include/conversation.php:1212
msgid "Tag term:"
msgstr "Tag:"
#: include/conversation.php:1195 include/conversation.php:1213
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "In diesem Ordner speichern:"
#: include/conversation.php:1196 include/conversation.php:1214
msgid "Where are you right now?"
msgstr "Wo hältst Du Dich jetzt gerade auf?"
#: include/conversation.php:1197
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: include/conversation.php:1245 mod/photos.php:1569
msgid "Share"
msgstr "Teilen"
#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr "Foto hochladen"
#: include/conversation.php:1247 mod/editpost.php:111
msgid "upload photo"
msgstr "Bild hochladen"
#: include/conversation.php:1248 mod/editpost.php:112
msgid "Attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1249 mod/editpost.php:113
msgid "attach file"
msgstr "Datei anhängen"
#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: include/conversation.php:1251 mod/editpost.php:115
msgid "web link"
msgstr "Weblink"
#: include/conversation.php:1252 mod/editpost.php:116
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: include/conversation.php:1253 mod/editpost.php:117
msgid "video link"
msgstr "Video-Link"
#: include/conversation.php:1254 mod/editpost.php:118
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: include/conversation.php:1255 mod/editpost.php:119
msgid "audio link"
msgstr "Audio-Link"
#: include/conversation.php:1256 mod/editpost.php:120
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: include/conversation.php:1257 mod/editpost.php:121
msgid "set location"
msgstr "Ort setzen"
#: include/conversation.php:1258 mod/editpost.php:122
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: include/conversation.php:1259 mod/editpost.php:123
msgid "clear location"
msgstr "Ort löschen"
#: include/conversation.php:1261 mod/editpost.php:137
msgid "Set title"
msgstr "Titel setzen"
#: include/conversation.php:1263 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: include/conversation.php:1265 mod/editpost.php:125
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: include/conversation.php:1266 mod/editpost.php:154
msgid "permissions"
msgstr "Zugriffsrechte"
#: include/conversation.php:1274 mod/editpost.php:134
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: include/conversation.php:1279 mod/events.php:504 mod/content.php:737
#: mod/photos.php:1591 mod/photos.php:1639 mod/photos.php:1725
#: mod/editpost.php:145 object/Item.php:729
msgid "Preview"
msgstr "Vorschau"
#: include/conversation.php:1289
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: include/conversation.php:1290
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: include/conversation.php:1291
msgid "Private post"
msgstr "Privater Beitrag"
#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr "Nachricht"
#: include/conversation.php:1297 mod/editpost.php:153
msgid "Browser"
msgstr "Browser"
#: include/conversation.php:1453
msgid "View all"
msgstr "Zeige alle"
#: include/conversation.php:1475
msgid "Like"
msgid_plural "Likes"
msgstr[0] "mag ich"
msgstr[1] "Mag ich"
#: include/conversation.php:1478
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "mag ich nicht"
msgstr[1] "Mag ich nicht"
#: include/conversation.php:1484
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "Nicht teilnehmend "
msgstr[1] "Nicht teilnehmend"
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: include/identity.php:42
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: include/identity.php:251
msgid "Atom feed"
msgstr "Atom-Feed"
#: include/identity.php:282 include/nav.php:189
msgid "Profiles"
msgstr "Profile"
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr "Profilbild"
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr "Geschlecht:"
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr "Status:"
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr "Homepage:"
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/directory.php:145 mod/contacts.php:632
msgid "About:"
msgstr "Über:"
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr "XMPP:"
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr "Netzwerk:"
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr "d. F"
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr "[heute]"
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: include/identity.php:569
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: include/identity.php:593
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: include/identity.php:594
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: include/identity.php:605 include/identity.php:691 include/identity.php:722
#: include/nav.php:82 mod/profperm.php:104 mod/contacts.php:639
#: mod/contacts.php:841 mod/newmember.php:32 view/theme/frio/theme.php:250
msgid "Profile"
msgstr "Profil"
#: include/identity.php:614 mod/settings.php:1279
msgid "Full Name:"
msgstr "Kompletter Name:"
#: include/identity.php:621
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:622
msgid "j F"
msgstr "j F"
#: include/identity.php:633
msgid "Age:"
msgstr "Alter:"
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr "Heimatort:"
#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
#: mod/follow.php:134
msgid "Tags:"
msgstr "Tags:"
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: include/identity.php:655
msgid "Religion:"
msgstr "Religion:"
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interessen:"
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr "Likes:"
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr "Dislikes:"
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformationen und Soziale Netzwerke:"
#: include/identity.php:668
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
#: include/identity.php:670
msgid "Books, literature:"
msgstr "Literatur/Bücher:"
#: include/identity.php:672
msgid "Television:"
msgstr "Fernsehen:"
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
#: include/identity.php:676
msgid "Love/Romance:"
msgstr "Liebesleben:"
#: include/identity.php:678
msgid "Work/employment:"
msgstr "Arbeit/Beschäftigung:"
#: include/identity.php:680
msgid "School/education:"
msgstr "Schule/Ausbildung:"
#: include/identity.php:684
msgid "Forums:"
msgstr "Foren:"
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr "Allgemein"
#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
#: mod/contacts.php:870
msgid "Advanced"
msgstr "Erweitert"
#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:249
msgid "Status"
msgstr "Status"
#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:143
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr "Profildetails"
#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
#: view/theme/frio/theme.php:251
msgid "Photos"
msgstr "Bilder"
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr "Fotoalben"
#: include/identity.php:738 include/identity.php:741 include/nav.php:84
#: view/theme/frio/theme.php:252
msgid "Videos"
msgstr "Videos"
#: include/identity.php:750 include/identity.php:761 include/nav.php:85
#: include/nav.php:149 mod/events.php:379 mod/cal.php:275
#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
msgid "Events"
msgstr "Veranstaltungen"
#: include/identity.php:753 include/identity.php:764 include/nav.php:149
#: view/theme/frio/theme.php:257
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: include/identity.php:775
msgid "Only You Can See This"
msgstr "Nur Du kannst das sehen"
#: include/follow.php:77 mod/dfrn_request.php:509
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: include/follow.php:82
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: include/follow.php:109
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/follow.php:110 include/follow.php:130
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: include/follow.php:128
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: include/follow.php:132
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: include/follow.php:134
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: include/follow.php:136
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/follow.php:137
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/follow.php:143
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/follow.php:153
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/follow.php:254
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: include/follow.php:287
msgid "following"
msgstr "folgen"
#: include/Contact.php:105
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: include/Contact.php:395
#: include/Contact.php:409
msgid "Drop Contact"
msgstr "Kontakt löschen"
#: include/Contact.php:770
#: include/Contact.php:784
msgid "Organisation"
msgstr "Organisation"
#: include/Contact.php:773
#: include/Contact.php:787
msgid "News"
msgstr "Nachrichten"
#: include/Contact.php:776
#: include/Contact.php:790
msgid "Forum"
msgstr "Forum"
#: include/oembed.php:264
msgid "Embedded content"
msgstr "Eingebetteter Inhalt"
#: include/oembed.php:272
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr "Bild/Foto"
#: include/bbcode.php:465
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: 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:56 mod/admin.php:890
msgid "Frequently"
msgstr "immer wieder"
#: include/contact_selectors.php:57 mod/admin.php:891
msgid "Hourly"
msgstr "Stündlich"
#: include/contact_selectors.php:58 mod/admin.php:892
msgid "Twice daily"
msgstr "Zweimal täglich"
#: include/contact_selectors.php:59 mod/admin.php:893
msgid "Daily"
msgstr "Täglich"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Wöchentlich"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Monatlich"
#: include/contact_selectors.php:76 mod/dfrn_request.php:868
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:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
msgid "Email"
msgstr "E-Mail"
#: include/contact_selectors.php:80 mod/dfrn_request.php:870
#: mod/settings.php:842
msgid "Diaspora"
msgstr "Diaspora"
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: 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 "GNU Social"
msgstr "GNU Social"
#: include/contact_selectors.php:92
msgid "App.net"
msgstr "App.net"
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr "Hubzilla/Redmatrix"
#: 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:183
msgid "Errors encountered creating database tables."
msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
#: include/auth.php:45
msgid "Logged out."
msgstr "Abgemeldet."
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
#: include/auth.php:132 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:132 include/user.php:75
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
#: include/network.php:595
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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 <strong>könnten</strong> 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/group.php:209
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: include/group.php:242
msgid "Everybody"
msgstr "Alle Kontakte"
#: include/group.php:265
msgid "edit"
msgstr "bearbeiten"
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr "Gruppen"
#: include/group.php:288
msgid "Edit groups"
msgstr "Gruppen bearbeiten"
#: include/group.php:290
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: include/group.php:291
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr "Gruppenname:"
#: include/group.php:294
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr "hinzufügen"
#: include/Photo.php:1040 include/Photo.php:1056 include/Photo.php:1064
#: include/Photo.php:1089 include/message.php:145 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: include/delivery.php:446
msgid "(no subject)"
msgstr "(kein Betreff)"
#: include/user.php:39 mod/settings.php:373
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: 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:147 include/user.php:245
msgid "Nickname is already registered. Please choose another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: include/user.php:157
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:173
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
#: include/user.php:231
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:256 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr "Standard"
#: include/user.php:266
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:345 include/user.php:352 include/user.php:359
#: mod/photos.php:66 mod/photos.php:180 mod/photos.php:751 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1819 mod/profile_photo.php:74
#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210
#: mod/profile_photo.php:302 mod/profile_photo.php:311
msgid "Profile Photos"
msgstr "Profilbilder"
#: include/user.php:390
#, php-format
msgid ""
"\n"
"\t\tDear %1$s,\n"
"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
"\t"
msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
#: include/user.php:400
#, php-format
msgid "Registration at %s"
msgstr "Registrierung als %s"
#: include/user.php:410
#, 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:414
#, 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/user.php:446 mod/admin.php:1213
#, php-format
msgid "Registration details for %s"
msgstr "Details der Registration von %s"
#: include/api.php:1018
#, 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:1038
#, 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:1059
#, 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/features.php:70
msgid "General Features"
msgstr "Allgemeine Features"
#: include/features.php:72
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: include/features.php:72
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: include/features.php:73
msgid "Photo Location"
msgstr "Aufnahmeort"
#: include/features.php:73
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
#: include/features.php:74
msgid "Export Public Calendar"
msgstr "Öffentlichen Kalender exportieren"
#: include/features.php:74
msgid "Ability for visitors to download the public calendar"
msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
#: include/features.php:79
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: include/features.php:80
msgid "Richtext Editor"
msgstr "Web-Editor"
#: include/features.php:80
msgid "Enable richtext editor"
msgstr "Den Web-Editor für neue Beiträge aktivieren"
#: include/features.php:81
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: include/features.php:81
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: include/features.php:82
msgid "Auto-mention Forums"
msgstr "Foren automatisch erwähnen"
#: include/features.php:82
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."
#: include/features.php:87
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: include/features.php:88
msgid "Search by Date"
msgstr "Archiv"
#: include/features.php:88
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: include/features.php:89 include/features.php:119
msgid "List Forums"
msgstr "Zeige Foren"
#: include/features.php:89
msgid "Enable widget to display the forums your are connected with"
msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
#: include/features.php:90
msgid "Group Filter"
msgstr "Gruppen Filter"
#: include/features.php:90
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: include/features.php:91
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: include/features.php:91
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: include/features.php:92 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: include/features.php:92
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: include/features.php:97
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: include/features.php:98
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: include/features.php:98
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
#: include/features.php:99
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: include/features.php:99
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: include/features.php:100
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: include/features.php:100
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: include/features.php:105
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: include/features.php:106
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: include/features.php:106
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: include/features.php:107
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: include/features.php:107
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: include/features.php:108
msgid "Tagging"
msgstr "Tagging"
#: include/features.php:108
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: include/features.php:109
msgid "Post Categories"
msgstr "Beitragskategorien"
#: include/features.php:109
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: include/features.php:110
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: include/features.php:111
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: include/features.php:111
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: include/features.php:112
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: include/features.php:112
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: include/features.php:113
msgid "Mute Post Notifications"
msgstr "Benachrichtigungen für Beiträge Stumm schalten"
#: include/features.php:113
msgid "Ability to mute notifications for a thread"
msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
#: include/features.php:118
msgid "Advanced Profile Settings"
msgstr "Erweiterte Profil-Einstellungen"
#: include/features.php:119
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr "Keine Neuigkeiten"
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
#: include/nav.php:78 view/theme/frio/theme.php:246
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: include/nav.php:82 view/theme/frio/theme.php:250
msgid "Your profile page"
msgstr "Deine Profilseite"
#: include/nav.php:83 view/theme/frio/theme.php:251
msgid "Your photos"
msgstr "Deine Fotos"
#: include/nav.php:84 view/theme/frio/theme.php:252
msgid "Your videos"
msgstr "Deine Videos"
#: include/nav.php:85 view/theme/frio/theme.php:253
msgid "Your events"
msgstr "Deine Ereignisse"
#: include/nav.php:86
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: include/nav.php:86
msgid "Your personal notes"
msgstr "Deine persönlichen Notizen"
#: include/nav.php:95
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:115 mod/help.php:47 view/theme/vier/theme.php:298
msgid "Help"
msgstr "Hilfe"
#: include/nav.php:115
msgid "Help and documentation"
msgstr "Hilfe und Dokumentation"
#: include/nav.php:119
msgid "Apps"
msgstr "Apps"
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
#: include/nav.php:123
msgid "Search site content"
msgstr "Inhalt der Seite durchsuchen"
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
msgid "Community"
msgstr "Gemeinschaft"
#: include/nav.php:143
msgid "Conversations on this site"
msgstr "Unterhaltungen auf dieser Seite"
#: include/nav.php:145
msgid "Conversations on the network"
msgstr "Unterhaltungen im Netzwerk"
#: include/nav.php:152
msgid "Directory"
msgstr "Verzeichnis"
#: include/nav.php:152
msgid "People directory"
msgstr "Nutzerverzeichnis"
#: include/nav.php:154
msgid "Information"
msgstr "Information"
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr "Informationen zu dieser Friendica Instanz"
#: include/nav.php:158 view/theme/frio/theme.php:256
msgid "Conversations from your friends"
msgstr "Unterhaltungen Deiner Kontakte"
#: include/nav.php:159
msgid "Network Reset"
msgstr "Netzwerk zurücksetzen"
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr "Netzwerk-Seite ohne Filter laden"
#: include/nav.php:166
msgid "Friend Requests"
msgstr "Kontaktanfragen"
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr "Benachrichtigungen"
#: include/nav.php:170
msgid "See all notifications"
msgstr "Alle Benachrichtigungen anzeigen"
#: include/nav.php:171 mod/settings.php:902
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
msgid "Messages"
msgstr "Nachrichten"
#: include/nav.php:175 view/theme/frio/theme.php:258
msgid "Private mail"
msgstr "Private E-Mail"
#: include/nav.php:176
msgid "Inbox"
msgstr "Eingang"
#: include/nav.php:177
msgid "Outbox"
msgstr "Ausgang"
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr "Neue Nachricht"
#: include/nav.php:181
msgid "Manage"
msgstr "Verwalten"
#: include/nav.php:181
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr "Delegationen"
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
#: include/nav.php:186 mod/admin.php:1524 mod/admin.php:1782
#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:259
msgid "Settings"
msgstr "Einstellungen"
#: include/nav.php:186 view/theme/frio/theme.php:259
msgid "Account settings"
msgstr "Kontoeinstellungen"
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr "Profile Verwalten/Editieren"
#: include/nav.php:192 view/theme/frio/theme.php:260
msgid "Manage/edit friends and contacts"
msgstr " Kontakte verwalten/editieren"
#: include/nav.php:197 mod/admin.php:186
msgid "Admin"
msgstr "Administration"
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr "Einstellungen der Seite und Konfiguration"
#: include/nav.php:200
msgid "Navigation"
msgstr "Navigation"
#: include/nav.php:200
msgid "Site map"
msgstr "Sitemap"
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr "%1$s nimmt an %2$ss %3$s teil."
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr "An E-Mail senden"
#: include/acl_selectors.php:332
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
#: include/acl_selectors.php:333 mod/settings.php:1181
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
msgid "show"
msgstr "zeigen"
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
msgid "don't show"
msgstr "nicht zeigen"
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr "Berechtigungen"
#: include/acl_selectors.php:350
msgid "Close"
msgstr "Schließen"
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[kein Betreff]"
#: index.php:244 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:288 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52
#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
msgid "Not Found"
msgstr "Nicht gefunden"
#: index.php:291 mod/help.php:56
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: index.php:400 mod/profperm.php:19 mod/group.php:72
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: index.php:451
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"
#: 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/oexchange.php:25
msgid "Post successful."
msgstr "Beitrag erfolgreich veröffentlicht."
#: mod/update_community.php:19 mod/update_notes.php:36
#: mod/update_display.php:23 mod/update_profile.php:35
#: mod/update_network.php:27
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr "Personensuche - %s"
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr "Forensuche - %s"
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr "Zugriff verweigert."
@ -3122,9 +3236,9 @@ msgstr "Systembenachrichtigungen"
msgid "Remove term"
msgstr "Begriff entfernen"
#: mod/search.php:93 mod/search.php:99 mod/dfrn_request.php:790
#: mod/community.php:22 mod/directory.php:37 mod/display.php:200
#: mod/photos.php:944 mod/videos.php:194 mod/viewcontacts.php:35
#: mod/search.php:93 mod/search.php:99 mod/directory.php:37
#: mod/viewcontacts.php:35 mod/videos.php:194 mod/photos.php:944
#: mod/display.php:200 mod/community.php:22 mod/dfrn_request.php:791
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
@ -3154,6 +3268,210 @@ msgstr "Beiträge die mit %s getaggt sind"
msgid "Results for: %s"
msgstr "Ergebnisse für: %s"
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
msgstr "Verwerfen"
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:1000
msgid "Ignore"
msgstr "Ignorieren"
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr "Verbirg diesen Kontakt vor Anderen"
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr "falls anwendbar"
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
msgid "Approve"
msgstr "Genehmigen"
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr "Behauptet Dich zu kennen: "
#: mod/notifications.php:196
msgid "yes"
msgstr "ja"
#: mod/notifications.php:196
msgid "no"
msgstr "nein"
#: mod/notifications.php:197
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? \"Kontakt\" 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:200
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:209
msgid "Friend"
msgstr "Kontakt"
#: mod/notifications.php:210
msgid "Sharer"
msgstr "Teilenden"
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr "Fan/Verehrer"
#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
msgid "Profile URL"
msgstr "Profil URL"
#: mod/notifications.php:260
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: mod/notifications.php:299
msgid "Show unread"
msgstr "Ungelesene anzeigen"
#: mod/notifications.php:299
msgid "Show all"
msgstr "Alle anzeigen"
#: mod/notifications.php:305
#, php-format
msgid "No more %s notifications."
msgstr "Keine weiteren %s Benachrichtigungen"
#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:617
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: mod/dfrn_confirm.php:126 mod/fsuggest.php:20 mod/fsuggest.php:92
#: mod/crepair.php:114
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
#: mod/dfrn_confirm.php:127
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:246
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: mod/dfrn_confirm.php:269
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: mod/dfrn_confirm.php:283
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:290
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: mod/dfrn_confirm.php:419
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: mod/dfrn_confirm.php:557
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: mod/dfrn_confirm.php:567
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:578
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:599
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:613
#, 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:633
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:644
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: mod/dfrn_confirm.php:703
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:775
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: mod/friendica.php:70
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
@ -3174,7 +3492,7 @@ msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: mod/friendica.php:75
msgid "the bugtracker at github"
msgstr "dem Bugtracker auf github"
msgstr "den Bugtracker auf github"
#: mod/friendica.php:76
msgid ""
@ -3184,7 +3502,7 @@ msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot co
#: mod/friendica.php:90
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps"
msgstr "Installierte Plugins/Erweiterungen/Apps:"
#: mod/friendica.php:103
msgid "No installed plugins/addons/apps"
@ -3242,10 +3560,6 @@ msgid ""
"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:1793
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."
@ -3308,10 +3622,6 @@ msgid ""
"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 boot.php:1781
msgid "Nickname or Email: "
msgstr "Spitzname oder E-Mail:"
#: mod/lostpass.php:162
msgid "Reset"
msgstr "Zurücksetzen"
@ -3324,34 +3634,51 @@ msgstr "Kein Profil"
msgid "Help:"
msgstr "Hilfe:"
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
#: mod/fetch.php:39 mod/fetch.php:48 index.php:284
msgid "Not Found"
msgstr "Nicht gefunden"
#: mod/help.php:56 index.php:287
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
#: mod/wall_attach.php:25 mod/wall_attach.php:76
msgid "Invalid request."
msgstr "Ungültige Anfrage"
#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:786
#: mod/wall_upload.php:151 mod/photos.php:786 mod/profile_photo.php:150
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Bildgröße überschreitet das Limit von %s"
#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:826
#: mod/wall_upload.php:188 mod/photos.php:826 mod/profile_photo.php:159
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:853
#: mod/wall_upload.php:221 mod/photos.php:853 mod/profile_photo.php:307
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: 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/fsuggest.php:107 mod/events.php:506 mod/invite.php:140
#: mod/crepair.php:154 mod/content.php:728 mod/profiles.php:688
#: mod/poke.php:199 mod/photos.php:1104 mod/photos.php:1226
#: mod/photos.php:1539 mod/photos.php:1590 mod/photos.php:1638
#: mod/photos.php:1724 mod/install.php:272 mod/install.php:312
#: mod/contacts.php:577 mod/mood.php:137 mod/localtime.php:45
#: mod/message.php:357 mod/message.php:547 mod/manage.php:143
#: object/Item.php:720 view/theme/frio/config.php:59
#: view/theme/quattro/config.php:64 view/theme/vier/config.php:107
#: view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr "Senden"
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
@ -3360,6 +3687,94 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
msgid "Visible to:"
msgstr "Sichtbar für:"
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: mod/events.php:380 mod/cal.php:276
msgid "View"
msgstr "Ansehen"
#: mod/events.php:381
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: mod/events.php:382 mod/cal.php:277
msgid "Previous"
msgstr "Vorherige"
#: mod/events.php:383 mod/cal.php:278 mod/install.php:231
msgid "Next"
msgstr "Nächste"
#: mod/events.php:392 mod/cal.php:287
msgid "list"
msgstr "Liste"
#: mod/events.php:482
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr "Anfangszeitpunkt und Titel werden benötigt"
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: mod/events.php:484 mod/events.php:496 mod/profiles.php:716
msgid "Required"
msgstr "Benötigt"
#: mod/events.php:486 mod/events.php:502
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: mod/events.php:488 mod/events.php:489
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: mod/events.php:492
msgid "Description:"
msgstr "Beschreibung"
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr "Titel:"
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: mod/directory.php:197 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: mod/directory.php:199
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: mod/directory.php:201
msgid "Results for:"
msgstr "Ergebnisse für:"
#: mod/directory.php:203
msgid "Site Directory"
msgstr "Verzeichnis"
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
@ -3369,13 +3784,13 @@ 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/uimport.php:50 mod/register.php:191
#: mod/uimport.php:50 mod/register.php:198
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/uimport.php:64 mod/register.php:286
#: mod/uimport.php:64 mod/register.php:295
msgid "Import"
msgstr "Import"
@ -3410,8 +3825,8 @@ msgid ""
"select \"Export account\""
msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:939
#: mod/viewcontacts.php:97
#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586
#: mod/contacts.php:939
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
@ -3424,6 +3839,18 @@ msgstr "Kontakt bearbeiten"
msgid "Contacts who are not members of a group"
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
#: mod/match.php:86
msgid "is interested in:"
msgstr "ist interessiert an:"
#: mod/match.php:100
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: mod/uexport.php:29
msgid "Export account"
msgstr "Account exportieren"
@ -3546,27 +3973,13 @@ msgid ""
"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/invite.php:140 mod/localtime.php:45 mod/message.php:357
#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
#: mod/profiles.php:688 mod/contacts.php:577 mod/events.php:506
#: mod/install.php:272 mod/install.php:312 mod/photos.php:1104
#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
#: mod/photos.php:1638 mod/photos.php:1724 object/Item.php:720
#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80
#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70
#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633
#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr "Senden"
#: mod/fbrowser.php:133
msgid "Files"
msgstr "Dateien"
#: mod/profperm.php:19 mod/group.php:72 index.php:396
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier."
@ -3588,689 +4001,9 @@ msgstr "Sichtbar für"
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
#: 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/wall_attach.php:94
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:94
msgid "Or - did you try to upload an empty file?"
msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
#: mod/wall_attach.php:105
#, 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:156 mod/wall_attach.php:172
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr "Erneuern der OStatus Abonements"
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "Fehler"
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
msgid "Done"
msgstr "Erledigt"
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
msgid "Keep this window open until done."
msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: 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/credits.php:16
msgid "Credits"
msgstr "Credits"
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
#: mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: 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/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/follow.php:19 mod/dfrn_request.php:874
msgid "Submit Request"
msgstr "Anfrage abschicken"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr "Du hast den Kontakt bereits hinzugefügt."
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
#: mod/follow.php:109 mod/dfrn_request.php:860
msgid "Please answer the following:"
msgstr "Bitte beantworte folgendes:"
#: mod/follow.php:110 mod/dfrn_request.php:861
#, php-format
msgid "Does %s know you?"
msgstr "Kennt %s Dich?"
#: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861
#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
#: mod/register.php:239 mod/settings.php:1158 mod/settings.php:1164
#: mod/settings.php:1172 mod/settings.php:1176 mod/settings.php:1181
#: mod/settings.php:1187 mod/settings.php:1193 mod/settings.php:1199
#: mod/settings.php:1225 mod/settings.php:1226 mod/settings.php:1227
#: mod/settings.php:1228 mod/settings.php:1229
msgid "No"
msgstr "Nein"
#: mod/follow.php:111 mod/dfrn_request.php:865
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: mod/follow.php:117 mod/dfrn_request.php:871
msgid "Your Identity Address:"
msgstr "Adresse Deines Profils:"
#: mod/follow.php:126 mod/notifications.php:243 mod/contacts.php:624
msgid "Profile URL"
msgstr "Profil URL"
#: mod/follow.php:180
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: mod/apps.php:7 index.php:240
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/p.php:9
msgid "Not Extended"
msgstr "Nicht erweitert."
#: mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Willkommen bei Friendica"
#: mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Checkliste für neue Mitglieder"
#: mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
#: mod/newmember.php:14
msgid "Getting Started"
msgstr "Einstieg"
#: mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Friendica Rundgang"
#: mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr "Auf der <em>Quick Start</em> 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:26
msgid "Go to Your Settings"
msgstr "Gehe zu deinen Einstellungen"
#: mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
#: mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
#: mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Editiere dein Profil"
#: mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
#: mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Profil Schlüsselbegriffe"
#: mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
#: mod/newmember.php:44
msgid "Connecting"
msgstr "Verbindungen knüpfen"
#: mod/newmember.php:51
msgid "Importing Emails"
msgstr "Emails Importieren"
#: mod/newmember.php:51
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
#: mod/newmember.php:53
msgid "Go to Your Contacts Page"
msgstr "Gehe zu deiner Kontakt-Seite"
#: mod/newmember.php:53
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 <em>Add New Contact</em> dialog."
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
#: mod/newmember.php:55
msgid "Go to Your Site's Directory"
msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
#: mod/newmember.php:55
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
#: mod/newmember.php:57
msgid "Finding New People"
msgstr "Neue Leute kennenlernen"
#: mod/newmember.php:57
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
#: mod/newmember.php:65
msgid "Group Your Contacts"
msgstr "Gruppiere deine Kontakte"
#: mod/newmember.php:65
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Sobald Du einige Kontakte 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."
#: mod/newmember.php:68
msgid "Why Aren't My Posts Public?"
msgstr "Warum sind meine Beiträge nicht öffentlich?"
#: mod/newmember.php:68
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
#: mod/newmember.php:73
msgid "Getting Help"
msgstr "Hilfe bekommen"
#: mod/newmember.php:77
msgid "Go to the Help Section"
msgstr "Zum Hilfe Abschnitt gehen"
#: mod/newmember.php:77
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
#: 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/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/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/bookmarklet.php:41
msgid "The post was created"
msgstr "Der Beitrag wurde angelegt"
#: 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 Kontaktgruppe anlegen."
#: 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/group.php:192 mod/contacts.php:692
msgid "All Contacts"
msgstr "Alle Kontakte"
#: mod/group.php:193 mod/content.php:130 mod/network.php:495
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: 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:56 mod/message.php:71
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Konnte Deinen Heimatort nicht bestimmen."
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr "Nachricht gesendet."
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Kein Empfänger."
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: 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/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr "An:"
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr "Betreff:"
#: mod/share.php:38
msgid "link"
msgstr "Link"
#: 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/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/ostatus_subscribe.php:14
msgid "Subscribing to OStatus contacts"
msgstr "OStatus Kontakten folgen"
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr "Keine Kontakte gefunden."
#: mod/ostatus_subscribe.php:30
msgid "Couldn't fetch information for contact."
msgstr "Konnte die Kontaktinformationen nicht einholen."
#: mod/ostatus_subscribe.php:38
msgid "Couldn't fetch friends for contact."
msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
#: mod/ostatus_subscribe.php:65
msgid "success"
msgstr "Erfolg"
#: mod/ostatus_subscribe.php:67
msgid "failed"
msgstr "Fehlgeschlagen"
#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
msgid "ignored"
msgstr "Ignoriert"
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heißt %2$s herzlich willkommen"
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr "Konnte die Kontaktinformationen nicht finden."
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr "Möchtest Du wirklich diese Nachricht löschen?"
#: mod/message.php:235
msgid "Message deleted."
msgstr "Nachricht gelöscht."
#: mod/message.php:266
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
#: mod/message.php:383
msgid "No messages."
msgstr "Keine Nachrichten."
#: mod/message.php:426
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: mod/message.php:503
msgid "Delete message"
msgstr "Nachricht löschen"
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
#: mod/message.php:531
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
#: mod/message.php:535
msgid "Send Reply"
msgstr "Antwort senden"
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr "'Unbekannter Absender - %s"
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr "Du und %s"
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr "%s und Du"
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: mod/manage.php:140
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:141
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten aus: "
#: mod/viewcontacts.php:72
msgid "No contacts."
msgstr "Keine Kontakte."
#: mod/crepair.php:87
msgid "Contact settings applied."
@ -4280,11 +4013,6 @@ msgstr "Einstellungen zum Kontakt angewandt."
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: mod/crepair.php:114 mod/dfrn_confirm.php:122 mod/fsuggest.php:20
#: mod/fsuggest.php:92
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
#: mod/crepair.php:120
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
@ -4331,9 +4059,9 @@ msgid ""
"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/crepair.php:165 mod/admin.php:1367 mod/admin.php:1380
#: mod/admin.php:1392 mod/admin.php:1408 mod/settings.php:678
#: mod/settings.php:704
#: mod/crepair.php:165 mod/admin.php:1396 mod/admin.php:1409
#: mod/admin.php:1422 mod/admin.php:1438 mod/settings.php:680
#: mod/settings.php:706
msgid "Name"
msgstr "Name"
@ -4369,161 +4097,1501 @@ msgstr "Pull/Feed-URL"
msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: mod/dfrn_request.php:100
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag entfernt"
#: mod/dfrn_request.php:123 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/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
#: mod/dfrn_request.php:128 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/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
#: mod/dfrn_request.php:130 mod/dfrn_request.php:525
msgid "Warning: profile location has no profile photo."
msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
#: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr "Entfernen"
#: mod/dfrn_request.php:133 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/ping.php:261
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit Dir in Kontakt treten"
#: mod/dfrn_request.php:178
msgid "Introduction complete."
msgstr "Kontaktanfrage abgeschlossen."
#: mod/ping.php:276
msgid "{0} sent you a message"
msgstr "{0} schickte Dir eine Nachricht"
#: mod/dfrn_request.php:220
msgid "Unrecoverable protocol error."
msgstr "Nicht behebbarer Protokollfehler."
#: mod/ping.php:291
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: mod/dfrn_request.php:248
msgid "Profile unavailable."
msgstr "Profil nicht verfügbar."
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: mod/dfrn_request.php:273
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
#: mod/admin.php:156 mod/admin.php:954
msgid "Site"
msgstr "Seite"
#: mod/dfrn_request.php:274
msgid "Spam protection measures have been invoked."
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
msgid "Users"
msgstr "Nutzer"
#: mod/dfrn_request.php:275
msgid "Friends are advised to please try again in 24 hours."
msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
#: mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 mod/settings.php:74
msgid "Plugins"
msgstr "Plugins"
#: mod/dfrn_request.php:337
msgid "Invalid locator"
msgstr "Ungültiger Locator"
#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
msgid "Themes"
msgstr "Themen"
#: mod/dfrn_request.php:346
msgid "Invalid email address."
msgstr "Ungültige E-Mail-Adresse."
#: mod/admin.php:160 mod/settings.php:52
msgid "Additional features"
msgstr "Zusätzliche Features"
#: mod/dfrn_request.php:373
msgid "This account has not been configured for email. Request failed."
msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
#: mod/admin.php:161
msgid "DB updates"
msgstr "DB Updates"
#: mod/dfrn_request.php:476
msgid "You have already introduced yourself here."
msgstr "Du hast Dich hier bereits vorgestellt."
#: mod/admin.php:162 mod/admin.php:406
msgid "Inspect Queue"
msgstr "Warteschlange Inspizieren"
#: 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 in Kontakt stehst."
#: mod/admin.php:163 mod/admin.php:372
msgid "Federation Statistics"
msgstr "Federation Statistik"
#: mod/dfrn_request.php:501
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
msgid "Logs"
msgstr "Protokolle"
#: mod/dfrn_request.php:579 mod/contacts.php:208
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: mod/admin.php:178 mod/admin.php:1972
msgid "View Logs"
msgstr "Protokolle anzeigen"
#: mod/dfrn_request.php:600
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
#: mod/admin.php:179
msgid "probe address"
msgstr "Adresse untersuchen"
#: mod/dfrn_request.php:640
#: mod/admin.php:180
msgid "check webfinger"
msgstr "Webfinger überprüfen"
#: mod/admin.php:187
msgid "Plugin Features"
msgstr "Plugin Features"
#: mod/admin.php:189
msgid "diagnostics"
msgstr "Diagnose"
#: mod/admin.php:190
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: mod/admin.php:306
msgid "unknown"
msgstr "Unbekannt"
#: mod/admin.php:365
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
#: mod/dfrn_request.php:663
msgid "Please login to confirm introduction."
msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
#: mod/dfrn_request.php:673
#: mod/admin.php:366
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
#: mod/dfrn_request.php:687 mod/dfrn_request.php:704
msgid "Confirm"
msgstr "Bestätigen"
#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
msgid "Administration"
msgstr "Administration"
#: mod/dfrn_request.php:699
msgid "Hide this contact"
msgstr "Verberge diesen Kontakt"
#: mod/dfrn_request.php:702
#: mod/admin.php:378
#, php-format
msgid "Welcome home %s."
msgstr "Willkommen zurück %s."
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
#: mod/dfrn_request.php:703
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
#: mod/admin.php:408
msgid "ID"
msgstr "ID"
#: mod/dfrn_request.php:832
#: mod/admin.php:409
msgid "Recipient Name"
msgstr "Empfänger Name"
#: mod/admin.php:410
msgid "Recipient Profile"
msgstr "Empfänger Profil"
#: mod/admin.php:412
msgid "Created"
msgstr "Erstellt"
#: mod/admin.php:413
msgid "Last Tried"
msgstr "Zuletzt versucht"
#: mod/admin.php:414
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:"
"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/dfrn_request.php:853
#: mod/admin.php:439
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
"Your DB still runs with MyISAM tables. You should change the engine type to "
"InnoDB. As Friendica will use InnoDB only features in the future, you should"
" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
"converting the table engines. You may also use the "
"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
"Friendica installation.<br />"
msgstr "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest."
#: mod/dfrn_request.php:858
msgid "Friend/Connection Request"
msgstr "Kontaktanfrage"
#: mod/dfrn_request.php:859
#: mod/admin.php:444
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"
"You are using a MySQL version which does not support all features that "
"Friendica uses. You should consider switching to MariaDB."
msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
#: mod/dfrn_request.php:868
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: mod/admin.php:448 mod/admin.php:1352
msgid "Normal Account"
msgstr "Normales Konto"
#: mod/dfrn_request.php:870
#: mod/admin.php:449 mod/admin.php:1353
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: mod/admin.php:450 mod/admin.php:1354
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: mod/admin.php:451 mod/admin.php:1355
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
#: mod/admin.php:452
msgid "Blog Account"
msgstr "Blog-Konto"
#: mod/admin.php:453
msgid "Private Forum"
msgstr "Privates Forum"
#: mod/admin.php:479
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: mod/admin.php:485
msgid "Summary"
msgstr "Zusammenfassung"
#: mod/admin.php:488
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: mod/admin.php:490
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: mod/admin.php:491
msgid "Version"
msgstr "Version"
#: mod/admin.php:496
msgid "Active plugins"
msgstr "Aktive Plugins"
#: mod/admin.php:521
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
#: mod/admin.php:826
msgid "RINO2 needs mcrypt php extension to work."
msgstr "RINO2 benötigt die PHP Extension mcrypt."
#: mod/admin.php:834
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: mod/admin.php:862 mod/settings.php:934
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: mod/admin.php:881
msgid "No community page"
msgstr "Keine Gemeinschaftsseite"
#: mod/admin.php:882
msgid "Public postings from users of this site"
msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
#: mod/admin.php:883
msgid "Global community page"
msgstr "Globale Gemeinschaftsseite"
#: mod/admin.php:888 mod/contacts.php:530
msgid "Never"
msgstr "Niemals"
#: mod/admin.php:889
msgid "At post arrival"
msgstr "Beim Empfang von Nachrichten"
#: mod/admin.php:897 mod/contacts.php:557
msgid "Disabled"
msgstr "Deaktiviert"
#: mod/admin.php:899
msgid "Users, Global Contacts"
msgstr "Nutzer, globale Kontakte"
#: mod/admin.php:900
msgid "Users, Global Contacts/fallback"
msgstr "Nutzer, globale Kontakte / Fallback"
#: mod/admin.php:904
msgid "One month"
msgstr "ein Monat"
#: mod/admin.php:905
msgid "Three months"
msgstr "drei Monate"
#: mod/admin.php:906
msgid "Half a year"
msgstr "ein halbes Jahr"
#: mod/admin.php:907
msgid "One year"
msgstr "ein Jahr"
#: mod/admin.php:912
msgid "Multi user instance"
msgstr "Mehrbenutzer Instanz"
#: mod/admin.php:935
msgid "Closed"
msgstr "Geschlossen"
#: mod/admin.php:936
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: mod/admin.php:937
msgid "Open"
msgstr "Offen"
#: mod/admin.php:941
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: mod/admin.php:942
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: mod/admin.php:943
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:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
#: mod/admin.php:2055 mod/settings.php:678 mod/settings.php:788
#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
#: mod/settings.php:1264
msgid "Save Settings"
msgstr "Einstellungen speichern"
#: mod/admin.php:956 mod/register.php:272
msgid "Registration"
msgstr "Registrierung"
#: mod/admin.php:957
msgid "File upload"
msgstr "Datei hochladen"
#: mod/admin.php:958
msgid "Policies"
msgstr "Regeln"
#: mod/admin.php:960
msgid "Auto Discovered Contact Directory"
msgstr "Automatisch ein Kontaktverzeichnis erstellen"
#: mod/admin.php:961
msgid "Performance"
msgstr "Performance"
#: mod/admin.php:962
msgid "Worker"
msgstr "Worker"
#: mod/admin.php:963
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
#: mod/admin.php:966
msgid "Site name"
msgstr "Seitenname"
#: mod/admin.php:967
msgid "Host name"
msgstr "Host Name"
#: mod/admin.php:968
msgid "Sender Email"
msgstr "Absender für Emails"
#: mod/admin.php:968
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:969
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: mod/admin.php:970
msgid "Shortcut icon"
msgstr "Shortcut Icon"
#: mod/admin.php:970
msgid "Link to an icon that will be used for browsers."
msgstr "Link zu einem Icon, das Browser verwenden werden."
#: mod/admin.php:971
msgid "Touch icon"
msgstr "Touch Icon"
#: mod/admin.php:971
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:972
msgid "Additional Info"
msgstr "Zusätzliche Informationen"
#: mod/admin.php:972
#, 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."
"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/content.php:119 mod/network.php:468
#: mod/admin.php:973
msgid "System language"
msgstr "Systemsprache"
#: mod/admin.php:974
msgid "System theme"
msgstr "Systemweites Theme"
#: mod/admin.php:974
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: mod/admin.php:975
msgid "Mobile system theme"
msgstr "Systemweites mobiles Theme"
#: mod/admin.php:975
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: mod/admin.php:976
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: mod/admin.php:976
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: mod/admin.php:977
msgid "Force SSL"
msgstr "Erzwinge SSL"
#: mod/admin.php:977
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:978
msgid "Old style 'Share'"
msgstr "Altes \"Teilen\" Element"
#: mod/admin.php:978
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
#: mod/admin.php:979
msgid "Hide help entry from navigation menu"
msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
#: mod/admin.php:979
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:980
msgid "Single user instance"
msgstr "Ein-Nutzer Instanz"
#: mod/admin.php:980
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:981
msgid "Maximum image size"
msgstr "Maximale Bildgröße"
#: mod/admin.php:981
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:982
msgid "Maximum image length"
msgstr "Maximale Bildlänge"
#: mod/admin.php:982
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:983
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: mod/admin.php:983
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:985
msgid "Register policy"
msgstr "Registrierungsmethode"
#: mod/admin.php:986
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Registrierungen"
#: mod/admin.php:986
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:987
msgid "Register text"
msgstr "Registrierungstext"
#: mod/admin.php:987
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: mod/admin.php:988
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: mod/admin.php:988
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:989
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: mod/admin.php:989
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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: mod/admin.php:990
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: mod/admin.php:990
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:991
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: mod/admin.php:991
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:992
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: mod/admin.php:992
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:993
msgid "Global directory URL"
msgstr "URL des weltweiten Verzeichnisses"
#: mod/admin.php:993
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
#: mod/admin.php:994
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: mod/admin.php:994
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: mod/admin.php:995
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
#: mod/admin.php:995
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:996
msgid "Don't include post content in email notifications"
msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
#: mod/admin.php:996
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:997
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
#: mod/admin.php:997
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:998
msgid "Don't embed private images in posts"
msgstr "Private Bilder nicht in Beiträgen einbetten."
#: mod/admin.php:998
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:999
msgid "Allow Users to set remote_self"
msgstr "Nutzern erlauben das remote_self Flag zu setzen"
#: mod/admin.php:999
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:1000
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: mod/admin.php:1000
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:1001
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: mod/admin.php:1001
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: mod/admin.php:1002
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: mod/admin.php:1002
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:1003
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: mod/admin.php:1003
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: mod/admin.php:1004
msgid "Community Page Style"
msgstr "Art der Gemeinschaftsseite"
#: mod/admin.php:1004
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:1005
msgid "Posts per user on community page"
msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
#: mod/admin.php:1005
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:1006
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: mod/admin.php:1006
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:1007
msgid "OStatus conversation completion interval"
msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
#: mod/admin.php:1007
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:1008
msgid "Only import OStatus threads from our contacts"
msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
#: mod/admin.php:1008
msgid ""
"Normally we import every content from our OStatus contacts. With this option"
" we only store threads that are started by a contact that is known on our "
"system."
msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
#: mod/admin.php:1009
msgid "OStatus support can only be enabled if threading is enabled."
msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
#: mod/admin.php:1011
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
#: mod/admin.php:1012
msgid "Enable Diaspora support"
msgstr "Diaspora Unterstützung aktivieren"
#: mod/admin.php:1012
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: mod/admin.php:1013
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: mod/admin.php:1013
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:1014
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: mod/admin.php:1014
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:1015
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: mod/admin.php:1016
msgid "Proxy URL"
msgstr "Proxy URL"
#: mod/admin.php:1017
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: mod/admin.php:1017
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:1018
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: mod/admin.php:1018
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:1019
msgid "Poll interval"
msgstr "Abfrageintervall"
#: mod/admin.php:1019
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:1020
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: mod/admin.php:1020
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:1021
msgid "Maximum Load Average (Frontend)"
msgstr "Maximum Load Average (Frontend)"
#: mod/admin.php:1021
msgid "Maximum system load before the frontend quits service - default 50."
msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
#: mod/admin.php:1022
msgid "Maximum table size for optimization"
msgstr "Maximale Tabellengröße zur Optimierung"
#: mod/admin.php:1022
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
#: mod/admin.php:1023
msgid "Minimum level of fragmentation"
msgstr "Minimaler Fragmentationsgrad"
#: mod/admin.php:1023
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
#: mod/admin.php:1025
msgid "Periodical check of global contacts"
msgstr "Regelmäßig globale Kontakte überprüfen"
#: mod/admin.php:1025
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:1026
msgid "Days between requery"
msgstr "Tage zwischen erneuten Abfragen"
#: mod/admin.php:1026
msgid "Number of days after which a server is requeried for his contacts."
msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
#: mod/admin.php:1027
msgid "Discover contacts from other servers"
msgstr "Neue Kontakte auf anderen Servern entdecken"
#: mod/admin.php:1027
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 ä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:1028
msgid "Timeframe for fetching global contacts"
msgstr "Zeitfenster für globale Kontakte"
#: mod/admin.php:1028
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:1029
msgid "Search the local directory"
msgstr "Lokales Verzeichnis durchsuchen"
#: mod/admin.php:1029
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:1031
msgid "Publish server information"
msgstr "Server Informationen veröffentlichen"
#: mod/admin.php:1031
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 <a"
" href='http://the-federation.info/'>the-federation.info</a> 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 <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
#: mod/admin.php:1033
msgid "Use MySQL full text engine"
msgstr "Nutze MySQL full text engine"
#: mod/admin.php:1033
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:1034
msgid "Suppress Language"
msgstr "Sprachinformation unterdrücken"
#: mod/admin.php:1034
msgid "Suppress language information in meta information about a posting."
msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
#: mod/admin.php:1035
msgid "Suppress Tags"
msgstr "Tags Unterdrücken"
#: mod/admin.php:1035
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:1036
msgid "Path to item cache"
msgstr "Pfad zum Eintrag Cache"
#: mod/admin.php:1036
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:1037
msgid "Cache duration in seconds"
msgstr "Cache-Dauer in Sekunden"
#: mod/admin.php:1037
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:1038
msgid "Maximum numbers of comments per post"
msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
#: mod/admin.php:1038
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:1039
msgid "Path for lock file"
msgstr "Pfad für die Sperrdatei"
#: mod/admin.php:1039
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:1040
msgid "Temp path"
msgstr "Temp Pfad"
#: mod/admin.php:1040
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:1041
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
#: mod/admin.php:1041
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:1042
msgid "Disable picture proxy"
msgstr "Bilder Proxy deaktivieren"
#: mod/admin.php:1042
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:1043
msgid "Enable old style pager"
msgstr "Den Old-Style Pager aktiviren"
#: mod/admin.php:1043
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:1044
msgid "Only search in tags"
msgstr "Nur in Tags suchen"
#: mod/admin.php:1044
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:1046
msgid "New base url"
msgstr "Neue Basis-URL"
#: mod/admin.php:1046
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:1048
msgid "RINO Encryption"
msgstr "RINO Verschlüsselung"
#: mod/admin.php:1048
msgid "Encryption layer between nodes."
msgstr "Verschlüsselung zwischen Friendica Instanzen"
#: mod/admin.php:1049
msgid "Embedly API key"
msgstr "Embedly API Schlüssel"
#: mod/admin.php:1049
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
#: mod/admin.php:1051
msgid "Enable 'worker' background processing"
msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
#: mod/admin.php:1051
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
#: mod/admin.php:1052
msgid "Maximum number of parallel workers"
msgstr "Maximale Anzahl parallel laufender Worker"
#: mod/admin.php:1052
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
#: mod/admin.php:1053
msgid "Don't use 'proc_open' with the worker"
msgstr "'proc_open' nicht mit den Workern verwenden"
#: mod/admin.php:1053
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
#: mod/admin.php:1054
msgid "Enable fastlane"
msgstr "Aktiviere Fastlane"
#: mod/admin.php:1054
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
#: mod/admin.php:1055
msgid "Enable frontend worker"
msgstr "Aktiviere den Frontend Worker"
#: mod/admin.php:1055
msgid ""
"When enabled the Worker process is triggered when backend access is "
"performed (e.g. messages being delivered). On smaller sites you might want "
"to call yourdomain.tld/worker on a regular basis via an external cron job. "
"You should only enable this option if you cannot utilize cron/scheduled jobs"
" on your server. The worker background process needs to be activated for "
"this."
msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
#: mod/admin.php:1084
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: mod/admin.php:1092
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
#: mod/admin.php:1095
#, 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:1107
#, php-format
msgid "Executing %s failed with error: %s"
msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
#: mod/admin.php:1110
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: mod/admin.php:1114
#, 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:1116
#, 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:1135
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: mod/admin.php:1136
msgid "Check database structure"
msgstr "Datenbank Struktur überprüfen"
#: mod/admin.php:1141
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: mod/admin.php:1142
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:1143
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: mod/admin.php:1144
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: mod/admin.php:1178
#, 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:1181
#, 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:1225
#, 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:1232
#, 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:1279
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: mod/admin.php:1287
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: mod/admin.php:1287
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Register date"
msgstr "Anmeldedatum"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last login"
msgstr "Letzte Anmeldung"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last item"
msgstr "Letzter Beitrag"
#: mod/admin.php:1396 mod/settings.php:43
msgid "Account"
msgstr "Nutzerkonto"
#: mod/admin.php:1405
msgid "Add User"
msgstr "Nutzer hinzufügen"
#: mod/admin.php:1406
msgid "select all"
msgstr "Alle auswählen"
#: mod/admin.php:1407
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
#: mod/admin.php:1408
msgid "User waiting for permanent deletion"
msgstr "Nutzer wartet auf permanente Löschung"
#: mod/admin.php:1409
msgid "Request date"
msgstr "Anfragedatum"
#: mod/admin.php:1410
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: mod/admin.php:1411
msgid "Note from the user"
msgstr "Hinweis vom Nutzer"
#: mod/admin.php:1413
msgid "Deny"
msgstr "Verwehren"
#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Block"
msgstr "Sperren"
#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Unblock"
msgstr "Entsperren"
#: mod/admin.php:1417
msgid "Site admin"
msgstr "Seitenadministrator"
#: mod/admin.php:1418
msgid "Account expired"
msgstr "Account ist abgelaufen"
#: mod/admin.php:1421
msgid "New User"
msgstr "Neuer Nutzer"
#: mod/admin.php:1422
msgid "Deleted since"
msgstr "Gelöscht seit"
#: mod/admin.php:1427
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:1428
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:1438
msgid "Name of the new user."
msgstr "Name des neuen Nutzers"
#: mod/admin.php:1439
msgid "Nickname"
msgstr "Spitzname"
#: mod/admin.php:1439
msgid "Nickname of the new user."
msgstr "Spitznamen für den neuen Nutzer"
#: mod/admin.php:1440
msgid "Email address of the new user."
msgstr "Email Adresse des neuen Nutzers"
#: mod/admin.php:1483
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: mod/admin.php:1487
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: mod/admin.php:1498 mod/admin.php:1734
msgid "Disable"
msgstr "Ausschalten"
#: mod/admin.php:1500 mod/admin.php:1736
msgid "Enable"
msgstr "Einschalten"
#: mod/admin.php:1523 mod/admin.php:1781
msgid "Toggle"
msgstr "Umschalten"
#: mod/admin.php:1531 mod/admin.php:1790
msgid "Author: "
msgstr "Autor:"
#: mod/admin.php:1532 mod/admin.php:1791
msgid "Maintainer: "
msgstr "Betreuer:"
#: mod/admin.php:1584
msgid "Reload active plugins"
msgstr "Aktive Plugins neu laden"
#: mod/admin.php:1589
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
#: mod/admin.php:1694
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: mod/admin.php:1772
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: mod/admin.php:1832
msgid "Reload active themes"
msgstr "Aktives Theme neu laden"
#: mod/admin.php:1837
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
#: mod/admin.php:1838
msgid "[Experimental]"
msgstr "[Experimentell]"
#: mod/admin.php:1839
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: mod/admin.php:1863
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: mod/admin.php:1895
msgid "PHP log currently enabled."
msgstr "PHP Protokollierung ist derzeit aktiviert."
#: mod/admin.php:1897
msgid "PHP log currently disabled."
msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
#: mod/admin.php:1906
msgid "Clear"
msgstr "löschen"
#: mod/admin.php:1911
msgid "Enable Debugging"
msgstr "Protokoll führen"
#: mod/admin.php:1912
msgid "Log file"
msgstr "Protokolldatei"
#: mod/admin.php:1912
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:1913
msgid "Log level"
msgstr "Protokoll-Level"
#: mod/admin.php:1916
msgid "PHP logging"
msgstr "PHP Protokollieren"
#: mod/admin.php:1917
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest, Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
msgid "Off"
msgstr "Aus"
#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
msgid "On"
msgstr "An"
#: mod/admin.php:2045
#, php-format
msgid "Lock feature %s"
msgstr "Feature festlegen: %s"
#: mod/admin.php:2053
msgid "Manage Additional Features"
msgstr "Zusätzliche Features Verwalten"
#: mod/wall_attach.php:94
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:94
msgid "Or - did you try to upload an empty file?"
msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
#: mod/wall_attach.php:105
#, 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:156 mod/wall_attach.php:172
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr "Keine Kontakte zum Anzeigen."
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: mod/cal.php:297
msgid "User not found"
msgstr "Nutzer nicht gefunden"
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr "Dieses Kalenderformat wird nicht unterstützt."
#: mod/cal.php:315
msgid "No exportable data found"
msgstr "Keine exportierbaren Daten gefunden"
#: mod/cal.php:330
msgid "calendar"
msgstr "Kalender"
#: mod/content.php:119 mod/network.php:469
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: mod/content.php:135 mod/network.php:499
#: mod/content.php:130 mod/network.php:496 mod/group.php:193
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: mod/content.php:135 mod/network.php:500
#, php-format
msgid "Group: %s"
msgstr "Gruppe: %s"
@ -4572,12 +5640,6 @@ msgstr "Teilen"
msgid "This is you"
msgstr "Das bist Du"
#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719 boot.php:969
msgid "Comment"
msgstr "Kommentar"
#: mod/content.php:729 object/Item.php:721
msgid "Bold"
msgstr "Fett"
@ -4610,7 +5672,7 @@ msgstr "Link"
msgid "Video"
msgstr "Video"
#: mod/content.php:746 mod/settings.php:738 object/Item.php:122
#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr "Bearbeiten"
@ -4647,6 +5709,10 @@ msgstr "Thread nicht mehr ignorieren"
msgid "toggle ignore status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245
msgid "ignored"
msgstr "Ignoriert"
#: mod/content.php:803 object/Item.php:137
msgid "save to folder"
msgstr "In Ordner speichern"
@ -4675,314 +5741,80 @@ msgstr "Wall-to-Wall"
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: mod/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:617
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr "Erneuern der OStatus Abonements"
#: mod/dfrn_confirm.php:123
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "Fehler"
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
msgid "Done"
msgstr "Erledigt"
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
msgid "Keep this window open until done."
msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: mod/delegate.php:132
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:242
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: mod/dfrn_confirm.php:265
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: mod/dfrn_confirm.php:279
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:286
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: mod/dfrn_confirm.php:415
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: mod/dfrn_confirm.php:553
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: mod/dfrn_confirm.php:563
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:574
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:595
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:609
#, 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:629
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:640
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: mod/dfrn_confirm.php:699
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:771
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: 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/mood.php:133
msgid "Mood"
msgstr "Stimmung"
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
#: 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/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
#: mod/profile_photo.php:124
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
#: mod/profile_photo.php:134
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr "Datei hochladen:"
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr "Profil auswählen:"
#: mod/profile_photo.php:251
msgid "Upload"
msgstr "Hochladen"
#: mod/profile_photo.php:254
msgid "or"
msgstr "oder"
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto aus deinen Fotoalben"
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich hochgeladen."
#: 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/notifications.php:35
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
msgstr "Verwerfen"
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:1000
msgid "Ignore"
msgstr "Ignorieren"
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr "Verbirg diesen Kontakt vor andere"
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr "falls anwendbar"
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1382
msgid "Approve"
msgstr "Genehmigen"
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr "Behauptet Dich zu kennen: "
#: mod/notifications.php:196
msgid "yes"
msgstr "ja"
#: mod/notifications.php:196
msgid "no"
msgstr "nein"
#: mod/notifications.php:197
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? \"Kontakt\" 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:200
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:209
msgid "Friend"
msgstr "Kontakt"
#: mod/notifications.php:210
msgid "Sharer"
msgstr "Teilenden"
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr "Fan/Verehrer"
#: mod/notifications.php:260
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: mod/notifications.php:299
msgid "Show unread"
msgstr "Ungelesene anzeigen"
#: mod/notifications.php:299
msgid "Show all"
msgstr "Alle anzeigen"
#: mod/notifications.php:305
#, php-format
msgid "No more %s notifications."
msgstr "Keine weiteren %s Benachrichtigungen"
"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/videos.php:120
msgid "Do you really want to delete this video?"
msgstr "Möchtest Du dieses Video wirklich löschen?"
#: mod/videos.php:125
msgid "Delete Video"
msgstr "Video Löschen"
#: mod/videos.php:204
msgid "No videos selected"
msgstr "Keine Videos ausgewählt"
#: mod/videos.php:305 mod/photos.php:1054
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: mod/videos.php:387 mod/photos.php:1847
msgid "View Album"
msgstr "Album betrachten"
#: mod/videos.php:396
msgid "Recent Videos"
msgstr "Neueste Videos"
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr "Neues Video hochladen"
#: mod/profiles.php:38
msgid "Profile deleted."
@ -5083,6 +5915,16 @@ msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
msgid "Hide contacts and friends:"
msgstr "Kontakte und Freunde verbergen"
#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
#: mod/follow.php:110 mod/dfrn_request.php:862 mod/register.php:246
#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
#: mod/settings.php:1234 mod/api.php:106
msgid "No"
msgstr "Nein"
#: mod/profiles.php:650
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
@ -5143,6 +5985,10 @@ msgstr "Zusätzliche Informationen"
msgid "Relation"
msgstr "Beziehung"
#: mod/profiles.php:707 mod/newmember.php:36 mod/profile_photo.php:250
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: mod/profiles.php:708
msgid "Your Gender:"
msgstr "Dein Geschlecht:"
@ -5159,10 +6005,6 @@ msgstr "Beispiel: Fischen Fotografie Software"
msgid "Profile Name:"
msgstr "Profilname:"
#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
msgid "Required"
msgstr "Benötigt"
#: mod/profiles.php:718
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
@ -5287,1839 +6129,219 @@ msgstr "Kontaktinformationen und Soziale Netzwerke"
msgid "Edit/Manage Profiles"
msgstr "Bearbeite/Verwalte Profile"
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: mod/credits.php:16
msgid "Credits"
msgstr "Credits"
#: mod/admin.php:156 mod/admin.php:926
msgid "Site"
msgstr "Seite"
#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1375 mod/admin.php:1390
msgid "Users"
msgstr "Nutzer"
#: mod/admin.php:158 mod/admin.php:1492 mod/admin.php:1552 mod/settings.php:74
msgid "Plugins"
msgstr "Plugins"
#: mod/admin.php:159 mod/admin.php:1750 mod/admin.php:1800
msgid "Themes"
msgstr "Themen"
#: mod/admin.php:160 mod/settings.php:52
msgid "Additional features"
msgstr "Zusätzliche Features"
#: mod/admin.php:161
msgid "DB updates"
msgstr "DB Updates"
#: mod/admin.php:162 mod/admin.php:397
msgid "Inspect Queue"
msgstr "Warteschlange Inspizieren"
#: mod/admin.php:163 mod/admin.php:363
msgid "Federation Statistics"
msgstr "Federation Statistik"
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1874
msgid "Logs"
msgstr "Protokolle"
#: mod/admin.php:178 mod/admin.php:1942
msgid "View Logs"
msgstr "Protokolle anzeigen"
#: mod/admin.php:179
msgid "probe address"
msgstr "Adresse untersuchen"
#: mod/admin.php:180
msgid "check webfinger"
msgstr "Webfinger überprüfen"
#: mod/admin.php:187
msgid "Plugin Features"
msgstr "Plugin Features"
#: mod/admin.php:189
msgid "diagnostics"
msgstr "Diagnose"
#: mod/admin.php:190
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: mod/admin.php:356
#: mod/credits.php:17
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
#: mod/admin.php:357
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
#: mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925
#: mod/admin.php:1374 mod/admin.php:1491 mod/admin.php:1551 mod/admin.php:1749
#: mod/admin.php:1799 mod/admin.php:1873 mod/admin.php:1941
msgid "Administration"
msgstr "Administration"
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr "Anstupsen"
#: mod/admin.php:369
#: 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/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr "jeder"
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: mod/photos.php:190
msgid "Album not found."
msgstr "Album nicht gefunden."
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr "Album löschen"
#: mod/photos.php:230
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:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr "Foto löschen"
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr "Möchtest Du wirklich dieses Foto löschen?"
#: mod/photos.php:688
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde von %3$s in %2$s getaggt"
#: mod/admin.php:399
msgid "ID"
msgstr "ID"
#: mod/photos.php:688
msgid "a photo"
msgstr "einem Foto"
#: mod/admin.php:400
msgid "Recipient Name"
msgstr "Empfänger Name"
#: mod/photos.php:794
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: mod/admin.php:401
msgid "Recipient Profile"
msgstr "Empfänger Profil"
#: mod/photos.php:954
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: mod/admin.php:403
msgid "Created"
msgstr "Erstellt"
#: mod/admin.php:404
msgid "Last Tried"
msgstr "Zuletzt versucht"
#: mod/admin.php:405
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:424 mod/admin.php:1323
msgid "Normal Account"
msgstr "Normales Konto"
#: mod/admin.php:425 mod/admin.php:1324
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: mod/admin.php:426 mod/admin.php:1325
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: mod/admin.php:427 mod/admin.php:1326
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
#: mod/admin.php:428
msgid "Blog Account"
msgstr "Blog-Konto"
#: mod/admin.php:429
msgid "Private Forum"
msgstr "Privates Forum"
#: mod/admin.php:455
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: mod/admin.php:461
msgid "Summary"
msgstr "Zusammenfassung"
#: mod/admin.php:464
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: mod/admin.php:466
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: mod/admin.php:467
msgid "Version"
msgstr "Version"
#: mod/admin.php:472
msgid "Active plugins"
msgstr "Aktive Plugins"
#: mod/admin.php:495
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
#: mod/admin.php:798
msgid "RINO2 needs mcrypt php extension to work."
msgstr "RINO2 benötigt die PHP Extension mcrypt."
#: mod/admin.php:806
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: mod/admin.php:834 mod/settings.php:932
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: mod/admin.php:853
msgid "No community page"
msgstr "Keine Gemeinschaftsseite"
#: mod/admin.php:854
msgid "Public postings from users of this site"
msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
#: mod/admin.php:855
msgid "Global community page"
msgstr "Globale Gemeinschaftsseite"
#: mod/admin.php:860 mod/contacts.php:530
msgid "Never"
msgstr "Niemals"
#: mod/admin.php:861
msgid "At post arrival"
msgstr "Beim Empfang von Nachrichten"
#: mod/admin.php:869 mod/contacts.php:557
msgid "Disabled"
msgstr "Deaktiviert"
#: mod/admin.php:871
msgid "Users, Global Contacts"
msgstr "Nutzer, globale Kontakte"
#: mod/admin.php:872
msgid "Users, Global Contacts/fallback"
msgstr "Nutzer, globale Kontakte / Fallback"
#: mod/admin.php:876
msgid "One month"
msgstr "ein Monat"
#: mod/admin.php:877
msgid "Three months"
msgstr "drei Monate"
#: mod/admin.php:878
msgid "Half a year"
msgstr "ein halbes Jahr"
#: mod/admin.php:879
msgid "One year"
msgstr "ein Jahr"
#: mod/admin.php:884
msgid "Multi user instance"
msgstr "Mehrbenutzer Instanz"
#: mod/admin.php:907
msgid "Closed"
msgstr "Geschlossen"
#: mod/admin.php:908
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: mod/admin.php:909
msgid "Open"
msgstr "Offen"
#: mod/admin.php:913
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: mod/admin.php:914
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: mod/admin.php:915
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:927 mod/admin.php:1553 mod/admin.php:1801 mod/admin.php:1875
#: mod/admin.php:2025 mod/settings.php:676 mod/settings.php:786
#: mod/settings.php:833 mod/settings.php:902 mod/settings.php:992
#: mod/settings.php:1259
msgid "Save Settings"
msgstr "Einstellungen speichern"
#: mod/admin.php:928 mod/register.php:263
msgid "Registration"
msgstr "Registrierung"
#: mod/admin.php:929
msgid "File upload"
msgstr "Datei hochladen"
#: mod/admin.php:930
msgid "Policies"
msgstr "Regeln"
#: mod/admin.php:932
msgid "Auto Discovered Contact Directory"
msgstr "Automatisch ein Kontaktverzeichnis erstellen"
#: mod/admin.php:933
msgid "Performance"
msgstr "Performance"
#: mod/admin.php:934
msgid "Worker"
msgstr "Worker"
#: mod/admin.php:935
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
#: mod/admin.php:938
msgid "Site name"
msgstr "Seitenname"
#: mod/admin.php:939
msgid "Host name"
msgstr "Host Name"
#: mod/admin.php:940
msgid "Sender Email"
msgstr "Absender für Emails"
#: mod/admin.php:940
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:941
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: mod/admin.php:942
msgid "Shortcut icon"
msgstr "Shortcut Icon"
#: mod/admin.php:942
msgid "Link to an icon that will be used for browsers."
msgstr "Link zu einem Icon, das Browser verwenden werden."
#: mod/admin.php:943
msgid "Touch icon"
msgstr "Touch Icon"
#: mod/admin.php:943
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:944
msgid "Additional Info"
msgstr "Zusätzliche Informationen"
#: mod/admin.php:944
#: 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:1148
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: mod/photos.php:1167
msgid "Private Photo"
msgstr "Privates Foto"
#: mod/photos.php:1168
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: mod/photos.php:1234
msgid "Edit Album"
msgstr "Album bearbeiten"
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr "Foto betrachten"
#: mod/photos.php:1315
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:1317
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:1484
msgid "Tags: "
msgstr "Tags: "
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: mod/photos.php:1526
msgid "New album name"
msgstr "Name des neuen Albums"
#: mod/photos.php:1527
msgid "Caption"
msgstr "Bildunterschrift"
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: mod/photos.php:1528
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."
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: mod/admin.php:945
msgid "System language"
msgstr "Systemsprache"
#: mod/photos.php:1529
msgid "Do not rotate"
msgstr "Nicht rotieren"
#: mod/admin.php:946
msgid "System theme"
msgstr "Systemweites Theme"
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: mod/admin.php:946
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: mod/admin.php:947
msgid "Mobile system theme"
msgstr "Systemweites mobiles Theme"
#: mod/photos.php:1546
msgid "Private photo"
msgstr "Privates Foto"
#: mod/admin.php:947
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: mod/photos.php:1547
msgid "Public photo"
msgstr "Öffentliches Foto"
#: mod/admin.php:948
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: mod/admin.php:948
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: mod/admin.php:949
msgid "Force SSL"
msgstr "Erzwinge SSL"
#: mod/admin.php:949
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:950
msgid "Old style 'Share'"
msgstr "Altes \"Teilen\" Element"
#: mod/admin.php:950
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
#: mod/admin.php:951
msgid "Hide help entry from navigation menu"
msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
#: mod/admin.php:951
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:952
msgid "Single user instance"
msgstr "Ein-Nutzer Instanz"
#: mod/admin.php:952
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:953
msgid "Maximum image size"
msgstr "Maximale Bildgröße"
#: mod/admin.php:953
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:954
msgid "Maximum image length"
msgstr "Maximale Bildlänge"
#: mod/admin.php:954
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:955
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: mod/admin.php:955
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:957
msgid "Register policy"
msgstr "Registrierungsmethode"
#: mod/admin.php:958
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Registrierungen"
#: mod/admin.php:958
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:959
msgid "Register text"
msgstr "Registrierungstext"
#: mod/admin.php:959
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: mod/admin.php:960
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: mod/admin.php:960
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:961
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: mod/admin.php:961
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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: mod/admin.php:962
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: mod/admin.php:962
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:963
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: mod/admin.php:963
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:964
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: mod/admin.php:964
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:965
msgid "Global directory URL"
msgstr "URL des weltweiten Verzeichnisses"
#: mod/admin.php:965
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
#: mod/admin.php:966
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: mod/admin.php:966
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: mod/admin.php:967
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
#: mod/admin.php:967
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:968
msgid "Don't include post content in email notifications"
msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
#: mod/admin.php:968
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:969
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
#: mod/admin.php:969
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:970
msgid "Don't embed private images in posts"
msgstr "Private Bilder nicht in Beiträgen einbetten."
#: mod/admin.php:970
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:971
msgid "Allow Users to set remote_self"
msgstr "Nutzern erlauben das remote_self Flag zu setzen"
#: mod/admin.php:971
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:972
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: mod/admin.php:972
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:973
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: mod/admin.php:973
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: mod/admin.php:974
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: mod/admin.php:974
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:975
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: mod/admin.php:975
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: mod/admin.php:976
msgid "Community Page Style"
msgstr "Art der Gemeinschaftsseite"
#: mod/admin.php:976
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:977
msgid "Posts per user on community page"
msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
#: mod/admin.php:977
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:978
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: mod/admin.php:978
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:979
msgid "OStatus conversation completion interval"
msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
#: mod/admin.php:979
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:980
msgid "Only import OStatus threads from our contacts"
msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
#: mod/admin.php:980
msgid ""
"Normally we import every content from our OStatus contacts. With this option"
" we only store threads that are started by a contact that is known on our "
"system."
msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
#: mod/admin.php:981
msgid "OStatus support can only be enabled if threading is enabled."
msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
#: mod/admin.php:983
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
#: mod/admin.php:984
msgid "Enable Diaspora support"
msgstr "Diaspora Unterstützung aktivieren"
#: mod/admin.php:984
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: mod/admin.php:985
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: mod/admin.php:985
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:986
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: mod/admin.php:986
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:987
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: mod/admin.php:988
msgid "Proxy URL"
msgstr "Proxy URL"
#: mod/admin.php:989
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: mod/admin.php:989
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:990
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: mod/admin.php:990
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:991
msgid "Poll interval"
msgstr "Abfrageintervall"
#: mod/admin.php:991
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:992
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: mod/admin.php:992
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:993
msgid "Maximum Load Average (Frontend)"
msgstr "Maximum Load Average (Frontend)"
#: mod/admin.php:993
msgid "Maximum system load before the frontend quits service - default 50."
msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
#: mod/admin.php:994
msgid "Maximum table size for optimization"
msgstr "Maximale Tabellengröße zur Optimierung"
#: mod/admin.php:994
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
#: mod/admin.php:995
msgid "Minimum level of fragmentation"
msgstr "Minimaler Fragmentationsgrad"
#: mod/admin.php:995
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
#: mod/admin.php:997
msgid "Periodical check of global contacts"
msgstr "Regelmäßig globale Kontakte überprüfen"
#: mod/admin.php:997
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:998
msgid "Days between requery"
msgstr "Tage zwischen erneuten Abfragen"
#: mod/admin.php:998
msgid "Number of days after which a server is requeried for his contacts."
msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
#: mod/admin.php:999
msgid "Discover contacts from other servers"
msgstr "Neue Kontakte auf anderen Servern entdecken"
#: mod/admin.php:999
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 ä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:1000
msgid "Timeframe for fetching global contacts"
msgstr "Zeitfenster für globale Kontakte"
#: mod/admin.php:1000
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:1001
msgid "Search the local directory"
msgstr "Lokales Verzeichnis durchsuchen"
#: mod/admin.php:1001
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:1003
msgid "Publish server information"
msgstr "Server Informationen veröffentlichen"
#: mod/admin.php:1003
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 <a"
" href='http://the-federation.info/'>the-federation.info</a> 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 <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
#: mod/admin.php:1005
msgid "Use MySQL full text engine"
msgstr "Nutze MySQL full text engine"
#: mod/admin.php:1005
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:1006
msgid "Suppress Language"
msgstr "Sprachinformation unterdrücken"
#: mod/admin.php:1006
msgid "Suppress language information in meta information about a posting."
msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
#: mod/admin.php:1007
msgid "Suppress Tags"
msgstr "Tags Unterdrücken"
#: mod/admin.php:1007
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:1008
msgid "Path to item cache"
msgstr "Pfad zum Eintrag Cache"
#: mod/admin.php:1008
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:1009
msgid "Cache duration in seconds"
msgstr "Cache-Dauer in Sekunden"
#: mod/admin.php:1009
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:1010
msgid "Maximum numbers of comments per post"
msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
#: mod/admin.php:1010
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:1011
msgid "Path for lock file"
msgstr "Pfad für die Sperrdatei"
#: mod/admin.php:1011
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:1012
msgid "Temp path"
msgstr "Temp Pfad"
#: mod/admin.php:1012
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:1013
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
#: mod/admin.php:1013
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:1014
msgid "Disable picture proxy"
msgstr "Bilder Proxy deaktivieren"
#: mod/admin.php:1014
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:1015
msgid "Enable old style pager"
msgstr "Den Old-Style Pager aktiviren"
#: mod/admin.php:1015
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:1016
msgid "Only search in tags"
msgstr "Nur in Tags suchen"
#: mod/admin.php:1016
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:1018
msgid "New base url"
msgstr "Neue Basis-URL"
#: mod/admin.php:1018
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:1020
msgid "RINO Encryption"
msgstr "RINO Verschlüsselung"
#: mod/admin.php:1020
msgid "Encryption layer between nodes."
msgstr "Verschlüsselung zwischen Friendica Instanzen"
#: mod/admin.php:1021
msgid "Embedly API key"
msgstr "Embedly API Schlüssel"
#: mod/admin.php:1021
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
#: mod/admin.php:1023
msgid "Enable 'worker' background processing"
msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
#: mod/admin.php:1023
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
#: mod/admin.php:1024
msgid "Maximum number of parallel workers"
msgstr "Maximale Anzahl parallel laufender Worker"
#: mod/admin.php:1024
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
#: mod/admin.php:1025
msgid "Don't use 'proc_open' with the worker"
msgstr "'proc_open' nicht mit den Workern verwenden"
#: mod/admin.php:1025
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
#: mod/admin.php:1026
msgid "Enable fastlane"
msgstr "Aktiviere Fastlane"
#: mod/admin.php:1026
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
#: mod/admin.php:1055
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: mod/admin.php:1063
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
#: mod/admin.php:1066
#, 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:1078
#, php-format
msgid "Executing %s failed with error: %s"
msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
#: mod/admin.php:1081
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: mod/admin.php:1085
#, 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:1087
#, 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:1106
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: mod/admin.php:1107
msgid "Check database structure"
msgstr "Datenbank Struktur überprüfen"
#: mod/admin.php:1112
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: mod/admin.php:1113
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:1114
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: mod/admin.php:1115
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: mod/admin.php:1149
#, 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:1152
#, 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:1196
#, 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:1203
#, 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:1250
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: mod/admin.php:1258
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: mod/admin.php:1258
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Register date"
msgstr "Anmeldedatum"
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Last login"
msgstr "Letzte Anmeldung"
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Last item"
msgstr "Letzter Beitrag"
#: mod/admin.php:1367 mod/settings.php:43
msgid "Account"
msgstr "Nutzerkonto"
#: mod/admin.php:1376
msgid "Add User"
msgstr "Nutzer hinzufügen"
#: mod/admin.php:1377
msgid "select all"
msgstr "Alle auswählen"
#: mod/admin.php:1378
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
#: mod/admin.php:1379
msgid "User waiting for permanent deletion"
msgstr "Nutzer wartet auf permanente Löschung"
#: mod/admin.php:1380
msgid "Request date"
msgstr "Anfragedatum"
#: mod/admin.php:1381
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: mod/admin.php:1383
msgid "Deny"
msgstr "Verwehren"
#: mod/admin.php:1385 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Block"
msgstr "Sperren"
#: mod/admin.php:1386 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Unblock"
msgstr "Entsperren"
#: mod/admin.php:1387
msgid "Site admin"
msgstr "Seitenadministrator"
#: mod/admin.php:1388
msgid "Account expired"
msgstr "Account ist abgelaufen"
#: mod/admin.php:1391
msgid "New User"
msgstr "Neuer Nutzer"
#: mod/admin.php:1392
msgid "Deleted since"
msgstr "Gelöscht seit"
#: mod/admin.php:1397
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:1398
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:1408
msgid "Name of the new user."
msgstr "Name des neuen Nutzers"
#: mod/admin.php:1409
msgid "Nickname"
msgstr "Spitzname"
#: mod/admin.php:1409
msgid "Nickname of the new user."
msgstr "Spitznamen für den neuen Nutzer"
#: mod/admin.php:1410
msgid "Email address of the new user."
msgstr "Email Adresse des neuen Nutzers"
#: mod/admin.php:1453
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: mod/admin.php:1457
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: mod/admin.php:1468 mod/admin.php:1704
msgid "Disable"
msgstr "Ausschalten"
#: mod/admin.php:1470 mod/admin.php:1706
msgid "Enable"
msgstr "Einschalten"
#: mod/admin.php:1493 mod/admin.php:1751
msgid "Toggle"
msgstr "Umschalten"
#: mod/admin.php:1501 mod/admin.php:1760
msgid "Author: "
msgstr "Autor:"
#: mod/admin.php:1502 mod/admin.php:1761
msgid "Maintainer: "
msgstr "Betreuer:"
#: mod/admin.php:1554
msgid "Reload active plugins"
msgstr "Aktive Plugins neu laden"
#: mod/admin.php:1559
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
#: mod/admin.php:1664
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: mod/admin.php:1742
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: mod/admin.php:1802
msgid "Reload active themes"
msgstr "Aktives Theme neu laden"
#: mod/admin.php:1807
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
#: mod/admin.php:1808
msgid "[Experimental]"
msgstr "[Experimentell]"
#: mod/admin.php:1809
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: mod/admin.php:1833
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: mod/admin.php:1865
msgid "PHP log currently enabled."
msgstr "PHP Protokollierung ist derzeit aktiviert."
#: mod/admin.php:1867
msgid "PHP log currently disabled."
msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
#: mod/admin.php:1876
msgid "Clear"
msgstr "löschen"
#: mod/admin.php:1881
msgid "Enable Debugging"
msgstr "Protokoll führen"
#: mod/admin.php:1882
msgid "Log file"
msgstr "Protokolldatei"
#: mod/admin.php:1882
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:1883
msgid "Log level"
msgstr "Protokoll-Level"
#: mod/admin.php:1886
msgid "PHP logging"
msgstr "PHP Protokollieren"
#: mod/admin.php:1887
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest, Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
msgid "Off"
msgstr "Aus"
#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
msgid "On"
msgstr "An"
#: mod/admin.php:2015
#, php-format
msgid "Lock feature %s"
msgstr "Feature festlegen: %s"
#: mod/admin.php:2023
msgid "Manage Additional Features"
msgstr "Zusätzliche Features Verwalten"
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr "Keine Kontakte zum Anzeigen."
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: mod/cal.php:276 mod/events.php:380
msgid "View"
msgstr "Ansehen"
#: mod/cal.php:277 mod/events.php:382
msgid "Previous"
msgstr "Vorherige"
#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
msgid "Next"
msgstr "Nächste"
#: mod/cal.php:287 mod/events.php:392
msgid "list"
msgstr "Liste"
#: mod/cal.php:297
msgid "User not found"
msgstr "Nutzer nicht gefunden"
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr "Dieses Kalenderformat wird nicht unterstützt."
#: mod/cal.php:315
msgid "No exportable data found"
msgstr "Keine exportierbaren Daten gefunden"
#: mod/cal.php:330
msgid "calendar"
msgstr "Kalender"
#: mod/common.php:86
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: mod/common.php:134 mod/contacts.php:863
msgid "Common Friends"
msgstr "Gemeinsame Kontakte"
#: mod/community.php:27
msgid "Not available."
msgstr "Nicht verfügbar."
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d Kontakt bearbeitet."
msgstr[1] "%d Kontakte bearbeitet."
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: mod/contacts.php:206
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: mod/contacts.php:437
msgid "Drop contact"
msgstr "Kontakt löschen"
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: mod/contacts.php:536 mod/contacts.php:973
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr "Weitere Informationen zu Feeds holen"
#: mod/contacts.php:557
msgid "Fetch information"
msgstr "Beziehe Information"
#: mod/contacts.php:557
msgid "Fetch information and keywords"
msgstr "Beziehe Information und Schlüsselworte"
#: mod/contacts.php:575
msgid "Contact"
msgstr "Kontakt: "
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: mod/contacts.php:579
#, 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:580
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: mod/contacts.php:590
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: mod/contacts.php:596
msgid "Last update:"
msgstr "Letzte Aktualisierung: "
#: mod/contacts.php:598
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: mod/contacts.php:600 mod/contacts.php:983
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: mod/contacts.php:612
msgid "Currently archived"
msgstr "Momentan archiviert"
#: mod/contacts.php:613
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr "Benachrichtigung bei neuen Beiträgen"
#: mod/contacts.php:614
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:617
msgid "Blacklisted keywords"
msgstr "Blacklistete Schlüsselworte "
#: mod/contacts.php:617
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:635
msgid "Actions"
msgstr "Aktionen"
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr "Kontakteinstellungen"
#: mod/contacts.php:684
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:700
msgid "Unblocked"
msgstr "Ungeblockt"
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: mod/contacts.php:709
msgid "Blocked"
msgstr "Geblockt"
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: mod/contacts.php:718
msgid "Ignored"
msgstr "Ignoriert"
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: mod/contacts.php:727
msgid "Archived"
msgstr "Archiviert"
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: mod/contacts.php:736
msgid "Hidden"
msgstr "Verborgen"
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:702
msgid "Update"
msgstr "Aktualisierungen"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Archive"
msgstr "Archivieren"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr "Stapelverarbeitung"
#: mod/contacts.php:856
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:866
msgid "View all common friends"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: mod/contacts.php:916
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: mod/contacts.php:920
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: mod/contacts.php:924
msgid "you are a fan of"
msgstr "Du bist Fan von"
#: mod/contacts.php:994
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: mod/contacts.php:1002
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: mod/contacts.php:1010
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: mod/contacts.php:1018
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: mod/directory.php:197 view/theme/vier/theme.php:201
#: view/theme/diabook/theme.php:525
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: mod/directory.php:199
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: mod/directory.php:201
msgid "Results for:"
msgstr "Ergebnisse für:"
#: mod/directory.php:203
msgid "Site Directory"
msgstr "Verzeichnis"
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr "Personensuche - %s"
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr "Forensuche - %s"
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: mod/display.php:473
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: mod/events.php:381
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: mod/events.php:482
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr "Anfangszeitpunkt und Titel werden benötigt"
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: mod/events.php:486 mod/events.php:502
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: mod/events.php:488 mod/events.php:489
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: mod/events.php:492
msgid "Description:"
msgstr "Beschreibung"
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr "Titel:"
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: mod/photos.php:1770
msgid "Map"
msgstr "Karte"
#: mod/install.php:139
msgid "Friendica Communications Server - Setup"
@ -7474,323 +6696,967 @@ msgid ""
"poller."
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
#: mod/item.php:116
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: 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/item.php:340
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: mod/attach.php:8
msgid "Item not available."
msgstr "Beitrag nicht verfügbar."
#: mod/item.php:895
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
#: mod/item.php:985
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d Kontakt bearbeitet."
msgstr[1] "%d Kontakte bearbeitet."
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: mod/contacts.php:206
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: mod/contacts.php:208 mod/dfrn_request.php:583
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: mod/contacts.php:437
msgid "Drop contact"
msgstr "Kontakt löschen"
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: mod/contacts.php:536 mod/contacts.php:973
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr "Weitere Informationen zu Feeds holen"
#: mod/contacts.php:557
msgid "Fetch information"
msgstr "Beziehe Information"
#: mod/contacts.php:557
msgid "Fetch information and keywords"
msgstr "Beziehe Information und Schlüsselworte"
#: mod/contacts.php:575
msgid "Contact"
msgstr "Kontakt: "
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: mod/contacts.php:579
#, 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."
"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/item.php:987
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: mod/contacts.php:580
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: mod/item.php:988
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: mod/contacts.php:590
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: mod/contacts.php:596
msgid "Last update:"
msgstr "Letzte Aktualisierung: "
#: mod/contacts.php:598
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: mod/contacts.php:600 mod/contacts.php:983
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: mod/contacts.php:612
msgid "Currently archived"
msgstr "Momentan archiviert"
#: mod/contacts.php:613
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."
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: mod/item.php:992
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr "Benachrichtigung bei neuen Beiträgen"
#: mod/contacts.php:614
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:617
msgid "Blacklisted keywords"
msgstr "Blacklistete Schlüsselworte "
#: mod/contacts.php:617
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:635
msgid "Actions"
msgstr "Aktionen"
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr "Kontakteinstellungen"
#: mod/contacts.php:684
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr "Kontakte vorschlagen"
#: mod/contacts.php:692 mod/group.php:192
msgid "All Contacts"
msgstr "Alle Kontakte"
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:700
msgid "Unblocked"
msgstr "Ungeblockt"
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: mod/contacts.php:709
msgid "Blocked"
msgstr "Geblockt"
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: mod/contacts.php:718
msgid "Ignored"
msgstr "Ignoriert"
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: mod/contacts.php:727
msgid "Archived"
msgstr "Archiviert"
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: mod/contacts.php:736
msgid "Hidden"
msgstr "Verborgen"
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
msgid "Update"
msgstr "Aktualisierungen"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Archive"
msgstr "Archivieren"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr "Stapelverarbeitung"
#: mod/contacts.php:856
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:863 mod/common.php:134
msgid "Common Friends"
msgstr "Gemeinsame Kontakte"
#: mod/contacts.php:866
msgid "View all common friends"
msgstr "Alle Kontakte anzeigen"
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: mod/contacts.php:916
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: mod/contacts.php:920
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: mod/contacts.php:924
msgid "you are a fan of"
msgstr "Du bist Fan von"
#: mod/contacts.php:994
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: mod/contacts.php:1002
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: mod/contacts.php:1010
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: mod/contacts.php:1018
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: mod/follow.php:19 mod/dfrn_request.php:875
msgid "Submit Request"
msgstr "Anfrage abschicken"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr "Du hast den Kontakt bereits hinzugefügt."
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
#: mod/follow.php:109 mod/dfrn_request.php:861
msgid "Please answer the following:"
msgstr "Bitte beantworte folgendes:"
#: mod/follow.php:110 mod/dfrn_request.php:862
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
msgid "Does %s know you?"
msgstr "Kennt %s Dich?"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: mod/follow.php:111 mod/dfrn_request.php:866
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
#: mod/follow.php:117 mod/dfrn_request.php:872
msgid "Your Identity Address:"
msgstr "Adresse Deines Profils:"
#: mod/match.php:86
msgid "is interested in:"
msgstr "ist interessiert an:"
#: mod/follow.php:180
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: mod/match.php:100
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: mod/apps.php:11
msgid "Applications"
msgstr "Anwendungen"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: 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:71
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:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: mod/p.php:9
msgid "Not Extended"
msgstr "Nicht erweitert."
#: mod/display.php:473
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
#: mod/common.php:86
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Willkommen bei Friendica"
#: mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Checkliste für neue Mitglieder"
#: mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
#: mod/newmember.php:14
msgid "Getting Started"
msgstr "Einstieg"
#: mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Friendica Rundgang"
#: mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr "Auf der <em>Quick Start</em> 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:26
msgid "Go to Your Settings"
msgstr "Gehe zu deinen Einstellungen"
#: mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
#: mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
#: mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
#: mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Editiere dein Profil"
#: mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
#: mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Profil Schlüsselbegriffe"
#: mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
#: mod/newmember.php:44
msgid "Connecting"
msgstr "Verbindungen knüpfen"
#: mod/newmember.php:51
msgid "Importing Emails"
msgstr "Emails Importieren"
#: mod/newmember.php:51
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
#: mod/newmember.php:53
msgid "Go to Your Contacts Page"
msgstr "Gehe zu deiner Kontakt-Seite"
#: mod/newmember.php:53
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 <em>Add New Contact</em> dialog."
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
#: mod/newmember.php:55
msgid "Go to Your Site's Directory"
msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
#: mod/newmember.php:55
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
#: mod/newmember.php:57
msgid "Finding New People"
msgstr "Neue Leute kennenlernen"
#: mod/newmember.php:57
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
#: mod/newmember.php:65
msgid "Group Your Contacts"
msgstr "Gruppiere deine Kontakte"
#: mod/newmember.php:65
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Sobald Du einige Kontakte 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."
#: mod/newmember.php:68
msgid "Why Aren't My Posts Public?"
msgstr "Warum sind meine Beiträge nicht öffentlich?"
#: mod/newmember.php:68
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
#: mod/newmember.php:73
msgid "Getting Help"
msgstr "Hilfe bekommen"
#: mod/newmember.php:77
msgid "Go to the Help Section"
msgstr "Zum Hilfe Abschnitt gehen"
#: mod/newmember.php:77
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
#: 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/mood.php:133
msgid "Mood"
msgstr "Stimmung"
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
#: 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/network.php:398
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid ""
"Warning: This group contains %s member from a network that doesn't allow non"
" public messages."
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."
"Warning: This group contains %s members from a network that doesn't allow "
"non public messages."
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
#: mod/network.php:401
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
msgid "Messages in this group won't be send to these receivers."
msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
#: mod/network.php:528
#: mod/network.php:529
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:533
#: mod/network.php:534
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: mod/network.php:826
#: mod/network.php:827
msgid "Commented Order"
msgstr "Neueste Kommentare"
#: mod/network.php:829
#: mod/network.php:830
msgid "Sort by Comment Date"
msgstr "Nach Kommentardatum sortieren"
#: mod/network.php:834
#: mod/network.php:835
msgid "Posted Order"
msgstr "Neueste Beiträge"
#: mod/network.php:837
#: mod/network.php:838
msgid "Sort by Post Date"
msgstr "Nach Beitragsdatum sortieren"
#: mod/network.php:848
#: mod/network.php:849
msgid "Posts that mention or involve you"
msgstr "Beiträge, in denen es um Dich geht"
#: mod/network.php:856
#: mod/network.php:857
msgid "New"
msgstr "Neue"
#: mod/network.php:859
#: mod/network.php:860
msgid "Activity Stream - by date"
msgstr "Aktivitäten-Stream - nach Datum"
#: mod/network.php:867
#: mod/network.php:868
msgid "Shared Links"
msgstr "Geteilte Links"
#: mod/network.php:870
#: mod/network.php:871
msgid "Interesting Links"
msgstr "Interessante Links"
#: mod/network.php:878
#: mod/network.php:879
msgid "Starred"
msgstr "Markierte"
#: mod/network.php:881
#: mod/network.php:882
msgid "Favourite Posts"
msgstr "Favorisierte Beiträge"
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: mod/community.php:27
msgid "Not available."
msgstr "Nicht verfügbar."
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr "Zeitumrechnung"
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr "jeder"
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: mod/photos.php:190
msgid "Album not found."
msgstr "Album nicht gefunden."
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr "Album löschen"
#: mod/photos.php:230
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:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr "Foto löschen"
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr "Möchtest Du wirklich dieses Foto löschen?"
#: mod/photos.php:688
#, 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:688
msgid "a photo"
msgstr "einem Foto"
#: mod/photos.php:794
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: mod/photos.php:954
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: mod/photos.php:1054 mod/videos.php:305
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:1148
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1295
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1296
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: mod/photos.php:1167
msgid "Private Photo"
msgstr "Privates Foto"
#: mod/photos.php:1168
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: mod/photos.php:1234
msgid "Edit Album"
msgstr "Album bearbeiten"
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr "Foto betrachten"
#: mod/photos.php:1315
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:1317
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:1484
msgid "Tags: "
msgstr "Tags: "
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: mod/photos.php:1526
msgid "New album name"
msgstr "Name des neuen Albums"
#: mod/photos.php:1527
msgid "Caption"
msgstr "Bildunterschrift"
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: mod/photos.php:1528
#: mod/localtime.php:26
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
"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/photos.php:1529
msgid "Do not rotate"
msgstr "Nicht rotieren"
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
#: mod/photos.php:1546
msgid "Private photo"
msgstr "Privates Foto"
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Bitte wähle Deine Zeitzone:"
#: mod/photos.php:1547
msgid "Public photo"
msgstr "Öffentliches Foto"
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr "Der Beitrag wurde angelegt"
#: mod/photos.php:1770
msgid "Map"
msgstr "Karte"
#: mod/group.php:29
msgid "Group created."
msgstr "Gruppe erstellt."
#: mod/photos.php:1847 mod/videos.php:387
msgid "View Album"
msgstr "Album betrachten"
#: mod/group.php:35
msgid "Could not create group."
msgstr "Konnte die Gruppe nicht erstellen."
#: mod/ping.php:234
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit Dir in Kontakt treten"
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr "Gruppe nicht gefunden."
#: mod/ping.php:249
msgid "{0} sent you a message"
msgstr "{0} schickte Dir eine Nachricht"
#: mod/group.php:60
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: mod/ping.php:264
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: mod/group.php:87
msgid "Save Group"
msgstr "Gruppe speichern"
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Eine Kontaktgruppe anlegen."
#: 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/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
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:129 mod/dfrn_request.php:525
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:131 mod/dfrn_request.php:527
msgid "Warning: profile location has no profile photo."
msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
#, 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:180
msgid "Introduction complete."
msgstr "Kontaktanfrage abgeschlossen."
#: mod/dfrn_request.php:222
msgid "Unrecoverable protocol error."
msgstr "Nicht behebbarer Protokollfehler."
#: mod/dfrn_request.php:250
msgid "Profile unavailable."
msgstr "Profil nicht verfügbar."
#: mod/dfrn_request.php:277
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
#: mod/dfrn_request.php:278
msgid "Spam protection measures have been invoked."
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
#: mod/dfrn_request.php:279
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:341
msgid "Invalid locator"
msgstr "Ungültiger Locator"
#: mod/dfrn_request.php:350
msgid "Invalid email address."
msgstr "Ungültige E-Mail-Adresse."
#: mod/dfrn_request.php:375
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:478
msgid "You have already introduced yourself here."
msgstr "Du hast Dich hier bereits vorgestellt."
#: mod/dfrn_request.php:482
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
#: mod/dfrn_request.php:503
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: mod/dfrn_request.php:604
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
#: mod/dfrn_request.php:644
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. "
#: mod/dfrn_request.php:664
msgid "Please login to confirm introduction."
msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
#: mod/dfrn_request.php:674
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
msgid "Confirm"
msgstr "Bestätigen"
#: mod/dfrn_request.php:700
msgid "Hide this contact"
msgstr "Verberge diesen Kontakt"
#: mod/dfrn_request.php:703
#, php-format
msgid "Welcome home %s."
msgstr "Willkommen zurück %s."
#: mod/dfrn_request.php:704
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
#: mod/dfrn_request.php:833
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:854
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
#: mod/dfrn_request.php:859
msgid "Friend/Connection Request"
msgstr "Kontaktanfrage"
#: mod/dfrn_request.php:860
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:869
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: mod/dfrn_request.php:871
#, 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/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
#: mod/profile_photo.php:124
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
#: mod/profile_photo.php:134
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr "Datei hochladen:"
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr "Profil auswählen:"
#: mod/profile_photo.php:251
msgid "Upload"
msgstr "Hochladen"
#: mod/profile_photo.php:254
msgid "or"
msgstr "oder"
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto aus deinen Fotoalben"
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich hochgeladen."
#: mod/register.php:93
msgid ""
@ -7812,121 +7678,86 @@ msgstr "Registrierung erfolgreich."
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
#: mod/register.php:153
#: mod/register.php:160
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
#: mod/register.php:219
#: mod/register.php:226
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:220
#: mod/register.php:227
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:221
#: mod/register.php:228
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: mod/register.php:235
#: mod/register.php:242
msgid "Include your profile in member directory?"
msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
#: mod/register.php:259
#: mod/register.php:267
msgid "Note for the admin"
msgstr "Hinweis für den Admin"
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: mod/register.php:260
#: mod/register.php:269
msgid "Your invitation ID: "
msgstr "ID Deiner Einladung: "
#: mod/register.php:271
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
#: mod/register.php:272
#: mod/register.php:281
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: mod/register.php:274 mod/settings.php:1266
#: mod/register.php:283 mod/settings.php:1271
msgid "New Password:"
msgstr "Neues Passwort:"
#: mod/register.php:274
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr "Leer lassen um das Passwort automatisch zu generieren."
#: mod/register.php:275 mod/settings.php:1267
#: mod/register.php:284 mod/settings.php:1272
msgid "Confirm:"
msgstr "Bestätigen:"
#: mod/register.php:276
#: mod/register.php:285
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: mod/register.php:277
#: mod/register.php:286
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: mod/register.php:287
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr "Importiere Dein Profil auf diese Friendica Instanz"
#: 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:71
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:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr "Möchtest Du dieses Video wirklich löschen?"
#: mod/videos.php:125
msgid "Delete Video"
msgstr "Video Löschen"
#: mod/videos.php:204
msgid "No videos selected"
msgstr "Keine Videos ausgewählt"
#: mod/videos.php:396
msgid "Recent Videos"
msgstr "Neueste Videos"
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr "Neues Video hochladen"
#: mod/viewcontacts.php:72
msgid "No contacts."
msgstr "Keine Kontakte."
#: mod/settings.php:60
msgid "Display"
msgstr "Anzeige"
#: mod/settings.php:67 mod/settings.php:884
#: mod/settings.php:67 mod/settings.php:886
msgid "Social Networks"
msgstr "Soziale Netzwerke"
@ -7954,675 +7785,952 @@ msgstr "E-Mail Einstellungen bearbeitet."
msgid "Features updated"
msgstr "Features aktualisiert"
#: mod/settings.php:357
#: mod/settings.php:359
msgid "Relocate message has been send to your contacts"
msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
#: mod/settings.php:376
#: mod/settings.php:378
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: mod/settings.php:384
#: mod/settings.php:386
msgid "Wrong password."
msgstr "Falsches Passwort."
#: mod/settings.php:395
#: mod/settings.php:397
msgid "Password changed."
msgstr "Passwort geändert."
#: mod/settings.php:397
#: mod/settings.php:399
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: mod/settings.php:477
#: mod/settings.php:479
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: mod/settings.php:479
#: mod/settings.php:481
msgid " Name too short."
msgstr " Name ist zu kurz."
#: mod/settings.php:488
#: mod/settings.php:490
msgid "Wrong Password"
msgstr "Falsches Passwort"
#: mod/settings.php:493
#: mod/settings.php:495
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: mod/settings.php:499
#: mod/settings.php:501
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: mod/settings.php:555
#: mod/settings.php:557
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:559
#: mod/settings.php:561
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:599
#: mod/settings.php:601
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: mod/settings.php:675 mod/settings.php:701 mod/settings.php:737
#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
msgid "Add application"
msgstr "Programm hinzufügen"
#: mod/settings.php:679 mod/settings.php:705
#: mod/settings.php:681 mod/settings.php:707
msgid "Consumer Key"
msgstr "Consumer Key"
#: mod/settings.php:680 mod/settings.php:706
#: mod/settings.php:682 mod/settings.php:708
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: mod/settings.php:681 mod/settings.php:707
#: mod/settings.php:683 mod/settings.php:709
msgid "Redirect"
msgstr "Umleiten"
#: mod/settings.php:682 mod/settings.php:708
#: mod/settings.php:684 mod/settings.php:710
msgid "Icon url"
msgstr "Icon URL"
#: mod/settings.php:693
#: mod/settings.php:695
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: mod/settings.php:736
#: mod/settings.php:738
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: mod/settings.php:740
#: mod/settings.php:742
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: mod/settings.php:741
#: mod/settings.php:743
msgid "No name"
msgstr "Kein Name"
#: mod/settings.php:742
#: mod/settings.php:744
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: mod/settings.php:754
#: mod/settings.php:756
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: mod/settings.php:762
#: mod/settings.php:764
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: mod/settings.php:784
#: mod/settings.php:786
msgid "Additional Features"
msgstr "Zusätzliche Features"
#: mod/settings.php:794 mod/settings.php:798
#: mod/settings.php:796 mod/settings.php:800
msgid "General Social Media Settings"
msgstr "Allgemeine Einstellungen zu Sozialen Medien"
#: mod/settings.php:804
#: mod/settings.php:806
msgid "Disable intelligent shortening"
msgstr "Intelligentes Link kürzen ausschalten"
#: mod/settings.php:806
#: mod/settings.php:808
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:812
#: mod/settings.php:814
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
#: mod/settings.php:814
#: mod/settings.php:816
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:820
#: mod/settings.php:822
msgid "Default group for OStatus contacts"
msgstr "Voreingestellte Gruppe für OStatus Kontakte"
#: mod/settings.php:826
#: mod/settings.php:828
msgid "Your legacy GNU Social account"
msgstr "Dein alter GNU Social Account"
#: mod/settings.php:828
#: mod/settings.php:830
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 "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
#: mod/settings.php:831
#: mod/settings.php:833
msgid "Repair OStatus subscriptions"
msgstr "OStatus Abonnements reparieren"
#: mod/settings.php:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
#, 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:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
msgid "enabled"
msgstr "eingeschaltet"
#: mod/settings.php:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
msgid "disabled"
msgstr "ausgeschaltet"
#: mod/settings.php:841
#: mod/settings.php:843
msgid "GNU Social (OStatus)"
msgstr "GNU Social (OStatus)"
#: mod/settings.php:877
#: mod/settings.php:879
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: mod/settings.php:889
#: mod/settings.php:891
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: mod/settings.php:890
#: mod/settings.php:892
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:891
#: mod/settings.php:893
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: mod/settings.php:893
#: mod/settings.php:895
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: mod/settings.php:894
#: mod/settings.php:896
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: mod/settings.php:895
#: mod/settings.php:897
msgid "Security:"
msgstr "Sicherheit:"
#: mod/settings.php:895 mod/settings.php:900
#: mod/settings.php:897 mod/settings.php:902
msgid "None"
msgstr "Keine"
#: mod/settings.php:896
#: mod/settings.php:898
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: mod/settings.php:897
#: mod/settings.php:899
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: mod/settings.php:898
#: mod/settings.php:900
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: mod/settings.php:899
#: mod/settings.php:901
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: mod/settings.php:900
#: mod/settings.php:902
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: mod/settings.php:900
#: mod/settings.php:902
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: mod/settings.php:901
#: mod/settings.php:903
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: mod/settings.php:990
#: mod/settings.php:994
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: mod/settings.php:996 mod/settings.php:1018
#: mod/settings.php:1000 mod/settings.php:1023
msgid "Display Theme:"
msgstr "Theme:"
#: mod/settings.php:997
#: mod/settings.php:1001
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: mod/settings.php:998
#: mod/settings.php:1002
msgid "Suppress warning of insecure networks"
msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
#: mod/settings.php:1002
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
#: mod/settings.php:1003
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: mod/settings.php:998
#: mod/settings.php:1003
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."
#: mod/settings.php:999
#: mod/settings.php:1004
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: mod/settings.php:999 mod/settings.php:1000
#: mod/settings.php:1004 mod/settings.php:1005
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: mod/settings.php:1000
#: mod/settings.php:1005
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:1001
#: mod/settings.php:1006
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: mod/settings.php:1002
#: mod/settings.php:1007
msgid "Calendar"
msgstr "Kalender"
#: mod/settings.php:1003
#: mod/settings.php:1008
msgid "Beginning of week:"
msgstr "Wochenbeginn:"
#: mod/settings.php:1004
#: mod/settings.php:1009
msgid "Don't show notices"
msgstr "Info-Popups nicht anzeigen"
#: mod/settings.php:1005
#: mod/settings.php:1010
msgid "Infinite scroll"
msgstr "Endloses Scrollen"
#: mod/settings.php:1006
#: mod/settings.php:1011
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:1007
#: mod/settings.php:1012
msgid "Bandwith Saver Mode"
msgstr "Bandbreiten-Spar-Modus"
#: mod/settings.php:1007
#: mod/settings.php:1012
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
#: mod/settings.php:1009
#: mod/settings.php:1014
msgid "General Theme Settings"
msgstr "Allgemeine Themeneinstellungen"
#: mod/settings.php:1010
#: mod/settings.php:1015
msgid "Custom Theme Settings"
msgstr "Benutzerdefinierte Theme Einstellungen"
#: mod/settings.php:1011
#: mod/settings.php:1016
msgid "Content Settings"
msgstr "Einstellungen zum Inhalt"
#: mod/settings.php:1012 view/theme/frio/config.php:61
#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66
#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109
#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61
#: mod/settings.php:1017 view/theme/frio/config.php:61
#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr "Themeneinstellungen"
#: mod/settings.php:1094
#: mod/settings.php:1099
msgid "Account Types"
msgstr "Kontenarten"
#: mod/settings.php:1095
#: mod/settings.php:1100
msgid "Personal Page Subtypes"
msgstr "Unterarten der persönlichen Seite"
#: mod/settings.php:1096
#: mod/settings.php:1101
msgid "Community Forum Subtypes"
msgstr "Unterarten des Gemeinschaftsforums"
#: mod/settings.php:1103
#: mod/settings.php:1108
msgid "Personal Page"
msgstr "Persönliche Seite"
#: mod/settings.php:1104
#: mod/settings.php:1109
msgid "This account is a regular personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: mod/settings.php:1107
#: mod/settings.php:1112
msgid "Organisation Page"
msgstr "Organisationsseite"
#: mod/settings.php:1108
#: mod/settings.php:1113
msgid "This account is a profile for an organisation"
msgstr "Diese Konto ist ein Profil für eine Organisation"
#: mod/settings.php:1111
#: mod/settings.php:1116
msgid "News Page"
msgstr "Nachrichtenseite"
#: mod/settings.php:1112
#: mod/settings.php:1117
msgid "This account is a news account/reflector"
msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
#: mod/settings.php:1115
#: mod/settings.php:1120
msgid "Community Forum"
msgstr "Gemeinschaftsforum"
#: mod/settings.php:1116
#: mod/settings.php:1121
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
#: mod/settings.php:1119
#: mod/settings.php:1124
msgid "Normal Account Page"
msgstr "Normales Konto"
#: mod/settings.php:1120
#: mod/settings.php:1125
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: mod/settings.php:1123
#: mod/settings.php:1128
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: mod/settings.php:1124
#: mod/settings.php:1129
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: mod/settings.php:1127
#: mod/settings.php:1132
msgid "Public Forum"
msgstr "Öffentliches Forum"
#: mod/settings.php:1128
#: mod/settings.php:1133
msgid "Automatically approve all contact requests"
msgstr "Bestätige alle Kontaktanfragen automatisch"
#: mod/settings.php:1131
#: mod/settings.php:1136
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: mod/settings.php:1132
#: mod/settings.php:1137
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: mod/settings.php:1135
#: mod/settings.php:1140
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: mod/settings.php:1136
#: mod/settings.php:1141
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: mod/settings.php:1148
#: mod/settings.php:1153
msgid "OpenID:"
msgstr "OpenID:"
#: mod/settings.php:1148
#: mod/settings.php:1153
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:1158
#: mod/settings.php:1163
msgid "Publish your default profile in your local site directory?"
msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: mod/settings.php:1164
#: mod/settings.php:1169
msgid "Publish your default profile in the global social directory?"
msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: mod/settings.php:1172
#: mod/settings.php:1177
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: mod/settings.php:1176
#: mod/settings.php:1181
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:1181
#: mod/settings.php:1186
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
#: mod/settings.php:1187
#: mod/settings.php:1192
msgid "Allow friends to tag your posts?"
msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
#: mod/settings.php:1193
#: mod/settings.php:1198
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:1199
#: mod/settings.php:1204
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
#: mod/settings.php:1207
#: mod/settings.php:1212
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: mod/settings.php:1215
#: mod/settings.php:1220
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
#: mod/settings.php:1222
#: mod/settings.php:1227
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: mod/settings.php:1222
#: mod/settings.php:1227
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:1223
#: mod/settings.php:1228
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: mod/settings.php:1224
#: mod/settings.php:1229
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: mod/settings.php:1225
#: mod/settings.php:1230
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: mod/settings.php:1226
#: mod/settings.php:1231
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: mod/settings.php:1227
#: mod/settings.php:1232
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: mod/settings.php:1228
#: mod/settings.php:1233
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: mod/settings.php:1229
#: mod/settings.php:1234
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: mod/settings.php:1257
#: mod/settings.php:1262
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: mod/settings.php:1265
#: mod/settings.php:1270
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: mod/settings.php:1267
#: mod/settings.php:1272
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
#: mod/settings.php:1268
#: mod/settings.php:1273
msgid "Current Password:"
msgstr "Aktuelles Passwort:"
#: mod/settings.php:1268 mod/settings.php:1269
#: mod/settings.php:1273 mod/settings.php:1274
msgid "Your current password to confirm the changes"
msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
#: mod/settings.php:1269
#: mod/settings.php:1274
msgid "Password:"
msgstr "Passwort:"
#: mod/settings.php:1273
#: mod/settings.php:1278
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: mod/settings.php:1275
#: mod/settings.php:1280
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: mod/settings.php:1276
#: mod/settings.php:1281
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: mod/settings.php:1277
#: mod/settings.php:1282
msgid "Your Language:"
msgstr "Deine Sprache:"
#: mod/settings.php:1277
#: mod/settings.php:1282
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
#: mod/settings.php:1278
#: mod/settings.php:1283
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: mod/settings.php:1279
#: mod/settings.php:1284
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: mod/settings.php:1282
#: mod/settings.php:1287
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: mod/settings.php:1284
#: mod/settings.php:1289
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
#: mod/settings.php:1284 mod/settings.php:1314
#: mod/settings.php:1289 mod/settings.php:1319
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: mod/settings.php:1285
#: mod/settings.php:1290
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: mod/settings.php:1286
#: mod/settings.php:1291
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: mod/settings.php:1297
#: mod/settings.php:1302
msgid "Default Private Post"
msgstr "Privater Standardbeitrag"
#: mod/settings.php:1298
#: mod/settings.php:1303
msgid "Default Public Post"
msgstr "Öffentlicher Standardbeitrag"
#: mod/settings.php:1302
#: mod/settings.php:1307
msgid "Default Permissions for New Posts"
msgstr "Standardberechtigungen für neue Beiträge"
#: mod/settings.php:1314
#: mod/settings.php:1319
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: mod/settings.php:1317
#: mod/settings.php:1322
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: mod/settings.php:1318
#: mod/settings.php:1323
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: mod/settings.php:1319
#: mod/settings.php:1324
msgid "accepting a friend request"
msgstr " Du eine Kontaktanfrage akzeptierst"
#: mod/settings.php:1320
#: mod/settings.php:1325
msgid "joining a forum/community"
msgstr " Du einem Forum/einer Gemeinschaftsseite beitrittst"
#: mod/settings.php:1321
#: mod/settings.php:1326
msgid "making an <em>interesting</em> profile change"
msgstr " Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
#: mod/settings.php:1322
#: mod/settings.php:1327
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: mod/settings.php:1323
#: mod/settings.php:1328
msgid "You receive an introduction"
msgstr " Du eine Kontaktanfrage erhältst"
#: mod/settings.php:1324
#: mod/settings.php:1329
msgid "Your introductions are confirmed"
msgstr " eine Deiner Kontaktanfragen akzeptiert wurde"
#: mod/settings.php:1325
#: mod/settings.php:1330
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf Deine Pinnwand schreibt"
#: mod/settings.php:1326
#: mod/settings.php:1331
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: mod/settings.php:1327
#: mod/settings.php:1332
msgid "You receive a private message"
msgstr " Du eine private Nachricht erhältst"
#: mod/settings.php:1328
#: mod/settings.php:1333
msgid "You receive a friend suggestion"
msgstr " Du eine Empfehlung erhältst"
#: mod/settings.php:1329
#: mod/settings.php:1334
msgid "You are tagged in a post"
msgstr " Du in einem Beitrag erwähnt wirst"
#: mod/settings.php:1330
#: mod/settings.php:1335
msgid "You are poked/prodded/etc. in a post"
msgstr " Du von jemandem angestupst oder sonstwie behandelt wirst"
#: mod/settings.php:1332
#: mod/settings.php:1337
msgid "Activate desktop notifications"
msgstr "Desktop Benachrichtigungen einschalten"
#: mod/settings.php:1332
#: mod/settings.php:1337
msgid "Show desktop popup on new notifications"
msgstr "Desktop Benachrichtigungen einschalten"
#: mod/settings.php:1334
#: mod/settings.php:1339
msgid "Text-only notification emails"
msgstr "Benachrichtigungs E-Mail als Rein-Text."
#: mod/settings.php:1336
#: mod/settings.php:1341
msgid "Send text only notification emails, without the html part"
msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
#: mod/settings.php:1338
#: mod/settings.php:1343
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: mod/settings.php:1339
#: mod/settings.php:1344
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: mod/settings.php:1342
#: mod/settings.php:1347
msgid "Relocate"
msgstr "Umziehen"
#: mod/settings.php:1343
#: mod/settings.php:1348
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:1344
#: mod/settings.php:1349
msgid "Resend relocate message to contacts"
msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
#: 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:56 mod/message.php:71
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Konnte Deinen Heimatort nicht bestimmen."
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr "Nachricht gesendet."
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Kein Empfänger."
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: 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/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr "An:"
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr "Betreff:"
#: mod/share.php:38
msgid "link"
msgstr "Link"
#: 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/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/item.php:116
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: mod/item.php:340
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: mod/item.php:898
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: mod/item.php:988
#, 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:990
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: mod/item.php:991
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:995
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: mod/ostatus_subscribe.php:14
msgid "Subscribing to OStatus contacts"
msgstr "OStatus Kontakten folgen"
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr "Keine Kontakte gefunden."
#: mod/ostatus_subscribe.php:30
msgid "Couldn't fetch information for contact."
msgstr "Konnte die Kontaktinformationen nicht einholen."
#: mod/ostatus_subscribe.php:38
msgid "Couldn't fetch friends for contact."
msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
#: mod/ostatus_subscribe.php:65
msgid "success"
msgstr "Erfolg"
#: mod/ostatus_subscribe.php:67
msgid "failed"
msgstr "Fehlgeschlagen"
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heißt %2$s herzlich willkommen"
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr "Konnte die Kontaktinformationen nicht finden."
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr "Möchtest Du wirklich diese Nachricht löschen?"
#: mod/message.php:235
msgid "Message deleted."
msgstr "Nachricht gelöscht."
#: mod/message.php:266
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
#: mod/message.php:383
msgid "No messages."
msgstr "Keine Nachrichten."
#: mod/message.php:426
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: mod/message.php:503
msgid "Delete message"
msgstr "Nachricht löschen"
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
#: mod/message.php:531
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
#: mod/message.php:535
msgid "Send Reply"
msgstr "Antwort senden"
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr "'Unbekannter Absender - %s"
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr "Du und %s"
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr "%s und Du"
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: mod/manage.php:140
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:141
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten aus: "
#: object/Item.php:370
msgid "via"
msgstr "via"
@ -8659,6 +8767,14 @@ msgstr "Größe anpassen - Optimale Größe"
msgid "Resize to best fit and retain aspect ratio."
msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
#: view/theme/frio/theme.php:229
msgid "Guest"
msgstr "Gast"
#: view/theme/frio/theme.php:235
msgid "Visitor"
msgstr "Besucher"
#: view/theme/frio/config.php:42
msgid "Default"
msgstr "Standard"
@ -8699,31 +8815,6 @@ msgstr "Transparanz des Hintergrunds von Beiträgem"
msgid "Set the background image"
msgstr "Hintergrundbild festlegen"
#: view/theme/frio/theme.php:226
msgid "Guest"
msgstr "Gast"
#: view/theme/frio/theme.php:232
msgid "Visitor"
msgstr "Besucher"
#: 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/quattro/config.php:67
msgid "Alignment"
msgstr "Ausrichtung"
@ -8736,6 +8827,10 @@ msgstr "Links"
msgid "Center"
msgstr "Mitte"
#: view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr "Farbschema"
#: view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr "Schriftgröße in Beiträgen"
@ -8744,33 +8839,19 @@ msgstr "Schriftgröße in Beiträgen"
msgid "Textareas font size"
msgstr "Schriftgröße in Eingabefeldern"
#: 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/vier/theme.php:152 view/theme/vier/config.php:112
#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
#: view/theme/diabook/config.php:160
msgid "Community Profiles"
msgstr "Community-Profile"
#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
#: view/theme/diabook/config.php:164
msgid "Last users"
msgstr "Letzte Nutzer"
#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
#: view/theme/diabook/config.php:163
msgid "Find Friends"
msgstr "Kontakte finden"
#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524
#: view/theme/vier/theme.php:200
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
@ -8779,8 +8860,6 @@ msgid "Quick Start"
msgstr "Schnell-Start"
#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
#: view/theme/diabook/config.php:162
msgid "Connect Services"
msgstr "Verbinde Dienste"
@ -8792,68 +8871,14 @@ msgstr "Komma-Separierte Liste der Helfer-Foren"
msgid "Set style"
msgstr "Stil auswählen"
#: view/theme/vier/config.php:111 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/vier/config.php:111
msgid "Community Pages"
msgstr "Foren"
#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599
#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161
#: view/theme/vier/config.php:113
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: 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:441 view/theme/diabook/theme.php:632
#: view/theme/diabook/config.php:166
msgid "Last likes"
msgstr "Zuletzt gemocht"
#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
#: view/theme/diabook/config.php:165
msgid "Last photos"
msgstr "Letzte Fotos"
#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
#: view/theme/diabook/config.php:159
msgid "Earth Layers"
msgstr "Earth Layers"
#: view/theme/diabook/theme.php:584
msgid "Set zoomfactor for Earth Layers"
msgstr "Zoomfaktor der Earth Layer"
#: 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"
#: 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"
#: view/theme/diabook/theme.php:622
msgid "Show/hide boxes at right-hand column:"
msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
#: 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/duepuntozero/config.php:45
msgid "greenzero"
msgstr "greenzero"
@ -8881,56 +8906,3 @@ msgstr "slackr"
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
msgstr "Variationen"
#: index.php:447
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"
#: boot.php:968
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: boot.php:971
msgid "show fewer"
msgstr "weniger anzeigen"
#: boot.php:1641
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: boot.php:1753
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
#: boot.php:1782
msgid "Password: "
msgstr "Passwort: "
#: boot.php:1783
msgid "Remember me"
msgstr "Anmeldedaten merken"
#: boot.php:1786
msgid "Or login using OpenID: "
msgstr "Oder melde Dich mit Deiner OpenID an: "
#: boot.php:1792
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: boot.php:1795
msgid "Website Terms of Service"
msgstr "Website Nutzungsbedingungen"
#: boot.php:1796
msgid "terms of service"
msgstr "Nutzungsbedingungen"
#: boot.php:1798
msgid "Website Privacy Policy"
msgstr "Website Datenschutzerklärung"
#: boot.php:1799
msgid "privacy policy"
msgstr "Datenschutzerklärung"

View file

@ -5,6 +5,48 @@ function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
$a->strings["Comment"] = "Kommentar";
$a->strings["show more"] = "mehr anzeigen";
$a->strings["show fewer"] = "weniger anzeigen";
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
$a->strings["Create a New Account"] = "Neues Konto erstellen";
$a->strings["Register"] = "Registrieren";
$a->strings["Logout"] = "Abmelden";
$a->strings["Login"] = "Anmeldung";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Password: "] = "Passwort: ";
$a->strings["Remember me"] = "Anmeldedaten merken";
$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
$a->strings["Forgot your password?"] = "Passwort vergessen?";
$a->strings["Password Reset"] = "Passwort zurücksetzen";
$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
$a->strings["terms of service"] = "Nutzungsbedingungen";
$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
$a->strings["privacy policy"] = "Datenschutzerklärung";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age: "] = "Alter: ";
$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["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";
@ -31,9 +73,158 @@ $a->strings["%d contact in common"] = array(
0 => "%d gemeinsamer Kontakt",
1 => "%d gemeinsame Kontakte",
);
$a->strings["show more"] = "mehr anzeigen";
$a->strings["System"] = "System";
$a->strings["Network"] = "Netzwerk";
$a->strings["Personal"] = "Persönlich";
$a->strings["Home"] = "Pinnwand";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
$a->strings["Thank You,"] = "Danke,";
$a->strings["%s Administrator"] = "der Administrator von %s";
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
$a->strings["noreply"] = "noreply";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
$a->strings["a private message"] = "eine private Nachricht";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
$a->strings["Name:"] = "Name:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt";
$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
$a->strings["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["Forums"] = "Foren";
$a->strings["External link to forum"] = "Externer Link zum Forum";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["status"] = "Status";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
$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["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["Location:"] = "Ort:";
$a->strings["Sun"] = "So";
$a->strings["Mon"] = "Mo";
$a->strings["Tue"] = "Di";
$a->strings["Wed"] = "Mi";
$a->strings["Thu"] = "Do";
$a->strings["Fri"] = "Fr";
$a->strings["Sat"] = "Sa";
$a->strings["Sunday"] = "Sonntag";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["Jan"] = "Jan";
$a->strings["Feb"] = "Feb";
$a->strings["Mar"] = "März";
$a->strings["Apr"] = "Apr";
$a->strings["May"] = "Mai";
$a->strings["Jun"] = "Jun";
$a->strings["Jul"] = "Juli";
$a->strings["Aug"] = "Aug";
$a->strings["Sept"] = "Sep";
$a->strings["Oct"] = "Okt";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Dez";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["today"] = "Heute";
$a->strings["all-day"] = "ganztägig";
$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["Export"] = "Exportieren";
$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
$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["Male"] = "Männlich";
$a->strings["Female"] = "Weiblich";
$a->strings["Currently Male"] = "Momentan männlich";
@ -95,189 +286,80 @@ $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["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["Location:"] = "Ort:";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["Logged out."] = "Abgemeldet.";
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> 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 <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Groups"] = "Gruppen";
$a->strings["Edit groups"] = "Gruppen bearbeiten";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["add"] = "hinzufügen";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$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["default"] = "Standard";
$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["Profile Photos"] = "Profilbilder";
$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["Registration details for %s"] = "Details der Registration von %s";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-Mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Diaspora";
$a->strings["GNU Social"] = "GNU Social";
$a->strings["App.net"] = "App.net";
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["show"] = "zeigen";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["Permissions"] = "Berechtigungen";
$a->strings["Close"] = "Schließen";
$a->strings["photo"] = "Foto";
$a->strings["status"] = "Status";
$a->strings["event"] = "Event";
$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["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
$a->strings["[no subject]"] = "[kein Betreff]";
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
$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["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["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
$a->strings["Yes"] = "Ja";
$a->strings["Cancel"] = "Abbrechen";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["Archives"] = "Archiv";
$a->strings["newer"] = "neuer";
$a->strings["older"] = "älter";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "erste";
$a->strings["last"] = "letzte";
$a->strings["next"] = "nächste";
$a->strings["Loading more entries..."] = "lade weitere Einträge...";
$a->strings["The end"] = "Das Ende";
$a->strings["No contacts"] = "Keine Kontakte";
$a->strings["%d Contact"] = array(
0 => "%d Kontakt",
1 => "%d Kontakte",
);
$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["System"] = "System";
$a->strings["Network"] = "Netzwerk";
$a->strings["Personal"] = "Persönlich";
$a->strings["Home"] = "Pinnwand";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["General Features"] = "Allgemeine Features";
$a->strings["Multiple Profiles"] = "Mehrere Profile";
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
$a->strings["Photo Location"] = "Aufnahmeort";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
$a->strings["Richtext Editor"] = "Web-Editor";
$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
$a->strings["Post Preview"] = "Beitragsvorschau";
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde.";
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
$a->strings["Search by Date"] = "Archiv";
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
$a->strings["List Forums"] = "Zeige Foren";
$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
$a->strings["Group Filter"] = "Gruppen Filter";
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
$a->strings["Network Filter"] = "Netzwerk Filter";
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
$a->strings["Network Tabs"] = "Netzwerk Reiter";
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
$a->strings["Tagging"] = "Tagging";
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
$a->strings["Post Categories"] = "Beitragskategorien";
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
$a->strings["Star Posts"] = "Beiträge Markieren";
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings["noreply"] = "noreply";
$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["Image/photo"] = "Bild/Foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["View Contacts"] = "Kontakte anzeigen";
$a->strings["Search"] = "Suche";
$a->strings["Save"] = "Speichern";
$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
$a->strings["Full Text"] = "Volltext";
$a->strings["Tags"] = "Tags";
$a->strings["Contacts"] = "Kontakte";
$a->strings["poke"] = "anstupsen";
$a->strings["poked"] = "stupste";
$a->strings["ping"] = "anpingen";
$a->strings["pinged"] = "pingte";
$a->strings["prod"] = "knuffen";
$a->strings["prodded"] = "knuffte";
$a->strings["slap"] = "ohrfeigen";
$a->strings["slapped"] = "ohrfeigte";
$a->strings["finger"] = "befummeln";
$a->strings["fingered"] = "befummelte";
$a->strings["rebuff"] = "eine Abfuhr erteilen";
$a->strings["rebuffed"] = "abfuhrerteilte";
$a->strings["happy"] = "glücklich";
$a->strings["sad"] = "traurig";
$a->strings["mellow"] = "sanft";
$a->strings["tired"] = "müde";
$a->strings["perky"] = "frech";
$a->strings["angry"] = "sauer";
$a->strings["stupified"] = "verblüfft";
$a->strings["puzzled"] = "verwirrt";
$a->strings["interested"] = "interessiert";
$a->strings["bitter"] = "verbittert";
$a->strings["cheerful"] = "fröhlich";
$a->strings["alive"] = "lebendig";
$a->strings["annoyed"] = "verärgert";
$a->strings["anxious"] = "unruhig";
$a->strings["cranky"] = "schrullig";
$a->strings["disturbed"] = "verstört";
$a->strings["frustrated"] = "frustriert";
$a->strings["motivated"] = "motiviert";
$a->strings["relaxed"] = "entspannt";
$a->strings["surprised"] = "überrascht";
$a->strings["View Video"] = "Video ansehen";
$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["event"] = "Event";
$a->strings["photo"] = "Foto";
$a->strings["activity"] = "Aktivität";
$a->strings["comment"] = array(
0 => "Kommentar",
1 => "Kommentare",
);
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
@ -359,7 +441,6 @@ $a->strings["Permission settings"] = "Berechtigungseinstellungen";
$a->strings["permissions"] = "Zugriffsrechte";
$a->strings["Public post"] = "Öffentlicher Beitrag";
$a->strings["Preview"] = "Vorschau";
$a->strings["Cancel"] = "Abbrechen";
$a->strings["Post to Groups"] = "Poste an Gruppe";
$a->strings["Post to Contacts"] = "Poste an Kontakte";
$a->strings["Private post"] = "Privater Beitrag";
@ -378,152 +459,7 @@ $a->strings["Not Attending"] = array(
0 => "Nicht teilnehmend ",
1 => "Nicht teilnehmend",
);
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age: "] = "Alter: ";
$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["\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["%s\\'s birthday"] = "%ss Geburtstag";
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
$a->strings["Thank You,"] = "Danke,";
$a->strings["%s Administrator"] = "der Administrator von %s";
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
$a->strings["a private message"] = "eine private Nachricht";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
$a->strings["Name:"] = "Name:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf %2\$s bestätigt";
$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
$a->strings["Sun"] = "So";
$a->strings["Mon"] = "Mo";
$a->strings["Tue"] = "Di";
$a->strings["Wed"] = "Mi";
$a->strings["Thu"] = "Do";
$a->strings["Fri"] = "Fr";
$a->strings["Sat"] = "Sa";
$a->strings["Sunday"] = "Sonntag";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["Jan"] = "Jan";
$a->strings["Feb"] = "Feb";
$a->strings["Mar"] = "März";
$a->strings["Apr"] = "Apr";
$a->strings["May"] = "Mai";
$a->strings["Jun"] = "Jun";
$a->strings["Jul"] = "Juli";
$a->strings["Aug"] = "Aug";
$a->strings["Sept"] = "Sep";
$a->strings["Oct"] = "Okt";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Dez";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["today"] = "Heute";
$a->strings["all-day"] = "ganztägig";
$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["Export"] = "Exportieren";
$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["following"] = "folgen";
$a->strings["Contact Photos"] = "Kontaktbilder";
$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Edit profile"] = "Profil bearbeiten";
@ -584,17 +520,160 @@ $a->strings["Events"] = "Veranstaltungen";
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
$a->strings["Personal Notes"] = "Persönliche Notizen";
$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
$a->strings["Contacts"] = "Kontakte";
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
$a->strings["Yes"] = "Ja";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["Archives"] = "Archiv";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["following"] = "folgen";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Drop Contact"] = "Kontakt löschen";
$a->strings["Organisation"] = "Organisation";
$a->strings["News"] = "Nachrichten";
$a->strings["Forum"] = "Forum";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-Mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Diaspora";
$a->strings["GNU Social"] = "GNU Social";
$a->strings["App.net"] = "App.net";
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
$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["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> 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 <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Groups"] = "Gruppen";
$a->strings["Edit groups"] = "Gruppen bearbeiten";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["add"] = "hinzufügen";
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$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["default"] = "Standard";
$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["Profile Photos"] = "Profilbilder";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
$a->strings["Registration at %s"] = "Registrierung als %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"] = "\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["Registration details for %s"] = "Details der Registration von %s";
$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["General Features"] = "Allgemeine Features";
$a->strings["Multiple Profiles"] = "Mehrere Profile";
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
$a->strings["Photo Location"] = "Aufnahmeort";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
$a->strings["Richtext Editor"] = "Web-Editor";
$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
$a->strings["Post Preview"] = "Beitragsvorschau";
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde.";
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
$a->strings["Search by Date"] = "Archiv";
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
$a->strings["List Forums"] = "Zeige Foren";
$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
$a->strings["Group Filter"] = "Gruppen Filter";
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
$a->strings["Network Filter"] = "Netzwerk Filter";
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
$a->strings["Network Tabs"] = "Netzwerk Reiter";
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
$a->strings["Tagging"] = "Tagging";
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
$a->strings["Post Categories"] = "Beitragskategorien";
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
$a->strings["Star Posts"] = "Beiträge Markieren";
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
$a->strings["Nothing new here"] = "Keine Neuigkeiten";
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
$a->strings["Logout"] = "Abmelden";
$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";
@ -603,19 +682,14 @@ $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["Login"] = "Anmeldung";
$a->strings["Sign in"] = "Anmelden";
$a->strings["Home Page"] = "Homepage";
$a->strings["Register"] = "Registrieren";
$a->strings["Create an account"] = "Nutzerkonto erstellen";
$a->strings["Help"] = "Hilfe";
$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
$a->strings["Apps"] = "Apps";
$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
$a->strings["Search"] = "Suche";
$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
$a->strings["Full Text"] = "Volltext";
$a->strings["Tags"] = "Tags";
$a->strings["Community"] = "Gemeinschaft";
$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
@ -648,78 +722,33 @@ $a->strings["Admin"] = "Administration";
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
$a->strings["Navigation"] = "Navigation";
$a->strings["Site map"] = "Sitemap";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["Contact Photos"] = "Kontaktbilder";
$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["newer"] = "neuer";
$a->strings["older"] = "älter";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "erste";
$a->strings["last"] = "letzte";
$a->strings["next"] = "nächste";
$a->strings["Loading more entries..."] = "lade weitere Einträge...";
$a->strings["The end"] = "Das Ende";
$a->strings["No contacts"] = "Keine Kontakte";
$a->strings["%d Contact"] = array(
0 => "%d Kontakt",
1 => "%d Kontakte",
);
$a->strings["View Contacts"] = "Kontakte anzeigen";
$a->strings["Save"] = "Speichern";
$a->strings["poke"] = "anstupsen";
$a->strings["poked"] = "stupste";
$a->strings["ping"] = "anpingen";
$a->strings["pinged"] = "pingte";
$a->strings["prod"] = "knuffen";
$a->strings["prodded"] = "knuffte";
$a->strings["slap"] = "ohrfeigen";
$a->strings["slapped"] = "ohrfeigte";
$a->strings["finger"] = "befummeln";
$a->strings["fingered"] = "befummelte";
$a->strings["rebuff"] = "eine Abfuhr erteilen";
$a->strings["rebuffed"] = "abfuhrerteilte";
$a->strings["happy"] = "glücklich";
$a->strings["sad"] = "traurig";
$a->strings["mellow"] = "sanft";
$a->strings["tired"] = "müde";
$a->strings["perky"] = "frech";
$a->strings["angry"] = "sauer";
$a->strings["stupified"] = "verblüfft";
$a->strings["puzzled"] = "verwirrt";
$a->strings["interested"] = "interessiert";
$a->strings["bitter"] = "verbittert";
$a->strings["cheerful"] = "fröhlich";
$a->strings["alive"] = "lebendig";
$a->strings["annoyed"] = "verärgert";
$a->strings["anxious"] = "unruhig";
$a->strings["cranky"] = "schrullig";
$a->strings["disturbed"] = "verstört";
$a->strings["frustrated"] = "frustriert";
$a->strings["motivated"] = "motiviert";
$a->strings["relaxed"] = "entspannt";
$a->strings["surprised"] = "überrascht";
$a->strings["View Video"] = "Video ansehen";
$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["activity"] = "Aktivität";
$a->strings["comment"] = array(
0 => "Kommentar",
1 => "Kommentare",
);
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Drop Contact"] = "Kontakt löschen";
$a->strings["Organisation"] = "Organisation";
$a->strings["News"] = "Nachrichten";
$a->strings["Forum"] = "Forum";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["show"] = "zeigen";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["Permissions"] = "Berechtigungen";
$a->strings["Close"] = "Schließen";
$a->strings["[no subject]"] = "[kein Betreff]";
$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["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
$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["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["People Search - %s"] = "Personensuche - %s";
$a->strings["Forum Search - %s"] = "Forensuche - %s";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["Welcome to %s"] = "Willkommen zu %s";
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
@ -732,13 +761,59 @@ $a->strings["Only one search per minute is permitted for not logged in users."]
$a->strings["No results."] = "Keine Ergebnisse.";
$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
$a->strings["Results for: %s"] = "Ergebnisse für: %s";
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$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: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" 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:";
$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: "] = "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:";
$a->strings["Friend"] = "Kontakt";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Fan/Admirer"] = "Fan/Verehrer";
$a->strings["Profile URL"] = "Profil URL";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["Show unread"] = "Ungelesene anzeigen";
$a->strings["Show all"] = "Alle anzeigen";
$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
$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["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["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 <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, 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["the bugtracker at github"] = "den 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["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
$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.";
@ -746,7 +821,6 @@ $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s
$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";
@ -757,18 +831,41 @@ $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Locati
$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["No profile"] = "Kein Profil";
$a->strings["Help:"] = "Hilfe:";
$a->strings["Not Found"] = "Nicht gefunden";
$a->strings["Page not found."] = "Seite nicht gefunden.";
$a->strings["Invalid request."] = "Ungültige Anfrage";
$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["Image upload failed."] = "Hochladen des Bildes gescheitert.";
$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["Submit"] = "Senden";
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
$a->strings["Visible to:"] = "Sichtbar für:";
$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["View"] = "Ansehen";
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["Previous"] = "Vorherige";
$a->strings["Next"] = "Nächste";
$a->strings["list"] = "Liste";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Required"] = "Benötigt";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Results for:"] = "Ergebnisse für:";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$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["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.";
@ -782,6 +879,9 @@ $a->strings["To export your account, go to \"Settings->Export your personal data
$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["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["Profile Match"] = "Profilübereinstimmungen";
$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";
@ -808,170 +908,16 @@ $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"] = "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["Submit"] = "Senden";
$a->strings["Files"] = "Dateien";
$a->strings["Permission denied"] = "Zugriff verweigert";
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
$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["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["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["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
$a->strings["Error"] = "Fehler";
$a->strings["Done"] = "Erledigt";
$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge.";
$a->strings["Credits"] = "Credits";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
$a->strings["- select -"] = "- auswählen -";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
$a->strings["Does %s know you?"] = "Kennt %s Dich?";
$a->strings["No"] = "Nein";
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
$a->strings["Profile URL"] = "Profil URL";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$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["Not Extended"] = "Nicht erweitert.";
$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 <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> 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 <em>Settings</em> 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 <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
$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 Kontakte und potentiellen Kontakte 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 Kontakte 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 <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste 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["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 Kontakten 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 <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> 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 <em>Connect</em> or <em>Follow</em> 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 <em>Verbinden</em> oder <em>Folgen</em> 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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte 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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
$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["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
$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 Kontaktgruppe anlegen.";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Members"] = "Mitglieder";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
$a->strings["Message sent."] = "Nachricht gesendet.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["link"] = "Link";
$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["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
$a->strings["Source input: "] = "Originaltext:";
$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
$a->strings["success"] = "Erfolg";
$a->strings["failed"] = "Fehlgeschlagen";
$a->strings["ignored"] = "Ignoriert";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
$a->strings["Message deleted."] = "Nachricht gelöscht.";
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
$a->strings["No messages."] = "Keine Nachrichten.";
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
$a->strings["Delete message"] = "Nachricht löschen";
$a->strings["Delete conversation"] = "Unterhaltung löschen";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
$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["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["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 contacts."] = "Keine Kontakte.";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
$a->strings["No mirroring"] = "Kein Spiegeln";
@ -991,226 +937,13 @@ $a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen
$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["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 Kontaktanfragen 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["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 in Kontakt stehst.";
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. ";
$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 <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> 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, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
$a->strings["Friend/Connection Request"] = "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["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["No such group"] = "Es gibt keine solche Gruppe";
$a->strings["Group: %s"] = "Gruppe: %s";
$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
);
$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["ignore thread"] = "Thread ignorieren";
$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["save to folder"] = "In Ordner speichern";
$a->strings["I will attend"] = "Ich werde teilnehmen";
$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
$a->strings["to"] = "zu";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$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["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["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["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
$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["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["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["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["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$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: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" 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:";
$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: "] = "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:";
$a->strings["Friend"] = "Kontakt";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Fan/Admirer"] = "Fan/Verehrer";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["Show unread"] = "Ungelesene anzeigen";
$a->strings["Show all"] = "Alle anzeigen";
$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["XMPP"] = "XMPP";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
$a->strings["Profile Actions"] = "Profilaktionen";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Basic information"] = "Grundinformationen";
$a->strings["Profile picture"] = "Profilbild";
$a->strings["Preferences"] = "Vorlieben";
$a->strings["Status information"] = "Status Informationen";
$a->strings["Additional information"] = "Zusätzliche Informationen";
$a->strings["Relation"] = "Beziehung";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["Required"] = "Benötigt";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Bücher, Literatur";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Love/romance"] = "Liebe/Romantik";
$a->strings["Work/employment"] = "Arbeit/Anstellung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
$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["{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["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
$a->strings["Site"] = "Seite";
$a->strings["Users"] = "Nutzer";
@ -1227,6 +960,7 @@ $a->strings["check webfinger"] = "Webfinger überprüfen";
$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["unknown"] = "Unbekannt";
$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt.";
$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern.";
$a->strings["Administration"] = "Administration";
@ -1237,6 +971,8 @@ $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["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest.";
$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist.";
$a->strings["Normal Account"] = "Normales Konto";
$a->strings["Soapbox Account"] = "Marktschreier-Konto";
$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
@ -1433,6 +1169,8 @@ $a->strings["Don't use 'proc_open' with the worker"] = "'proc_open' nicht mit de
$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen.";
$a->strings["Enable fastlane"] = "Aktiviere Fastlane";
$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden.";
$a->strings["Enable frontend worker"] = "Aktiviere den Frontend Worker";
$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein.";
$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";
@ -1469,6 +1207,7 @@ $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf
$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
$a->strings["Request date"] = "Anfragedatum";
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
$a->strings["Note from the user"] = "Hinweis vom Nutzer";
$a->strings["Deny"] = "Verwehren";
$a->strings["Block"] = "Sperren";
$a->strings["Unblock"] = "Entsperren";
@ -1511,119 +1250,202 @@ $a->strings["Off"] = "Aus";
$a->strings["On"] = "An";
$a->strings["Lock feature %s"] = "Feature festlegen: %s";
$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
$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["No friends to display."] = "Keine Kontakte zum Anzeigen.";
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
$a->strings["View"] = "Ansehen";
$a->strings["Previous"] = "Vorherige";
$a->strings["Next"] = "Nächste";
$a->strings["list"] = "Liste";
$a->strings["User not found"] = "Nutzer nicht gefunden";
$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
$a->strings["calendar"] = "Kalender";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["Common Friends"] = "Gemeinsame Kontakte";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["%d contact edited."] = array(
0 => "%d Kontakt bearbeitet.",
1 => "%d Kontakte bearbeitet.",
$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["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
);
$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["Drop contact"] = "Kontakt löschen";
$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["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
$a->strings["Fetch information"] = "Beziehe Information";
$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
$a->strings["Contact"] = "Kontakt: ";
$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["Last update:"] = "Letzte Aktualisierung: ";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Unignore"] = "Ignorieren aufheben";
$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 <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> 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["Actions"] = "Aktionen";
$a->strings["Contact Settings"] = "Kontakteinstellungen";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["Update"] = "Aktualisierungen";
$a->strings["Archive"] = "Archivieren";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Batch Actions"] = "Stapelverarbeitung";
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$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["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Results for:"] = "Ergebnisse für:";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$a->strings["People Search - %s"] = "Personensuche - %s";
$a->strings["Forum Search - %s"] = "Forensuche - %s";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$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["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$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["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["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["save to folder"] = "In Ordner speichern";
$a->strings["I will attend"] = "Ich werde teilnehmen";
$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
$a->strings["to"] = "zu";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
$a->strings["Error"] = "Fehler";
$a->strings["Done"] = "Erledigt";
$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge.";
$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 Album"] = "Album betrachten";
$a->strings["Recent Videos"] = "Neueste Videos";
$a->strings["Upload New Videos"] = "Neues Video hochladen";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["XMPP"] = "XMPP";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
$a->strings["No"] = "Nein";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
$a->strings["Profile Actions"] = "Profilaktionen";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Basic information"] = "Grundinformationen";
$a->strings["Profile picture"] = "Profilbild";
$a->strings["Preferences"] = "Vorlieben";
$a->strings["Status information"] = "Status Informationen";
$a->strings["Additional information"] = "Zusätzliche Informationen";
$a->strings["Relation"] = "Beziehung";
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Bücher, Literatur";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Love/romance"] = "Liebe/Romantik";
$a->strings["Work/employment"] = "Arbeit/Anstellung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
$a->strings["Credits"] = "Credits";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
$a->strings["- select -"] = "- auswählen -";
$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["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["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["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["Map"] = "Karte";
$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.";
@ -1699,22 +1521,151 @@ $a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
$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["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
$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["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["System down for maintenance"] = "System zur Wartung abgeschaltet";
$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["Profile Match"] = "Profilübereinstimmungen";
$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["%d contact edited."] = array(
0 => "%d Kontakt bearbeitet.",
1 => "%d Kontakte bearbeitet.",
);
$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["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Drop contact"] = "Kontakt löschen";
$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["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
$a->strings["Fetch information"] = "Beziehe Information";
$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
$a->strings["Contact"] = "Kontakt: ";
$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["Last update:"] = "Letzte Aktualisierung: ";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Unignore"] = "Ignorieren aufheben";
$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 <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> 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["Actions"] = "Aktionen";
$a->strings["Contact Settings"] = "Kontakteinstellungen";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Kontakte 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["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["Update"] = "Aktualisierungen";
$a->strings["Archive"] = "Archivieren";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Batch Actions"] = "Stapelverarbeitung";
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Common Friends"] = "Gemeinsame Kontakte";
$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$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["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
$a->strings["Does %s know you?"] = "Kennt %s Dich?";
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["Applications"] = "Anwendungen";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
$a->strings["Not Extended"] = "Nicht erweitert.";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$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 <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> 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 <em>Settings</em> 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 <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
$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 Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte 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 <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Kontaktliste 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["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 Kontakten 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 <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> 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 <em>Connect</em> or <em>Follow</em> 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 <em>Verbinden</em> oder <em>Folgen</em> 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 Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte 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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
$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["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
$a->strings["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
);
$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
$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["Commented Order"] = "Neueste Kommentare";
@ -1728,56 +1679,72 @@ $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["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["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["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["Map"] = "Karte";
$a->strings["View Album"] = "Album betrachten";
$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["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
$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 Kontaktgruppe anlegen.";
$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["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 Kontaktanfragen 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["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 in Kontakt stehst.";
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. ";
$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 <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> 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, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
$a->strings["Friend/Connection Request"] = "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["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["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["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["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:<br> login: %s<br> password: %s<br><br>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["Registration successful."] = "Registrierung erfolgreich.";
@ -1787,6 +1754,8 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your
$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["Note for the admin"] = "Hinweis für den Admin";
$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
$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, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
@ -1797,16 +1766,6 @@ $a->strings["Confirm:"] = "Bestätigen:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$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["No contacts."] = "Keine Kontakte.";
$a->strings["Display"] = "Anzeige";
$a->strings["Social Networks"] = "Soziale Netzwerke";
$a->strings["Connected apps"] = "Verbundene Programme";
@ -1872,6 +1831,8 @@ $a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
$a->strings["Display Theme:"] = "Theme:";
$a->strings["Mobile Theme:"] = "Mobiles Theme";
$a->strings["Suppress warning of insecure networks"] = "Warnung wegen unsicheren Netzwerken unterdrücken";
$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können.";
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten.";
$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
@ -1976,6 +1937,70 @@ $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["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
$a->strings["Message sent."] = "Nachricht gesendet.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["link"] = "Link";
$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["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
$a->strings["Source input: "] = "Originaltext:";
$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["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["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
$a->strings["success"] = "Erfolg";
$a->strings["failed"] = "Fehlgeschlagen";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
$a->strings["Message deleted."] = "Nachricht gelöscht.";
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
$a->strings["No messages."] = "Keine Nachrichten.";
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
$a->strings["Delete message"] = "Nachricht löschen";
$a->strings["Delete conversation"] = "Unterhaltung löschen";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
$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["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["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["via"] = "via";
$a->strings["Repeat the image"] = "Bild wiederholen";
$a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
@ -1985,6 +2010,8 @@ $a->strings["Resize fill and-clip"] = "Größe anpassen - Ausfüllen und abschne
$a->strings["Resize to fill and retain aspect ratio."] = "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten";
$a->strings["Resize best fit"] = "Größe anpassen - Optimale Größe";
$a->strings["Resize to best fit and retain aspect ratio."] = "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten";
$a->strings["Guest"] = "Gast";
$a->strings["Visitor"] = "Besucher";
$a->strings["Default"] = "Standard";
$a->strings["Note: "] = "Hinweis:";
$a->strings["Check image permissions if all users are allowed to visit the image"] = "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen";
@ -1995,19 +2022,12 @@ $a->strings["Link color"] = "Linkfarbe";
$a->strings["Set the background color"] = "Hintergrundfarbe festlegen";
$a->strings["Content background transparency"] = "Transparanz des Hintergrunds von Beiträgem";
$a->strings["Set the background image"] = "Hintergrundbild festlegen";
$a->strings["Guest"] = "Gast";
$a->strings["Visitor"] = "Besucher";
$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["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 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["Community Profiles"] = "Community-Profile";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Find Friends"] = "Kontakte finden";
@ -2018,18 +2038,6 @@ $a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste d
$a->strings["Set style"] = "Stil auswählen";
$a->strings["Community Pages"] = "Foren";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["Your contacts"] = "Deine Kontakte";
$a->strings["Your personal photos"] = "Deine privaten Fotos";
$a->strings["Last likes"] = "Zuletzt gemocht";
$a->strings["Last photos"] = "Letzte Fotos";
$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["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
$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["greenzero"] = "greenzero";
$a->strings["purplezero"] = "purplezero";
$a->strings["easterbunny"] = "easterbunny";
@ -2037,16 +2045,3 @@ $a->strings["darkzero"] = "darkzero";
$a->strings["comix"] = "comix";
$a->strings["slackr"] = "slackr";
$a->strings["Variations"] = "Variationen";
$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
$a->strings["show fewer"] = "weniger anzeigen";
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
$a->strings["Create a New Account"] = "Neues Konto erstellen";
$a->strings["Password: "] = "Passwort: ";
$a->strings["Remember me"] = "Anmeldedaten merken";
$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
$a->strings["Forgot your password?"] = "Passwort vergessen?";
$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
$a->strings["terms of service"] = "Nutzungsbedingungen";
$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
$a->strings["privacy policy"] = "Datenschutzerklärung";

View file

@ -3,7 +3,8 @@
# This file is distributed under the same license as the Friendica package.
#
# Translators:
# Alberto Díaz Tormo <albertodiaztormo@gmail.com>, 2016
# Albert, 2016
# Albert, 2016
# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2011
# Manuel Pérez <mpmonis@gmail.com>, 2011
# Carlos Solís <csolisr@gmail.com>, 2012
@ -34,9 +35,9 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-06 16:00+0100\n"
"PO-Revision-Date: 2016-11-08 16:20+0000\n"
"Last-Translator: Alberto Díaz Tormo <albertodiaztormo@gmail.com>\n"
"POT-Creation-Date: 2016-12-06 08:42+0100\n"
"PO-Revision-Date: 2016-12-07 12:42+0000\n"
"Last-Translator: Albert\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"
@ -44,1593 +45,86 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Añadir nuevo contacto"
#: boot.php:970
msgid "Delete this item?"
msgstr "¿Eliminar este elemento?"
#: include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Escribe la dirección o página web"
#: boot.php:971 mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719
msgid "Comment"
msgstr "Comentar"
#: 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:10 include/identity.php:218
#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
#: mod/suggest.php:101
msgid "Connect"
msgstr "Conectar"
#: 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
msgid "Find People"
msgstr "Buscar personas"
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr "Introduzce nombre o intereses"
#: include/contact_widgets.php:32 include/Contact.php:325
#: include/conversation.php:981 mod/follow.php:103 mod/allfriends.php:66
#: mod/contacts.php:602 mod/dirfind.php:204 mod/match.php:72
#: mod/suggest.php:83
msgid "Connect/Follow"
msgstr "Conectar/Seguir"
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Ejemplos: Robert Morgenstein, Pesca"
#: include/contact_widgets.php:34 mod/contacts.php:798 mod/directory.php:204
msgid "Find"
msgstr "Buscar"
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527
msgid "Friend Suggestions"
msgstr "Sugerencias de amigos"
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
#: view/theme/diabook/theme.php:526
msgid "Similar Interests"
msgstr "Intereses similares"
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr "Perfil aleatorio"
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
#: view/theme/diabook/theme.php:528
msgid "Invite Friends"
msgstr "Invitar amigos"
#: include/contact_widgets.php:108
msgid "Networks"
msgstr "Redes"
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr "Todas las redes"
#: include/contact_widgets.php:141 include/features.php:103
msgid "Saved Folders"
msgstr "Directorios guardados"
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr "Todo"
#: include/contact_widgets.php:173
msgid "Categories"
msgstr "Categorías"
#: include/contact_widgets.php:237
#, 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"
#: include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2188 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260 boot.php:970
#: boot.php:972 include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2241 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260
msgid "show more"
msgstr "ver más"
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
#: view/theme/vier/theme.php:255
msgid "Forums"
msgstr "Foros"
#: boot.php:973
msgid "show fewer"
msgstr "ver menos"
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr "Enlace externo al foro"
#: include/profile_selectors.php:6
msgid "Male"
msgstr "Hombre"
#: include/profile_selectors.php:6
msgid "Female"
msgstr "Mujer"
#: include/profile_selectors.php:6
msgid "Currently Male"
msgstr "Actualmente Hombre"
#: include/profile_selectors.php:6
msgid "Currently Female"
msgstr "Actualmente Mujer"
#: include/profile_selectors.php:6
msgid "Mostly Male"
msgstr "Mayormente Hombre"
#: include/profile_selectors.php:6
msgid "Mostly Female"
msgstr "Mayormente Mujer"
#: include/profile_selectors.php:6
msgid "Transgender"
msgstr "Transgenérico"
#: include/profile_selectors.php:6
msgid "Intersex"
msgstr "Bisexual"
#: include/profile_selectors.php:6
msgid "Transsexual"
msgstr "Transexual"
#: include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr "Hermafrodita"
#: include/profile_selectors.php:6
msgid "Neuter"
msgstr "Neutro"
#: include/profile_selectors.php:6
msgid "Non-specific"
msgstr "Sin especificar"
#: include/profile_selectors.php:6
msgid "Other"
msgstr "Otro"
#: include/profile_selectors.php:6 include/conversation.php:1483
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Indeciso"
msgstr[1] "Indeciso"
#: include/profile_selectors.php:23
msgid "Males"
msgstr "Hombres"
#: include/profile_selectors.php:23
msgid "Females"
msgstr "Mujeres"
#: include/profile_selectors.php:23
msgid "Gay"
msgstr "Gay"
#: include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbiana"
#: include/profile_selectors.php:23
msgid "No Preference"
msgstr "Sin preferencias"
#: include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bisexual"
#: include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autosexual"
#: include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Célibe"
#: include/profile_selectors.php:23
msgid "Virgin"
msgstr "Virgen"
#: include/profile_selectors.php:23
msgid "Deviant"
msgstr "Desviado"
#: include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetichista"
#: include/profile_selectors.php:23
msgid "Oodles"
msgstr "Orgiástico"
#: include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Asexual"
#: include/profile_selectors.php:42
msgid "Single"
msgstr "Soltero"
#: include/profile_selectors.php:42
msgid "Lonely"
msgstr "Solitario"
#: include/profile_selectors.php:42
msgid "Available"
msgstr "Disponible"
#: include/profile_selectors.php:42
msgid "Unavailable"
msgstr "No disponible"
#: include/profile_selectors.php:42
msgid "Has crush"
msgstr "Enamorado"
#: include/profile_selectors.php:42
msgid "Infatuated"
msgstr "Loco/a por alguien"
#: include/profile_selectors.php:42
msgid "Dating"
msgstr "De citas"
#: include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Infiel"
#: include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Adicto al sexo"
#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
msgid "Friends"
msgstr "Amigos"
#: include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Amigos con beneficios"
#: include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
#: include/profile_selectors.php:42
msgid "Engaged"
msgstr "Comprometido/a"
#: include/profile_selectors.php:42
msgid "Married"
msgstr "Casado/a"
#: include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr "Casado imaginario"
#: include/profile_selectors.php:42
msgid "Partners"
msgstr "Socios"
#: include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "Cohabitando"
#: include/profile_selectors.php:42
msgid "Common law"
msgstr "Pareja de hecho"
#: include/profile_selectors.php:42
msgid "Happy"
msgstr "Feliz"
#: include/profile_selectors.php:42
msgid "Not looking"
msgstr "No busca relación"
#: include/profile_selectors.php:42
msgid "Swinger"
msgstr "Swinger"
#: include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Traicionado/a"
#: include/profile_selectors.php:42
msgid "Separated"
msgstr "Separado/a"
#: include/profile_selectors.php:42
msgid "Unstable"
msgstr "Inestable"
#: include/profile_selectors.php:42
msgid "Divorced"
msgstr "Divorciado/a"
#: include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr "Divorciado imaginario"
#: include/profile_selectors.php:42
msgid "Widowed"
msgstr "Viudo/a"
#: include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Incierto"
#: include/profile_selectors.php:42
msgid "It's complicated"
msgstr "Es complicado"
#: include/profile_selectors.php:42
msgid "Don't care"
msgstr "No te importa"
#: include/profile_selectors.php:42
msgid "Ask me"
msgstr "Pregúntame"
#: include/bb2diaspora.php:148 include/event.php:16 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
#: include/bb2diaspora.php:154 include/event.php:33 include/event.php:51
#: include/event.php:487
msgid "Starts:"
msgstr "Inicio:"
#: include/bb2diaspora.php:162 include/event.php:36 include/event.php:57
#: include/event.php:488
msgid "Finishes:"
msgstr "Final:"
#: include/bb2diaspora.php:170 include/event.php:39 include/event.php:63
#: include/event.php:489 include/identity.php:328 mod/notifications.php:232
#: mod/contacts.php:628 mod/directory.php:137 mod/events.php:494
msgid "Location:"
msgstr "Localización:"
#: include/dba_pdo.php:72 include/dba.php:56
#: boot.php:1655
#, 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'"
msgid "Update %s failed. See error logs."
msgstr "Falló la actualización de %s. Mira los registros de errores."
#: include/auth.php:45
msgid "Logged out."
msgstr "Sesión finalizada"
#: boot.php:1767
msgid "Create a New Account"
msgstr "Crear una nueva cuenta"
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
msgid "Login failed."
msgstr "Accesso fallido."
#: boot.php:1768 include/nav.php:109 mod/register.php:289
msgid "Register"
msgstr "Registrarse"
#: include/auth.php:132 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."
#: boot.php:1792 include/nav.php:78 view/theme/frio/theme.php:246
msgid "Logout"
msgstr "Salir"
#: include/auth.php:132 include/user.php:75
msgid "The error message was:"
msgstr "El mensaje del error fue:"
#: boot.php:1793 include/nav.php:95 mod/bookmarklet.php:12
msgid "Login"
msgstr "Acceder"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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 <strong>pueden</strong> 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."
#: boot.php:1795 mod/lostpass.php:161
msgid "Nickname or Email: "
msgstr "Apodo o Correo electrónico: "
#: include/group.php:209
msgid "Default privacy group for new contacts"
msgstr "Grupo por defecto para nuevos contactos"
#: boot.php:1796
msgid "Password: "
msgstr "Contraseña: "
#: include/group.php:242
msgid "Everybody"
msgstr "Todo el mundo"
#: boot.php:1797
msgid "Remember me"
msgstr "Recordarme"
#: include/group.php:265
msgid "edit"
msgstr "editar"
#: boot.php:1800
msgid "Or login using OpenID: "
msgstr "O inicia sesión usando OpenID: "
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr "Grupos"
#: boot.php:1806
msgid "Forgot your password?"
msgstr "¿Olvidaste la contraseña?"
#: include/group.php:288
msgid "Edit groups"
msgstr "Editar grupo"
#: boot.php:1807 mod/lostpass.php:109
msgid "Password Reset"
msgstr "Restablecer la contraseña"
#: include/group.php:290
msgid "Edit group"
msgstr "Editar grupo"
#: boot.php:1809
msgid "Website Terms of Service"
msgstr "Términos de uso del sitio"
#: include/group.php:291
msgid "Create a new group"
msgstr "Crear un nuevo grupo"
#: boot.php:1810
msgid "terms of service"
msgstr "Términos de uso"
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr "Nombre del grupo: "
#: boot.php:1812
msgid "Website Privacy Policy"
msgstr "Política de privacidad del sitio"
#: include/group.php:294
msgid "Contacts not in any group"
msgstr "Contactos sin grupo"
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr "añadir"
#: include/user.php:39 mod/settings.php:371
msgid "Passwords do not match. Password unchanged."
msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada."
#: include/user.php:48
msgid "An invitation is required."
msgstr "Se necesita invitación."
#: include/user.php:53
msgid "Invitation could not be verified."
msgstr "No se puede verificar la invitación."
#: include/user.php:61
msgid "Invalid OpenID url"
msgstr "Dirección OpenID no válida"
#: include/user.php:82
msgid "Please enter the required information."
msgstr "Por favor, introduce la información necesaria."
#: include/user.php:96
msgid "Please use a shorter name."
msgstr "Por favor, usa un nombre más corto."
#: include/user.php:98
msgid "Name too short."
msgstr "El nombre es demasiado corto."
#: 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: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:121
msgid "Not a valid email address."
msgstr "No es una dirección de correo electrónico válida."
#: include/user.php:134
msgid "Cannot use that email."
msgstr "No se puede utilizar este correo electrónico."
#: 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:147 include/user.php:245
msgid "Nickname is already registered. Please choose another."
msgstr "Apodo ya registrado. Por favor, elije otro."
#: include/user.php:157
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:173
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado."
#: include/user.php:231
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:256 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr "predeterminado"
#: include/user.php:266
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:345 include/user.php:352 include/user.php:359
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: mod/profile_photo.php:210 mod/profile_photo.php:302
#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
#: mod/photos.php:1819 view/theme/diabook/theme.php:500
msgid "Profile Photos"
msgstr "Foto del perfil"
#: include/user.php:387
#, 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\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t"
#: include/user.php:391
#, 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\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/user.php:423 mod/admin.php:1184
#, php-format
msgid "Registration details for %s"
msgstr "Detalles de registro para %s"
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Desconocido | No clasificado"
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Bloquear inmediatamente"
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Sospechoso, spammer, auto-publicidad"
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Le conozco, sin opinión"
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "OK, probablemente inofensivo"
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Buena reputación, tiene mi confianza"
#: include/contact_selectors.php:56 mod/admin.php:862
msgid "Frequently"
msgstr "Frequentemente"
#: include/contact_selectors.php:57 mod/admin.php:863
msgid "Hourly"
msgstr "Cada hora"
#: include/contact_selectors.php:58 mod/admin.php:864
msgid "Twice daily"
msgstr "Dos veces al día"
#: include/contact_selectors.php:59 mod/admin.php:865
msgid "Daily"
msgstr "Diariamente"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Semanalmente"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Mensualmente"
#: include/contact_selectors.php:76 mod/dfrn_request.php:867
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:1367 mod/admin.php:1380 mod/admin.php:1392 mod/admin.php:1410
msgid "Email"
msgstr "Correo electrónico"
#: include/contact_selectors.php:80 mod/dfrn_request.php:869
#: mod/settings.php:840
msgid "Diaspora"
msgstr "Diaspora*"
#: include/contact_selectors.php:81
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 "Conector Diaspora"
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr "GNUsocial (OStatus)"
#: include/contact_selectors.php:92
msgid "App.net"
msgstr "App.net"
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr "Hubzilla/Redmatrix"
#: include/network.php:595
msgid "view full size"
msgstr "Ver a tamaño completo"
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr "Publicar mediante correo electrónico"
#: include/acl_selectors.php:332
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado."
#: include/acl_selectors.php:333 mod/settings.php:1176
msgid "Hide your profile details from unknown viewers?"
msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr "Visible para cualquiera"
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
msgid "show"
msgstr "mostrar"
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
msgid "don't show"
msgstr "no mostrar"
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr "CC: dirección de correo electrónico"
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr "Permisos"
#: include/acl_selectors.php:350
msgid "Close"
msgstr "Cerrado"
#: include/like.php:163 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1808 mod/subthread.php:87
#: mod/tagger.php:62 view/theme/diabook/theme.php:471
msgid "photo"
msgstr "foto"
#: include/like.php:163 include/diaspora.php:1402 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
msgid "status"
msgstr "estado"
#: include/like.php:165 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1806
#: view/theme/diabook/theme.php:463
msgid "event"
msgstr "evento"
#: include/like.php:182 include/diaspora.php:1398 include/conversation.php:141
#: 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"
#: include/like.php:184 include/conversation.php:144
#, 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"
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr "%1$s atenderá %2$s's %3$s"
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr "%1$s no atenderá %2$s's %3$s"
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr "%1$s puede que atienda %2$s's %3$s"
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[sin asunto]"
#: include/message.php:145 include/Photo.php:1045 include/Photo.php:1061
#: include/Photo.php:1069 include/Photo.php:1094 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
msgid "Wall Photos"
msgstr "Foto del Muro"
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr "Pulsa aquí para actualizar."
#: include/plugin.php:534
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:539
msgid "This action is not available under your subscription plan."
msgstr "Esta acción no está permitida para tu subscripción."
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr "Error decodificando el archivo de cuenta"
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
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
msgid "Error! Cannot check nickname"
msgstr "Error! No puedo consultar el apodo"
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "La cuenta '%s' ya existe en este servidor!"
#: include/uimport.php:153
msgid "User creation error"
msgstr "Error al crear la cuenta"
#: include/uimport.php:173
msgid "User profile creation error"
msgstr "Error de creación del perfil de la cuenta"
#: include/uimport.php:222
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d contactos no encontrado"
msgstr[1] "%d contactos no importado"
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."
#: include/NotificationsManager.php:153
msgid "System"
msgstr "Sistema"
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:402
#: view/theme/frio/theme.php:253
msgid "Network"
msgstr "Red"
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:845
msgid "Personal"
msgstr "Personal"
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161 view/theme/diabook/theme.php:123
msgid "Home"
msgstr "Inicio"
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr "Presentaciones"
#: include/NotificationsManager.php:234 include/NotificationsManager.php:245
#, php-format
msgid "%s commented on %s's post"
msgstr "%s comentó la publicación de %s"
#: include/NotificationsManager.php:244
#, php-format
msgid "%s created a new post"
msgstr "%s creó una nueva publicación"
#: include/NotificationsManager.php:258
#, php-format
msgid "%s liked %s's post"
msgstr "A %s le gusta la publicación de %s"
#: include/NotificationsManager.php:269
#, php-format
msgid "%s disliked %s's post"
msgstr "A %s no le gusta la publicación de %s"
#: include/NotificationsManager.php:280
#, php-format
msgid "%s is attending %s's event"
msgstr "%s está asistiendo al evento %s's"
#: include/NotificationsManager.php:291
#, php-format
msgid "%s is not attending %s's event"
msgstr "%s no está asistiendo al evento %s's"
#: include/NotificationsManager.php:302
#, php-format
msgid "%s may attend %s's event"
msgstr "%s podría asistir al evento %s's"
#: include/NotificationsManager.php:317
#, php-format
msgid "%s is now friends with %s"
msgstr "%s es ahora es amigo de %s"
#: include/NotificationsManager.php:750
msgid "Friend Suggestion"
msgstr "Propuestas de amistad"
#: include/NotificationsManager.php:783
msgid "Friend/Connect Request"
msgstr "Solicitud de Amistad/Conexión"
#: include/NotificationsManager.php:783
msgid "New Follower"
msgstr "Nuevo seguidor"
#: include/diaspora.php:1954
msgid "Sharing notification from Diaspora network"
msgstr "Compartir notificaciones con la red Diaspora*"
#: include/diaspora.php:2854
msgid "Attachments:"
msgstr "Archivos adjuntos:"
#: include/features.php:63
msgid "General Features"
msgstr "Opciones generales"
#: include/features.php:65
msgid "Multiple Profiles"
msgstr "Perfiles multiples"
#: include/features.php:65
msgid "Ability to create multiple profiles"
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:66
msgid "Photo Location"
msgstr "Localización foto"
#: include/features.php:66
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa."
#: include/features.php:67
msgid "Export Public Calendar"
msgstr "Exportar Calendario Público"
#: include/features.php:67
msgid "Ability for visitors to download the public calendar"
msgstr "Posibilidad de los visitantes de descargar el calendario público"
#: include/features.php:72
msgid "Post Composition Features"
msgstr "Opciones de edición de publicaciones."
#: include/features.php:73
msgid "Richtext Editor"
msgstr "Editor de texto sofisticado (richt text editor)"
#: include/features.php:73
msgid "Enable richtext editor"
msgstr "Habilitar editor de textos sofisticado"
#: include/features.php:74
msgid "Post Preview"
msgstr "Previsualizar publicaciones"
#: include/features.php:74
msgid "Allow previewing posts and comments before publishing them"
msgstr "Permitir la previsualización de publicaciones antes de publicar las mismas."
#: include/features.php:75
msgid "Auto-mention Forums"
msgstr "Auto-mencionar foros"
#: include/features.php:75
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL."
#: include/features.php:80
msgid "Network Sidebar Widgets"
msgstr "Accesorios de red del panel lateral"
#: include/features.php:81
msgid "Search by Date"
msgstr "Buscar por fecha"
#: include/features.php:81
msgid "Ability to select posts by date ranges"
msgstr "Habilidad de seleccionar publicaciones por fecha"
#: include/features.php:82 include/features.php:112
msgid "List Forums"
msgstr "Listar foros"
#: include/features.php:82
msgid "Enable widget to display the forums your are connected with"
msgstr "Habilitar la pestaña para mostrar los foros en que estas participando."
#: include/features.php:83
msgid "Group Filter"
msgstr "Filtro del grupo"
#: include/features.php:83
msgid "Enable widget to display Network posts only from selected group"
msgstr "Habilitar accesorios para visualizar publicaciones en la red solo de grupos seleccionados"
#: include/features.php:84
msgid "Network Filter"
msgstr "Filtro de red"
#: include/features.php:84
msgid "Enable widget to display Network posts only from selected network"
msgstr "Habilitar accesorios para visualizar publicaciones solo de las redes seleccionadas."
#: include/features.php:85 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr "Búsquedas guardadas"
#: include/features.php:85
msgid "Save search terms for re-use"
msgstr "Guardar términos de búsqueda para su reutilizacion"
#: include/features.php:90
msgid "Network Tabs"
msgstr "Pestañas de redes"
#: include/features.php:91
msgid "Network Personal Tab"
msgstr "Pestaña actividad personal"
#: include/features.php:91
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Habilitar para visualizar solo publicaciones con las que se ha interactuado"
#: include/features.php:92
msgid "Network New Tab"
msgstr "Pestaña nuevo en la red"
#: include/features.php:92
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)"
#: include/features.php:93
msgid "Network Shared Links Tab"
msgstr "Pestaña publicaciones con enlaces"
#: include/features.php:93
msgid "Enable tab to display only Network posts with links in them"
msgstr "Habilitar para visualizar solo publicaciones que contienen enlaces"
#: include/features.php:98
msgid "Post/Comment Tools"
msgstr "Herramienta de publicaciones/respuestas"
#: include/features.php:99
msgid "Multiple Deletion"
msgstr "Borrar múltiples publicaciones"
#: include/features.php:99
msgid "Select and delete multiple posts/comments at once"
msgstr "Habilidad de seleccionar y borrar varias publicaciones/comentarios a la vez"
#: include/features.php:100
msgid "Edit Sent Posts"
msgstr "Editar temas enviados"
#: include/features.php:100
msgid "Edit and correct posts and comments after sending"
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:101
msgid "Tagging"
msgstr "taggear"
#: include/features.php:101
msgid "Ability to tag existing posts"
msgstr "Habilidad de taggear publicaciones existentes"
#: include/features.php:102
msgid "Post Categories"
msgstr "Categorías de publicaciones"
#: include/features.php:102
msgid "Add categories to your posts"
msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio."
#: include/features.php:103
msgid "Ability to file posts under folders"
msgstr "Archivar publicaciones en carpetas"
#: include/features.php:104
msgid "Dislike Posts"
msgstr "Desaprobar publicación (dislike)"
#: include/features.php:104
msgid "Ability to dislike posts/comments"
msgstr "Habilidad de expresar desacuerdo en publicaciones y comentarios. Esta función solo es visualizado en la red friendica."
#: include/features.php:105
msgid "Star Posts"
msgstr "Fijar publicaciones"
#: include/features.php:105
msgid "Ability to mark special posts with a star indicator"
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:106
msgid "Mute Post Notifications"
msgstr "Silenciar notificaciones de una publicacion"
#: include/features.php:106
msgid "Ability to mute notifications for a thread"
msgstr "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación."
#: include/features.php:111
msgid "Advanced Profile Settings"
msgstr "Ajustes avanzados del perfil"
#: include/features.php:112
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."
#: include/delivery.php:439
msgid "(no subject)"
msgstr "(sin asunto)"
#: include/delivery.php:450 include/enotify.php:43
msgid "noreply"
msgstr "no responder"
#: include/Contact.php:119
msgid "stopped following"
msgstr "dejó de seguir"
#: include/Contact.php:311 include/Contact.php:324 include/Contact.php:369
#: include/conversation.php:968 include/conversation.php:984
#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
#: mod/match.php:71 mod/suggest.php:82
msgid "View Profile"
msgstr "Ver perfil"
#: include/Contact.php:368 include/conversation.php:967
msgid "View Status"
msgstr "Ver estado"
#: include/Contact.php:370 include/conversation.php:969
msgid "View Photos"
msgstr "Ver fotos"
#: include/Contact.php:371 include/conversation.php:970
msgid "Network Posts"
msgstr "Publicaciones en la red"
#: include/Contact.php:372 include/conversation.php:971
msgid "View Contact"
msgstr "Ver contacto"
#: include/Contact.php:373
msgid "Drop Contact"
msgstr "Eliminar contacto"
#: include/Contact.php:374 include/conversation.php:972
msgid "Send PM"
msgstr "Enviar mensaje privado"
#: include/Contact.php:375 include/conversation.php:976
msgid "Poke"
msgstr "Toque"
#: include/Contact.php:748
msgid "Organisation"
msgstr "Organización"
#: include/Contact.php:751
msgid "News"
msgstr "Noticias"
#: include/Contact.php:754
msgid "Forum"
msgstr "Foro"
#: include/api.php:1019
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."
#: include/api.php:1039
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."
#: include/api.php:1060
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."
#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr "Imagen/Foto"
#: include/bbcode.php:465
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr "$1 escribió:"
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr "Contenido cifrado"
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr "%1$s atenderá %2$s's %3$s"
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr "%1$s no atenderá %2$s's %3$s"
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr "%1$s atenderá quizás %2$s's %3$s"
#: include/conversation.php:185 mod/dfrn_confirm.php:473
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ahora es amigo de %2$s"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s le dio un toque a %2$s"
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s está actualmente %2$s"
#: include/conversation.php:278 mod/tagger.php:95
#, 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"
#: include/conversation.php:303
msgid "post/item"
msgstr "publicación/tema"
#: include/conversation.php:304
#, 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:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr "Me gusta"
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr "No me gusta"
#: include/conversation.php:586 include/conversation.php:1477
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Atendiendo"
msgstr[1] "Atendiendo"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr "No atendiendo"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr "Puede que atienda"
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr "Seleccionar"
#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
#: mod/content.php:759 mod/admin.php:1384 mod/contacts.php:808
#: mod/contacts.php:1016 mod/photos.php:1682 mod/settings.php:739
#: object/Item.php:134
msgid "Delete"
msgstr "Eliminar"
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr "Ver perfil de %s @ %s"
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr "Categorías:"
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr "Archivado en:"
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr "%s de %s"
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr "Verlo en contexto"
#: include/conversation.php:791 include/conversation.php:1261
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 mod/content.php:515 mod/content.php:948
#: mod/photos.php:1570 object/Item.php:406
msgid "Please wait"
msgstr "Por favor, espera"
#: include/conversation.php:870
msgid "remove"
msgstr "eliminar"
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr "Eliminar el elemento seleccionado"
#: include/conversation.php:966
msgid "Follow Thread"
msgstr "Seguir publicacion"
#: include/conversation.php:1094
#, php-format
msgid "%s likes this."
msgstr "A %s le gusta esto."
#: include/conversation.php:1097
#, php-format
msgid "%s doesn't like this."
msgstr "A %s no le gusta esto."
#: include/conversation.php:1100
#, php-format
msgid "%s attends."
msgstr "%s atiende."
#: include/conversation.php:1103
#, php-format
msgid "%s doesn't attend."
msgstr "%s no atenderá."
#: include/conversation.php:1106
#, php-format
msgid "%s attends maybe."
msgstr "%s quizás atenderá"
#: include/conversation.php:1116
msgid "and"
msgstr "y"
#: include/conversation.php:1122
#, php-format
msgid ", and %d other people"
msgstr " y a otras %d personas"
#: include/conversation.php:1131
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d personas</span> les gusta esto"
#: include/conversation.php:1132
#, php-format
msgid "%s like this."
msgstr "A %s le gusta esto."
#: include/conversation.php:1135
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d personas</span> no les gusta esto"
#: include/conversation.php:1136
#, php-format
msgid "%s don't like this."
msgstr "A %s no le gusta esto."
#: include/conversation.php:1139
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr "<span %1$s>%2$d personas</span> atienden"
#: include/conversation.php:1140
#, php-format
msgid "%s attend."
msgstr "%s atiende."
#: include/conversation.php:1143
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr "<span %1$s>%2$d personas</span>no atienden"
#: include/conversation.php:1144
#, php-format
msgid "%s don't attend."
msgstr "%s no atiende."
#: include/conversation.php:1147
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr "<span %1$s>%2$d people</span> quizá asistan"
#: include/conversation.php:1148
#, php-format
msgid "%s anttend maybe."
msgstr "%s atiende quizás."
#: include/conversation.php:1187 include/conversation.php:1205
msgid "Visible to <strong>everybody</strong>"
msgstr "Visible para <strong>cualquiera</strong>"
#: include/conversation.php:1188 include/conversation.php:1206
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr "Introduce la dirección del enlace:"
#: include/conversation.php:1189 include/conversation.php:1207
msgid "Please enter a video link/URL:"
msgstr "Por favor, introduce la URL/enlace del vídeo:"
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Please enter an audio link/URL:"
msgstr "Por favor, introduce la URL/enlace del audio:"
#: include/conversation.php:1191 include/conversation.php:1209
msgid "Tag term:"
msgstr "Etiquetar:"
#: include/conversation.php:1192 include/conversation.php:1210
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "Guardar en directorio:"
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Where are you right now?"
msgstr "¿Dónde estás ahora?"
#: include/conversation.php:1194
msgid "Delete item(s)?"
msgstr "¿Borrar objeto(s)?"
#: include/conversation.php:1242 mod/photos.php:1569
msgid "Share"
msgstr "Compartir"
#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr "Subir foto"
#: include/conversation.php:1244 mod/editpost.php:111
msgid "upload photo"
msgstr "subir imagen"
#: include/conversation.php:1245 mod/editpost.php:112
msgid "Attach file"
msgstr "Adjuntar archivo"
#: include/conversation.php:1246 mod/editpost.php:113
msgid "attach file"
msgstr "adjuntar archivo"
#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr "Insertar enlace"
#: include/conversation.php:1248 mod/editpost.php:115
msgid "web link"
msgstr "enlace web"
#: include/conversation.php:1249 mod/editpost.php:116
msgid "Insert video link"
msgstr "Insertar enlace del vídeo"
#: include/conversation.php:1250 mod/editpost.php:117
msgid "video link"
msgstr "enlace de video"
#: include/conversation.php:1251 mod/editpost.php:118
msgid "Insert audio link"
msgstr "Insertar vínculo del audio"
#: include/conversation.php:1252 mod/editpost.php:119
msgid "audio link"
msgstr "enlace de audio"
#: include/conversation.php:1253 mod/editpost.php:120
msgid "Set your location"
msgstr "Configurar tu localización"
#: include/conversation.php:1254 mod/editpost.php:121
msgid "set location"
msgstr "establecer tu ubicación"
#: include/conversation.php:1255 mod/editpost.php:122
msgid "Clear browser location"
msgstr "Borrar la localización del navegador"
#: include/conversation.php:1256 mod/editpost.php:123
msgid "clear location"
msgstr "limpiar la localización"
#: include/conversation.php:1258 mod/editpost.php:137
msgid "Set title"
msgstr "Establecer el título"
#: include/conversation.php:1260 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Categorías (lista separada por comas)"
#: include/conversation.php:1262 mod/editpost.php:125
msgid "Permission settings"
msgstr "Configuración de permisos"
#: include/conversation.php:1263 mod/editpost.php:154
msgid "permissions"
msgstr "permisos"
#: include/conversation.php:1271 mod/editpost.php:134
msgid "Public post"
msgstr "Publicación pública"
#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
#: mod/photos.php:1725 object/Item.php:729
msgid "Preview"
msgstr "Vista previa"
#: include/conversation.php:1280 include/items.php:1917 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
#: mod/contacts.php:445 mod/photos.php:235 mod/photos.php:322
#: mod/settings.php:677 mod/settings.php:703 mod/suggest.php:32
#: mod/videos.php:128
msgid "Cancel"
msgstr "Cancelar"
#: include/conversation.php:1286
msgid "Post to Groups"
msgstr "Publicar hacia grupos"
#: include/conversation.php:1287
msgid "Post to Contacts"
msgstr "Publicar hacia contactos"
#: include/conversation.php:1288
msgid "Private post"
msgstr "Publicación privada"
#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr "Mensaje"
#: include/conversation.php:1294 mod/editpost.php:153
msgid "Browser"
msgstr "Navegador"
#: include/conversation.php:1449
msgid "View all"
msgstr "Ver todos los contactos"
#: include/conversation.php:1471
msgid "Like"
msgid_plural "Likes"
msgstr[0] "Me gusta"
msgstr[1] "Me gusta"
#: include/conversation.php:1474
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "No me gusta"
msgstr[1] "No me gusta"
#: include/conversation.php:1480
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "No atendiendo"
msgstr[1] "No atendiendo"
#: boot.php:1813
msgid "privacy policy"
msgstr "Política de privacidad"
#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
msgid "Miscellaneous"
@ -1664,8 +158,8 @@ msgstr "año"
msgid "years"
msgstr "años"
#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
#: mod/events.php:389
#: include/datetime.php:351 include/event.php:480 mod/events.php:389
#: mod/cal.php:284
msgid "month"
msgstr "mes"
@ -1673,8 +167,8 @@ msgstr "mes"
msgid "months"
msgstr "meses"
#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
#: mod/events.php:390
#: include/datetime.php:352 include/event.php:481 mod/events.php:390
#: mod/cal.php:285
msgid "week"
msgstr "semana"
@ -1682,8 +176,8 @@ msgstr "semana"
msgid "weeks"
msgstr "semanas"
#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
#: mod/events.php:391
#: include/datetime.php:353 include/event.php:482 mod/events.php:391
#: mod/cal.php:286
msgid "day"
msgstr "día"
@ -1725,40 +219,176 @@ msgstr "hace %1$d %2$s"
msgid "%s's birthday"
msgstr "Cumpleaños de %s"
#: include/datetime.php:573 include/dfrn.php:1108
#: include/datetime.php:573 include/dfrn.php:1109
#, php-format
msgid "Happy Birthday %s"
msgstr "Feliz cumpleaños %s"
#: include/dbstructure.php:26
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Añadir nuevo contacto"
#: 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
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel"
#: include/contact_widgets.php:10 include/identity.php:218 mod/dirfind.php:201
#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101
msgid "Connect"
msgstr "Conectar"
#: include/contact_widgets.php:24
#, 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\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."
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d invitación disponible"
msgstr[1] "%d invitaviones disponibles"
#: include/dbstructure.php:31
#: include/contact_widgets.php:30
msgid "Find People"
msgstr "Buscar personas"
#: include/contact_widgets.php:31
msgid "Enter name or interest"
msgstr "Introduzce nombre o intereses"
#: include/contact_widgets.php:32 include/conversation.php:981
#: include/Contact.php:361 mod/dirfind.php:204 mod/match.php:72
#: mod/allfriends.php:66 mod/contacts.php:602 mod/follow.php:103
#: mod/suggest.php:83
msgid "Connect/Follow"
msgstr "Conectar/Seguir"
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Ejemplos: Robert Morgenstein, Pesca"
#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
msgid "Find"
msgstr "Buscar"
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203
msgid "Friend Suggestions"
msgstr "Sugerencias de amigos"
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
msgid "Similar Interests"
msgstr "Intereses similares"
#: include/contact_widgets.php:37
msgid "Random Profile"
msgstr "Perfil aleatorio"
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
msgid "Invite Friends"
msgstr "Invitar amigos"
#: include/contact_widgets.php:108
msgid "Networks"
msgstr "Redes"
#: include/contact_widgets.php:111
msgid "All Networks"
msgstr "Todas las redes"
#: include/contact_widgets.php:141 include/features.php:110
msgid "Saved Folders"
msgstr "Directorios guardados"
#: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything"
msgstr "Todo"
#: include/contact_widgets.php:173
msgid "Categories"
msgstr "Categorías"
#: include/contact_widgets.php:237
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr "El mensaje de error es\n[pre]%s[/pre]"
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"
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
msgstr "Se han encontrados errores creando las tablas de la base de datos."
#: include/NotificationsManager.php:153
msgid "System"
msgstr "Sistema"
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr "Errores encontrados al ejecutar cambios en la base de datos."
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:411
#: view/theme/frio/theme.php:256
msgid "Network"
msgstr "Red"
#: include/dfrn.php:1107
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:846
msgid "Personal"
msgstr "Personal"
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161
msgid "Home"
msgstr "Inicio"
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr "Presentaciones"
#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
#, php-format
msgid "%s\\'s birthday"
msgstr "%s\\'s cumpleaños"
msgid "%s commented on %s's post"
msgstr "%s comentó la publicación de %s"
#: include/NotificationsManager.php:243
#, php-format
msgid "%s created a new post"
msgstr "%s creó una nueva publicación"
#: include/NotificationsManager.php:256
#, php-format
msgid "%s liked %s's post"
msgstr "A %s le gusta la publicación de %s"
#: include/NotificationsManager.php:267
#, php-format
msgid "%s disliked %s's post"
msgstr "A %s no le gusta la publicación de %s"
#: include/NotificationsManager.php:278
#, php-format
msgid "%s is attending %s's event"
msgstr "%s está asistiendo al evento %s's"
#: include/NotificationsManager.php:289
#, php-format
msgid "%s is not attending %s's event"
msgstr "%s no está asistiendo al evento %s's"
#: include/NotificationsManager.php:300
#, php-format
msgid "%s may attend %s's event"
msgstr "%s podría asistir al evento %s's"
#: include/NotificationsManager.php:315
#, php-format
msgid "%s is now friends with %s"
msgstr "%s es ahora es amigo de %s"
#: include/NotificationsManager.php:748
msgid "Friend Suggestion"
msgstr "Propuestas de amistad"
#: include/NotificationsManager.php:781
msgid "Friend/Connect Request"
msgstr "Solicitud de Amistad/Conexión"
#: include/NotificationsManager.php:781
msgid "New Follower"
msgstr "Nuevo seguidor"
#: include/enotify.php:24
msgid "Friendica Notification"
@ -1778,6 +408,10 @@ msgstr "%s Administrador"
msgid "%1$s, %2$s Administrator"
msgstr "%1$s, %2$s Administrador"
#: include/enotify.php:43 include/delivery.php:457
msgid "noreply"
msgstr "no responder"
#: include/enotify.php:70
#, php-format
msgid "%s <!item_type!>"
@ -2053,6 +687,114 @@ msgstr "Nombre completo:\t%1$s\\nUbicación del sitio:\t%2$s\\nLogin Nombre:\t%3
msgid "Please visit %s to approve or reject the request."
msgstr "Por favor visita %s para aprobar o negar la solicitud."
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr "Pulsa aquí para actualizar."
#: include/plugin.php:534
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:539
msgid "This action is not available under your subscription plan."
msgstr "Esta acción no está permitida para tu subscripción."
#: include/ForumManager.php:114 include/text.php:1025 include/nav.php:131
#: view/theme/vier/theme.php:255
msgid "Forums"
msgstr "Foros"
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
msgstr "Enlace externo al foro"
#: include/diaspora.php:1402 include/conversation.php:141 include/like.php:182
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "A %1$s le gusta %3$s de %2$s"
#: include/diaspora.php:1406 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62
#: mod/subthread.php:87
msgid "status"
msgstr "estado"
#: include/diaspora.php:1958
msgid "Sharing notification from Diaspora network"
msgstr "Compartir notificaciones con la red Diaspora*"
#: include/diaspora.php:2864
msgid "Attachments:"
msgstr "Archivos adjuntos:"
#: include/dfrn.php:1108
#, php-format
msgid "%s\\'s birthday"
msgstr "%s\\'s cumpleaños"
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr "Error decodificando el archivo de cuenta"
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
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
msgid "Error! Cannot check nickname"
msgstr "Error! No puedo consultar el apodo"
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "La cuenta '%s' ya existe en este servidor!"
#: include/uimport.php:153
msgid "User creation error"
msgstr "Error al crear la cuenta"
#: include/uimport.php:173
msgid "User profile creation error"
msgstr "Error de creación del perfil de la cuenta"
#: include/uimport.php:222
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d contactos no encontrado"
msgstr[1] "%d contactos no importado"
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."
#: include/dba.php:56 include/dba_pdo.php:72
#, 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/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
#: include/event.php:33 include/event.php:51 include/event.php:487
#: include/bb2diaspora.php:154
msgid "Starts:"
msgstr "Inicio:"
#: include/event.php:36 include/event.php:57 include/event.php:488
#: include/bb2diaspora.php:162
msgid "Finishes:"
msgstr "Final:"
#: include/event.php:39 include/event.php:63 include/event.php:489
#: include/identity.php:328 include/bb2diaspora.php:170
#: mod/notifications.php:232 mod/events.php:494 mod/directory.php:137
#: mod/contacts.php:628
msgid "Location:"
msgstr "Localización:"
#: include/event.php:441
msgid "Sun"
msgstr "Dom"
@ -2081,11 +823,11 @@ msgstr "Vie"
msgid "Sat"
msgstr "Sab"
#: include/event.php:448 include/text.php:1130 mod/settings.php:968
#: include/event.php:448 include/text.php:1130 mod/settings.php:972
msgid "Sunday"
msgstr "Domingo"
#: include/event.php:449 include/text.php:1130 mod/settings.php:968
#: include/event.php:449 include/text.php:1130 mod/settings.php:972
msgid "Monday"
msgstr "Lunes"
@ -2201,7 +943,7 @@ msgstr "Noviembre"
msgid "December"
msgstr "Diciembre"
#: include/event.php:479 mod/cal.php:283 mod/events.php:388
#: include/event.php:479 mod/events.php:388 mod/cal.php:283
msgid "today"
msgstr "hoy"
@ -2237,628 +979,6 @@ msgstr "Exportar calendario como ical"
msgid "Export calendar as csv"
msgstr "Exportar calendario como csv"
#: include/follow.php:77 mod/dfrn_request.php:507
msgid "Disallowed profile URL."
msgstr "Dirección de perfil no permitida."
#: include/follow.php:82
msgid "Connect URL missing."
msgstr "Falta el conector URL."
#: include/follow.php:109
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:110 include/follow.php:130
msgid "No compatible communication protocols or feeds were discovered."
msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles."
#: include/follow.php:128
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:132
msgid "An author or name was not found."
msgstr "No se ha encontrado un autor o nombre."
#: include/follow.php:134
msgid "No browser URL could be matched to this address."
msgstr "Ninguna dirección concuerda con la suministrada."
#: include/follow.php:136
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:137
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:143
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:153
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:254
msgid "Unable to retrieve contact information."
msgstr "No ha sido posible recibir la información del contacto."
#: include/follow.php:287
msgid "following"
msgstr "siguiendo"
#: include/identity.php:42
msgid "Requested account is not available."
msgstr "La cuenta solicitada no está disponible."
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "El perfil solicitado no está disponible."
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr "Editar perfil"
#: include/identity.php:251
msgid "Atom feed"
msgstr "Atom feed"
#: include/identity.php:282 include/nav.php:189
msgid "Profiles"
msgstr "Perfiles"
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr "Administrar/editar perfiles"
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr "Cambiar foto del perfil"
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr "Crear nuevo perfil"
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr "Imagen del Perfil"
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr "Visible para todos"
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr "Editar visibilidad"
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr "Género:"
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr "Estado:"
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr "Página de inicio:"
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/contacts.php:632 mod/directory.php:145
msgid "About:"
msgstr "Acerca de:"
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr "XMPP:"
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr "Red:"
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr "g A l F d"
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr "F d"
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr "[hoy]"
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr "Recordatorios de cumpleaños"
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr "Cumpleaños esta semana:"
#: include/identity.php:569
msgid "[No description]"
msgstr "[Sin descripción]"
#: include/identity.php:593
msgid "Event Reminders"
msgstr "Recordatorios de eventos"
#: include/identity.php:594
msgid "Events this week:"
msgstr "Eventos de esta semana:"
#: include/identity.php:605 include/identity.php:691 include/identity.php:722
#: include/nav.php:82 mod/profperm.php:104 mod/newmember.php:32
#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
#: view/theme/diabook/theme.php:124
msgid "Profile"
msgstr "Perfil"
#: include/identity.php:614 mod/settings.php:1274
msgid "Full Name:"
msgstr "Nombre completo:"
#: include/identity.php:621
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:622
msgid "j F"
msgstr "j F"
#: include/identity.php:633
msgid "Age:"
msgstr "Edad:"
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr "por %1$d %2$s"
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr "Preferencia sexual:"
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr "Ciudad de origen:"
#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
#: mod/contacts.php:634
msgid "Tags:"
msgstr "Etiquetas:"
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr "Ideas políticas:"
#: include/identity.php:655
msgid "Religion:"
msgstr "Religión:"
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr "Aficiones/Intereses:"
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr "Me gusta:"
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr "No me gusta:"
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr "Información de contacto y Redes sociales:"
#: include/identity.php:668
msgid "Musical interests:"
msgstr "Intereses musicales:"
#: include/identity.php:670
msgid "Books, literature:"
msgstr "Libros, literatura:"
#: include/identity.php:672
msgid "Television:"
msgstr "Televisión:"
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr "Películas/baile/cultura/entretenimiento:"
#: include/identity.php:676
msgid "Love/Romance:"
msgstr "Amor/Romance:"
#: include/identity.php:678
msgid "Work/employment:"
msgstr "Trabajo/ocupación:"
#: include/identity.php:680
msgid "School/education:"
msgstr "Escuela/estudios:"
#: include/identity.php:684
msgid "Forums:"
msgstr "Foros:"
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr "Basic"
#: include/identity.php:693 mod/admin.php:931 mod/contacts.php:870
#: mod/events.php:508
msgid "Advanced"
msgstr "Avanzado"
#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:246
msgid "Status"
msgstr "Estado"
#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
msgid "Status Messages and Posts"
msgstr "Mensajes de Estado y Publicaciones"
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr "Detalles del Perfil"
#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126
msgid "Photos"
msgstr "Fotografías"
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr "Álbum de Fotos"
#: include/identity.php:738 include/identity.php:741 include/nav.php:84
#: view/theme/frio/theme.php:249
msgid "Videos"
msgstr "Videos"
#: include/identity.php:750 include/identity.php:761 include/nav.php:85
#: include/nav.php:149 mod/cal.php:275 mod/events.php:379
#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
#: view/theme/diabook/theme.php:127
msgid "Events"
msgstr "Eventos"
#: include/identity.php:753 include/identity.php:764 include/nav.php:149
#: view/theme/frio/theme.php:254
msgid "Events and Calendar"
msgstr "Eventos y Calendario"
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr "Notas personales"
#: include/identity.php:775
msgid "Only You Can See This"
msgstr "Únicamente tú puedes ver esto"
#: include/identity.php:783 include/identity.php:786 include/nav.php:128
#: include/nav.php:192 include/text.php:1022 mod/contacts.php:792
#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
#: view/theme/diabook/theme.php:125
msgid "Contacts"
msgstr "Contactos"
#: include/items.php:1518 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
msgid "[Name Withheld]"
msgstr "[Nombre oculto]"
#: include/items.php:1873 mod/viewsrc.php:15 mod/notice.php:15
#: mod/admin.php:234 mod/admin.php:1441 mod/admin.php:1675 mod/display.php:103
#: mod/display.php:279 mod/display.php:478
msgid "Item not found."
msgstr "Elemento no encontrado."
#: include/items.php:1912
msgid "Do you really want to delete this item?"
msgstr "¿Realmente quieres borrar este objeto?"
#: include/items.php:1914 mod/follow.php:110 mod/api.php:105
#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
#: mod/register.php:238 mod/settings.php:1158 mod/settings.php:1164
#: mod/settings.php:1172 mod/settings.php:1176 mod/settings.php:1181
#: mod/settings.php:1187 mod/settings.php:1193 mod/settings.php:1199
#: mod/settings.php:1225 mod/settings.php:1226 mod/settings.php:1227
#: mod/settings.php:1228 mod/settings.php:1229 mod/suggest.php:29
msgid "Yes"
msgstr "Sí"
#: include/items.php:2077 mod/wall_upload.php:77 mod/wall_upload.php:80
#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
#: mod/invite.php:101 mod/wall_attach.php:67 mod/wall_attach.php:70
#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
#: mod/events.php:190 mod/item.php:198 mod/item.php:210 mod/network.php:4
#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:663
#: mod/suggest.php:58 mod/viewcontacts.php:45 index.php:397
msgid "Permission denied."
msgstr "Permiso denegado."
#: include/items.php:2182
msgid "Archives"
msgstr "Archivos"
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr "Nada nuevo por aquí"
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr "Limpiar notificaciones"
#: include/nav.php:40 include/text.php:1015
msgid "@name, !forum, #tags, content"
msgstr "@name, !forum, #tags, contenido"
#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1778
msgid "Logout"
msgstr "Salir"
#: include/nav.php:78 view/theme/frio/theme.php:243
msgid "End this session"
msgstr "Cerrar la sesión"
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
#: view/theme/diabook/theme.php:123
msgid "Your posts and conversations"
msgstr "Tus publicaciones y conversaciones"
#: include/nav.php:82 view/theme/frio/theme.php:247
#: view/theme/diabook/theme.php:124
msgid "Your profile page"
msgstr "Tu página de perfil"
#: include/nav.php:83 view/theme/frio/theme.php:248
#: view/theme/diabook/theme.php:126
msgid "Your photos"
msgstr "Tus fotos"
#: include/nav.php:84 view/theme/frio/theme.php:249
msgid "Your videos"
msgstr "Tus videos"
#: include/nav.php:85 view/theme/frio/theme.php:250
#: view/theme/diabook/theme.php:127
msgid "Your events"
msgstr "Tus eventos"
#: include/nav.php:86 view/theme/diabook/theme.php:128
msgid "Personal notes"
msgstr "Notas personales"
#: include/nav.php:86
msgid "Your personal notes"
msgstr "Tus notas personales"
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1779
msgid "Login"
msgstr "Acceder"
#: include/nav.php:95
msgid "Sign in"
msgstr "Date de alta"
#: include/nav.php:105
msgid "Home Page"
msgstr "Página de inicio"
#: include/nav.php:109 mod/register.php:280 boot.php:1754
msgid "Register"
msgstr "Registrarse"
#: include/nav.php:109
msgid "Create an account"
msgstr "Crea una cuenta"
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
msgid "Help"
msgstr "Ayuda"
#: include/nav.php:115
msgid "Help and documentation"
msgstr "Ayuda y documentación"
#: include/nav.php:119
msgid "Apps"
msgstr "Aplicaciones"
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr "Aplicaciones, utilidades, juegos"
#: include/nav.php:123 include/text.php:1012 mod/search.php:149
msgid "Search"
msgstr "Buscar"
#: include/nav.php:123
msgid "Search site content"
msgstr " Busca contenido en la página"
#: include/nav.php:126 include/text.php:1020
msgid "Full Text"
msgstr "Texto completo"
#: include/nav.php:127 include/text.php:1021
msgid "Tags"
msgstr "Tags"
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
#: view/theme/diabook/theme.php:129
msgid "Community"
msgstr "Comunidad"
#: include/nav.php:143
msgid "Conversations on this site"
msgstr "Conversaciones en este sitio"
#: include/nav.php:145
msgid "Conversations on the network"
msgstr "Conversaciones en la red"
#: include/nav.php:152
msgid "Directory"
msgstr "Directorio"
#: include/nav.php:152
msgid "People directory"
msgstr "Directorio de usuarios"
#: include/nav.php:154
msgid "Information"
msgstr "Información"
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr "Información sobre esta instancia de friendica"
#: include/nav.php:158 view/theme/frio/theme.php:253
msgid "Conversations from your friends"
msgstr "Conversaciones de tus amigos"
#: include/nav.php:159
msgid "Network Reset"
msgstr "Reseteo de la red"
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr "Cargar pagina de redes sin filtros"
#: include/nav.php:166
msgid "Friend Requests"
msgstr "Solicitudes de amistad"
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr "Notificaciones"
#: include/nav.php:170
msgid "See all notifications"
msgstr "Ver todas las notificaciones"
#: include/nav.php:171 mod/settings.php:900
msgid "Mark as seen"
msgstr "Marcar como leído"
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr "Marcar todas las notificaciones del sistema como leídas"
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
msgid "Messages"
msgstr "Mensajes"
#: include/nav.php:175 view/theme/frio/theme.php:255
msgid "Private mail"
msgstr "Correo privado"
#: include/nav.php:176
msgid "Inbox"
msgstr "Entrada"
#: include/nav.php:177
msgid "Outbox"
msgstr "Enviados"
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr "Nuevo mensaje"
#: include/nav.php:181
msgid "Manage"
msgstr "Administrar"
#: include/nav.php:181
msgid "Manage other pages"
msgstr "Administrar otras páginas"
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr "Delegaciones"
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr "Delegar la administración de la página"
#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1494
#: mod/admin.php:1752 mod/settings.php:111 view/theme/frio/theme.php:256
#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
msgid "Settings"
msgstr "Configuración"
#: include/nav.php:186 view/theme/frio/theme.php:256
msgid "Account settings"
msgstr "Configuración de tu cuenta"
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr "Manejar/editar Perfiles"
#: include/nav.php:192 view/theme/frio/theme.php:257
msgid "Manage/edit friends and contacts"
msgstr "Administrar/editar amigos y contactos"
#: include/nav.php:197 mod/admin.php:186
msgid "Admin"
msgstr "Admin"
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr "Opciones y configuración del sitio"
#: include/nav.php:200
msgid "Navigation"
msgstr "Navegación"
#: include/nav.php:200
msgid "Site map"
msgstr "Mapa del sitio"
#: include/oembed.php:252
msgid "Embedded content"
msgstr "Contenido integrado"
#: include/oembed.php:260
msgid "Embedding disabled"
msgstr "Contenido incrustrado desabilitado"
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
#: view/theme/diabook/theme.php:499
msgid "Contact Photos"
msgstr "Foto del contacto"
#: include/security.php:22
msgid "Welcome "
msgstr "Bienvenido "
@ -2877,6 +997,300 @@ msgid ""
"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/profile_selectors.php:6
msgid "Male"
msgstr "Hombre"
#: include/profile_selectors.php:6
msgid "Female"
msgstr "Mujer"
#: include/profile_selectors.php:6
msgid "Currently Male"
msgstr "Actualmente Hombre"
#: include/profile_selectors.php:6
msgid "Currently Female"
msgstr "Actualmente Mujer"
#: include/profile_selectors.php:6
msgid "Mostly Male"
msgstr "Mayormente Hombre"
#: include/profile_selectors.php:6
msgid "Mostly Female"
msgstr "Mayormente Mujer"
#: include/profile_selectors.php:6
msgid "Transgender"
msgstr "Transgenérico"
#: include/profile_selectors.php:6
msgid "Intersex"
msgstr "Bisexual"
#: include/profile_selectors.php:6
msgid "Transsexual"
msgstr "Transexual"
#: include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr "Hermafrodita"
#: include/profile_selectors.php:6
msgid "Neuter"
msgstr "Neutro"
#: include/profile_selectors.php:6
msgid "Non-specific"
msgstr "Sin especificar"
#: include/profile_selectors.php:6
msgid "Other"
msgstr "Otro"
#: include/profile_selectors.php:6 include/conversation.php:1487
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] "Indeciso"
msgstr[1] "Indeciso"
#: include/profile_selectors.php:23
msgid "Males"
msgstr "Hombres"
#: include/profile_selectors.php:23
msgid "Females"
msgstr "Mujeres"
#: include/profile_selectors.php:23
msgid "Gay"
msgstr "Gay"
#: include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbiana"
#: include/profile_selectors.php:23
msgid "No Preference"
msgstr "Sin preferencias"
#: include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bisexual"
#: include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autosexual"
#: include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Célibe"
#: include/profile_selectors.php:23
msgid "Virgin"
msgstr "Virgen"
#: include/profile_selectors.php:23
msgid "Deviant"
msgstr "Desviado"
#: include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetichista"
#: include/profile_selectors.php:23
msgid "Oodles"
msgstr "Orgiástico"
#: include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Asexual"
#: include/profile_selectors.php:42
msgid "Single"
msgstr "Soltero"
#: include/profile_selectors.php:42
msgid "Lonely"
msgstr "Solitario"
#: include/profile_selectors.php:42
msgid "Available"
msgstr "Disponible"
#: include/profile_selectors.php:42
msgid "Unavailable"
msgstr "No disponible"
#: include/profile_selectors.php:42
msgid "Has crush"
msgstr "Enamorado"
#: include/profile_selectors.php:42
msgid "Infatuated"
msgstr "Loco/a por alguien"
#: include/profile_selectors.php:42
msgid "Dating"
msgstr "De citas"
#: include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Infiel"
#: include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Adicto al sexo"
#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
msgid "Friends"
msgstr "Amigos"
#: include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Amigos con beneficios"
#: include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
#: include/profile_selectors.php:42
msgid "Engaged"
msgstr "Comprometido/a"
#: include/profile_selectors.php:42
msgid "Married"
msgstr "Casado/a"
#: include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr "Casado imaginario"
#: include/profile_selectors.php:42
msgid "Partners"
msgstr "Socios"
#: include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "Cohabitando"
#: include/profile_selectors.php:42
msgid "Common law"
msgstr "Pareja de hecho"
#: include/profile_selectors.php:42
msgid "Happy"
msgstr "Feliz"
#: include/profile_selectors.php:42
msgid "Not looking"
msgstr "No busca relación"
#: include/profile_selectors.php:42
msgid "Swinger"
msgstr "Swinger"
#: include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Traicionado/a"
#: include/profile_selectors.php:42
msgid "Separated"
msgstr "Separado/a"
#: include/profile_selectors.php:42
msgid "Unstable"
msgstr "Inestable"
#: include/profile_selectors.php:42
msgid "Divorced"
msgstr "Divorciado/a"
#: include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr "Divorciado imaginario"
#: include/profile_selectors.php:42
msgid "Widowed"
msgstr "Viudo/a"
#: include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Incierto"
#: include/profile_selectors.php:42
msgid "It's complicated"
msgstr "Es complicado"
#: include/profile_selectors.php:42
msgid "Don't care"
msgstr "No te importa"
#: include/profile_selectors.php:42
msgid "Ask me"
msgstr "Pregúntame"
#: include/items.php:1571 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
msgid "[Name Withheld]"
msgstr "[Nombre oculto]"
#: include/items.php:1926 mod/viewsrc.php:15 mod/admin.php:234
#: mod/admin.php:1471 mod/admin.php:1705 mod/display.php:103
#: mod/display.php:279 mod/display.php:478 mod/notice.php:15
msgid "Item not found."
msgstr "Elemento no encontrado."
#: include/items.php:1965
msgid "Do you really want to delete this item?"
msgstr "¿Realmente quieres borrar este objeto?"
#: include/items.php:1967 mod/profiles.php:648 mod/profiles.php:651
#: mod/profiles.php:677 mod/contacts.php:442 mod/follow.php:110
#: mod/suggest.php:29 mod/dfrn_request.php:862 mod/register.php:245
#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
#: mod/settings.php:1234 mod/api.php:105 mod/message.php:217
msgid "Yes"
msgstr "Sí"
#: include/items.php:1970 include/conversation.php:1283 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:128
#: mod/photos.php:235 mod/photos.php:322 mod/contacts.php:445
#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148
#: mod/dfrn_request.php:876 mod/settings.php:679 mod/settings.php:705
#: mod/message.php:220
msgid "Cancel"
msgstr "Cancelar"
#: include/items.php:2130 index.php:401 mod/regmod.php:110 mod/dirfind.php:11
#: mod/notifications.php:71 mod/dfrn_confirm.php:61 mod/wall_upload.php:77
#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22
#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12
#: mod/cal.php:304 mod/repair_ostatus.php:9 mod/delegate.php:12
#: mod/profiles.php:166 mod/profiles.php:605 mod/poke.php:150
#: mod/photos.php:159 mod/photos.php:1072 mod/attach.php:33
#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155
#: mod/suggest.php:58 mod/display.php:475 mod/common.php:18 mod/mood.php:114
#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19
#: mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:198
#: mod/item.php:210 mod/ostatus_subscribe.php:9 mod/message.php:46
#: mod/message.php:182 mod/manage.php:96
msgid "Permission denied."
msgstr "Permiso denegado."
#: include/items.php:2235
msgid "Archives"
msgstr "Archivos"
#: include/text.php:304
msgid "newer"
msgstr "más nuevo"
@ -2924,11 +1338,33 @@ msgstr[1] "%d Contactos"
msgid "View Contacts"
msgstr "Ver contactos"
#: include/text.php:1012 include/nav.php:123 mod/search.php:149
msgid "Search"
msgstr "Buscar"
#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
#: mod/editpost.php:109
msgid "Save"
msgstr "Guardar"
#: include/text.php:1015 include/nav.php:40
msgid "@name, !forum, #tags, content"
msgstr "@name, !forum, #tags, contenido"
#: include/text.php:1020 include/nav.php:126
msgid "Full Text"
msgstr "Texto completo"
#: include/text.php:1021 include/nav.php:127
msgid "Tags"
msgstr "Tags"
#: include/text.php:1022 include/identity.php:783 include/identity.php:786
#: include/nav.php:128 include/nav.php:192 mod/viewcontacts.php:116
#: mod/contacts.php:792 mod/contacts.php:853 view/theme/frio/theme.php:260
msgid "Contacts"
msgstr "Contactos"
#: include/text.php:1076
msgid "poke"
msgstr "tocar"
@ -3077,6 +1513,17 @@ msgstr "Ver en pagina aparte"
msgid "view on separate page"
msgstr "ver en pagina aparte"
#: include/text.php:1806 include/conversation.php:122
#: include/conversation.php:258 include/like.php:165
msgid "event"
msgstr "evento"
#: include/text.php:1808 include/conversation.php:130
#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62
#: mod/subthread.php:87
msgid "photo"
msgstr "foto"
#: include/text.php:1810
msgid "activity"
msgstr "Actividad"
@ -3096,10 +1543,1678 @@ msgstr "Publicación"
msgid "Item filed"
msgstr "Elemento archivado"
#: include/conversation.php:144 include/like.php:184
#, 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"
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr "%1$s atenderá %2$s's %3$s"
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr "%1$s no atenderá %2$s's %3$s"
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr "%1$s atenderá quizás %2$s's %3$s"
#: include/conversation.php:185 mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ahora es amigo de %2$s"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s le dio un toque a %2$s"
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s está actualmente %2$s"
#: include/conversation.php:278 mod/tagger.php:95
#, 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"
#: include/conversation.php:303
msgid "post/item"
msgstr "publicación/tema"
#: include/conversation.php:304
#, 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:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr "Me gusta"
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr "No me gusta"
#: include/conversation.php:586 include/conversation.php:1481
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] "Atendiendo"
msgstr[1] "Atendiendo"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr "No atendiendo"
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr "Puede que atienda"
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr "Seleccionar"
#: include/conversation.php:709 mod/admin.php:1414 mod/content.php:454
#: mod/content.php:759 mod/photos.php:1682 mod/contacts.php:808
#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:741
#: object/Item.php:134
msgid "Delete"
msgstr "Eliminar"
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr "Ver perfil de %s @ %s"
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr "Categorías:"
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr "Archivado en:"
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr "%s de %s"
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr "Verlo en contexto"
#: include/conversation.php:791 include/conversation.php:1264
#: mod/content.php:515 mod/content.php:948 mod/photos.php:1570
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 object/Item.php:406
msgid "Please wait"
msgstr "Por favor, espera"
#: include/conversation.php:870
msgid "remove"
msgstr "eliminar"
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr "Eliminar el elemento seleccionado"
#: include/conversation.php:966
msgid "Follow Thread"
msgstr "Seguir publicacion"
#: include/conversation.php:967 include/Contact.php:404
msgid "View Status"
msgstr "Ver estado"
#: include/conversation.php:968 include/conversation.php:984
#: include/Contact.php:347 include/Contact.php:360 include/Contact.php:405
#: mod/dirfind.php:203 mod/directory.php:155 mod/match.php:71
#: mod/allfriends.php:65 mod/suggest.php:82
msgid "View Profile"
msgstr "Ver perfil"
#: include/conversation.php:969 include/Contact.php:406
msgid "View Photos"
msgstr "Ver fotos"
#: include/conversation.php:970 include/Contact.php:407
msgid "Network Posts"
msgstr "Publicaciones en la red"
#: include/conversation.php:971 include/Contact.php:408
msgid "View Contact"
msgstr "Ver contacto"
#: include/conversation.php:972 include/Contact.php:410
msgid "Send PM"
msgstr "Enviar mensaje privado"
#: include/conversation.php:976 include/Contact.php:411
msgid "Poke"
msgstr "Toque"
#: include/conversation.php:1097
#, php-format
msgid "%s likes this."
msgstr "A %s le gusta esto."
#: include/conversation.php:1100
#, php-format
msgid "%s doesn't like this."
msgstr "A %s no le gusta esto."
#: include/conversation.php:1103
#, php-format
msgid "%s attends."
msgstr "%s atiende."
#: include/conversation.php:1106
#, php-format
msgid "%s doesn't attend."
msgstr "%s no atenderá."
#: include/conversation.php:1109
#, php-format
msgid "%s attends maybe."
msgstr "%s quizás atenderá"
#: include/conversation.php:1119
msgid "and"
msgstr "y"
#: include/conversation.php:1125
#, php-format
msgid ", and %d other people"
msgstr " y a otras %d personas"
#: include/conversation.php:1134
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d personas</span> les gusta esto"
#: include/conversation.php:1135
#, php-format
msgid "%s like this."
msgstr "A %s le gusta esto."
#: include/conversation.php:1138
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d personas</span> no les gusta esto"
#: include/conversation.php:1139
#, php-format
msgid "%s don't like this."
msgstr "A %s no le gusta esto."
#: include/conversation.php:1142
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr "<span %1$s>%2$d personas</span> atienden"
#: include/conversation.php:1143
#, php-format
msgid "%s attend."
msgstr "%s atiende."
#: include/conversation.php:1146
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr "<span %1$s>%2$d personas</span>no atienden"
#: include/conversation.php:1147
#, php-format
msgid "%s don't attend."
msgstr "%s no atiende."
#: include/conversation.php:1150
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr "<span %1$s>%2$d people</span> quizá asistan"
#: include/conversation.php:1151
#, php-format
msgid "%s anttend maybe."
msgstr "%s atiende quizás."
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Visible to <strong>everybody</strong>"
msgstr "Visible para <strong>cualquiera</strong>"
#: include/conversation.php:1191 include/conversation.php:1209
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr "Introduce la dirección del enlace:"
#: include/conversation.php:1192 include/conversation.php:1210
msgid "Please enter a video link/URL:"
msgstr "Por favor, introduce la URL/enlace del vídeo:"
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Please enter an audio link/URL:"
msgstr "Por favor, introduce la URL/enlace del audio:"
#: include/conversation.php:1194 include/conversation.php:1212
msgid "Tag term:"
msgstr "Etiquetar:"
#: include/conversation.php:1195 include/conversation.php:1213
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "Guardar en directorio:"
#: include/conversation.php:1196 include/conversation.php:1214
msgid "Where are you right now?"
msgstr "¿Dónde estás ahora?"
#: include/conversation.php:1197
msgid "Delete item(s)?"
msgstr "¿Borrar objeto(s)?"
#: include/conversation.php:1245 mod/photos.php:1569
msgid "Share"
msgstr "Compartir"
#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr "Subir foto"
#: include/conversation.php:1247 mod/editpost.php:111
msgid "upload photo"
msgstr "subir imagen"
#: include/conversation.php:1248 mod/editpost.php:112
msgid "Attach file"
msgstr "Adjuntar archivo"
#: include/conversation.php:1249 mod/editpost.php:113
msgid "attach file"
msgstr "adjuntar archivo"
#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr "Insertar enlace"
#: include/conversation.php:1251 mod/editpost.php:115
msgid "web link"
msgstr "enlace web"
#: include/conversation.php:1252 mod/editpost.php:116
msgid "Insert video link"
msgstr "Insertar enlace del vídeo"
#: include/conversation.php:1253 mod/editpost.php:117
msgid "video link"
msgstr "enlace de video"
#: include/conversation.php:1254 mod/editpost.php:118
msgid "Insert audio link"
msgstr "Insertar vínculo del audio"
#: include/conversation.php:1255 mod/editpost.php:119
msgid "audio link"
msgstr "enlace de audio"
#: include/conversation.php:1256 mod/editpost.php:120
msgid "Set your location"
msgstr "Configurar tu localización"
#: include/conversation.php:1257 mod/editpost.php:121
msgid "set location"
msgstr "establecer tu ubicación"
#: include/conversation.php:1258 mod/editpost.php:122
msgid "Clear browser location"
msgstr "Borrar la localización del navegador"
#: include/conversation.php:1259 mod/editpost.php:123
msgid "clear location"
msgstr "limpiar la localización"
#: include/conversation.php:1261 mod/editpost.php:137
msgid "Set title"
msgstr "Establecer el título"
#: include/conversation.php:1263 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Categorías (lista separada por comas)"
#: include/conversation.php:1265 mod/editpost.php:125
msgid "Permission settings"
msgstr "Configuración de permisos"
#: include/conversation.php:1266 mod/editpost.php:154
msgid "permissions"
msgstr "permisos"
#: include/conversation.php:1274 mod/editpost.php:134
msgid "Public post"
msgstr "Publicación pública"
#: include/conversation.php:1279 mod/events.php:504 mod/content.php:737
#: mod/photos.php:1591 mod/photos.php:1639 mod/photos.php:1725
#: mod/editpost.php:145 object/Item.php:729
msgid "Preview"
msgstr "Vista previa"
#: include/conversation.php:1289
msgid "Post to Groups"
msgstr "Publicar hacia grupos"
#: include/conversation.php:1290
msgid "Post to Contacts"
msgstr "Publicar hacia contactos"
#: include/conversation.php:1291
msgid "Private post"
msgstr "Publicación privada"
#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr "Mensaje"
#: include/conversation.php:1297 mod/editpost.php:153
msgid "Browser"
msgstr "Navegador"
#: include/conversation.php:1453
msgid "View all"
msgstr "Ver todos los contactos"
#: include/conversation.php:1475
msgid "Like"
msgid_plural "Likes"
msgstr[0] "Me gusta"
msgstr[1] "Me gusta"
#: include/conversation.php:1478
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "No me gusta"
msgstr[1] "No me gusta"
#: include/conversation.php:1484
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] "No atendiendo"
msgstr[1] "No atendiendo"
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
msgid "Contact Photos"
msgstr "Foto del contacto"
#: include/identity.php:42
msgid "Requested account is not available."
msgstr "La cuenta solicitada no está disponible."
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "El perfil solicitado no está disponible."
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr "Editar perfil"
#: include/identity.php:251
msgid "Atom feed"
msgstr "Atom feed"
#: include/identity.php:282 include/nav.php:189
msgid "Profiles"
msgstr "Perfiles"
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr "Administrar/editar perfiles"
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr "Cambiar foto del perfil"
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr "Crear nuevo perfil"
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr "Imagen del Perfil"
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr "Visible para todos"
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr "Editar visibilidad"
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr "Género:"
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr "Estado:"
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr "Página de inicio:"
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/directory.php:145 mod/contacts.php:632
msgid "About:"
msgstr "Acerca de:"
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr "XMPP:"
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr "Red:"
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr "g A l F d"
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr "F d"
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr "[hoy]"
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr "Recordatorios de cumpleaños"
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr "Cumpleaños esta semana:"
#: include/identity.php:569
msgid "[No description]"
msgstr "[Sin descripción]"
#: include/identity.php:593
msgid "Event Reminders"
msgstr "Recordatorios de eventos"
#: include/identity.php:594
msgid "Events this week:"
msgstr "Eventos de esta semana:"
#: include/identity.php:605 include/identity.php:691 include/identity.php:722
#: include/nav.php:82 mod/profperm.php:104 mod/contacts.php:639
#: mod/contacts.php:841 mod/newmember.php:32 view/theme/frio/theme.php:250
msgid "Profile"
msgstr "Perfil"
#: include/identity.php:614 mod/settings.php:1279
msgid "Full Name:"
msgstr "Nombre completo:"
#: include/identity.php:621
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:622
msgid "j F"
msgstr "j F"
#: include/identity.php:633
msgid "Age:"
msgstr "Edad:"
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr "por %1$d %2$s"
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr "Preferencia sexual:"
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr "Ciudad de origen:"
#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
#: mod/follow.php:134
msgid "Tags:"
msgstr "Etiquetas:"
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr "Ideas políticas:"
#: include/identity.php:655
msgid "Religion:"
msgstr "Religión:"
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr "Aficiones/Intereses:"
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr "Me gusta:"
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr "No me gusta:"
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr "Información de contacto y Redes sociales:"
#: include/identity.php:668
msgid "Musical interests:"
msgstr "Intereses musicales:"
#: include/identity.php:670
msgid "Books, literature:"
msgstr "Libros, literatura:"
#: include/identity.php:672
msgid "Television:"
msgstr "Televisión:"
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr "Películas/baile/cultura/entretenimiento:"
#: include/identity.php:676
msgid "Love/Romance:"
msgstr "Amor/Romance:"
#: include/identity.php:678
msgid "Work/employment:"
msgstr "Trabajo/ocupación:"
#: include/identity.php:680
msgid "School/education:"
msgstr "Escuela/estudios:"
#: include/identity.php:684
msgid "Forums:"
msgstr "Foros:"
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr "Basic"
#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
#: mod/contacts.php:870
msgid "Advanced"
msgstr "Avanzado"
#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:249
msgid "Status"
msgstr "Estado"
#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:143
msgid "Status Messages and Posts"
msgstr "Mensajes de Estado y Publicaciones"
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr "Detalles del Perfil"
#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
#: view/theme/frio/theme.php:251
msgid "Photos"
msgstr "Fotografías"
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr "Álbum de Fotos"
#: include/identity.php:738 include/identity.php:741 include/nav.php:84
#: view/theme/frio/theme.php:252
msgid "Videos"
msgstr "Videos"
#: include/identity.php:750 include/identity.php:761 include/nav.php:85
#: include/nav.php:149 mod/events.php:379 mod/cal.php:275
#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
msgid "Events"
msgstr "Eventos"
#: include/identity.php:753 include/identity.php:764 include/nav.php:149
#: view/theme/frio/theme.php:257
msgid "Events and Calendar"
msgstr "Eventos y Calendario"
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr "Notas personales"
#: include/identity.php:775
msgid "Only You Can See This"
msgstr "Únicamente tú puedes ver esto"
#: include/follow.php:77 mod/dfrn_request.php:509
msgid "Disallowed profile URL."
msgstr "Dirección de perfil no permitida."
#: include/follow.php:82
msgid "Connect URL missing."
msgstr "Falta el conector URL."
#: include/follow.php:109
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:110 include/follow.php:130
msgid "No compatible communication protocols or feeds were discovered."
msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles."
#: include/follow.php:128
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:132
msgid "An author or name was not found."
msgstr "No se ha encontrado un autor o nombre."
#: include/follow.php:134
msgid "No browser URL could be matched to this address."
msgstr "Ninguna dirección concuerda con la suministrada."
#: include/follow.php:136
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:137
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:143
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:153
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:254
msgid "Unable to retrieve contact information."
msgstr "No ha sido posible recibir la información del contacto."
#: include/follow.php:287
msgid "following"
msgstr "siguiendo"
#: include/Contact.php:105
msgid "stopped following"
msgstr "dejó de seguir"
#: include/Contact.php:409
msgid "Drop Contact"
msgstr "Eliminar contacto"
#: include/Contact.php:784
msgid "Organisation"
msgstr "Organización"
#: include/Contact.php:787
msgid "News"
msgstr "Noticias"
#: include/Contact.php:790
msgid "Forum"
msgstr "Foro"
#: include/oembed.php:264
msgid "Embedded content"
msgstr "Contenido integrado"
#: include/oembed.php:272
msgid "Embedding disabled"
msgstr "Contenido incrustrado desabilitado"
#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr "Imagen/Foto"
#: include/bbcode.php:465
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr "$1 escribió:"
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr "Contenido cifrado"
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Desconocido | No clasificado"
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Bloquear inmediatamente"
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Sospechoso, spammer, auto-publicidad"
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Le conozco, sin opinión"
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "OK, probablemente inofensivo"
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Buena reputación, tiene mi confianza"
#: include/contact_selectors.php:56 mod/admin.php:890
msgid "Frequently"
msgstr "Frequentemente"
#: include/contact_selectors.php:57 mod/admin.php:891
msgid "Hourly"
msgstr "Cada hora"
#: include/contact_selectors.php:58 mod/admin.php:892
msgid "Twice daily"
msgstr "Dos veces al día"
#: include/contact_selectors.php:59 mod/admin.php:893
msgid "Daily"
msgstr "Diariamente"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Semanalmente"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Mensualmente"
#: include/contact_selectors.php:76 mod/dfrn_request.php:868
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:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
msgid "Email"
msgstr "Correo electrónico"
#: include/contact_selectors.php:80 mod/dfrn_request.php:870
#: mod/settings.php:842
msgid "Diaspora"
msgstr "Diaspora*"
#: include/contact_selectors.php:81
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 "Conector Diaspora"
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr "GNUsocial (OStatus)"
#: include/contact_selectors.php:92
msgid "App.net"
msgstr "App.net"
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr "Hubzilla/Redmatrix"
#: 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\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
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr "El mensaje de error es\n[pre]%s[/pre]"
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
msgstr "Se han encontrados errores creando las tablas de la base de datos."
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr "Errores encontrados al ejecutar cambios en la base de datos."
#: include/auth.php:45
msgid "Logged out."
msgstr "Sesión finalizada"
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
msgid "Login failed."
msgstr "Accesso fallido."
#: include/auth.php:132 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:132 include/user.php:75
msgid "The error message was:"
msgstr "El mensaje del error fue:"
#: include/network.php:595
msgid "view full size"
msgstr "Ver a tamaño completo"
#: include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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 <strong>pueden</strong> 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:209
msgid "Default privacy group for new contacts"
msgstr "Grupo por defecto para nuevos contactos"
#: include/group.php:242
msgid "Everybody"
msgstr "Todo el mundo"
#: include/group.php:265
msgid "edit"
msgstr "editar"
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr "Grupos"
#: include/group.php:288
msgid "Edit groups"
msgstr "Editar grupo"
#: include/group.php:290
msgid "Edit group"
msgstr "Editar grupo"
#: include/group.php:291
msgid "Create a new group"
msgstr "Crear un nuevo grupo"
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr "Nombre del grupo: "
#: include/group.php:294
msgid "Contacts not in any group"
msgstr "Contactos sin grupo"
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr "añadir"
#: include/Photo.php:1040 include/Photo.php:1056 include/Photo.php:1064
#: include/Photo.php:1089 include/message.php:145 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
msgid "Wall Photos"
msgstr "Foto del Muro"
#: include/delivery.php:446
msgid "(no subject)"
msgstr "(sin asunto)"
#: include/user.php:39 mod/settings.php:373
msgid "Passwords do not match. Password unchanged."
msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada."
#: include/user.php:48
msgid "An invitation is required."
msgstr "Se necesita invitación."
#: include/user.php:53
msgid "Invitation could not be verified."
msgstr "No se puede verificar la invitación."
#: include/user.php:61
msgid "Invalid OpenID url"
msgstr "Dirección OpenID no válida"
#: include/user.php:82
msgid "Please enter the required information."
msgstr "Por favor, introduce la información necesaria."
#: include/user.php:96
msgid "Please use a shorter name."
msgstr "Por favor, usa un nombre más corto."
#: include/user.php:98
msgid "Name too short."
msgstr "El nombre es demasiado corto."
#: 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: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:121
msgid "Not a valid email address."
msgstr "No es una dirección de correo electrónico válida."
#: include/user.php:134
msgid "Cannot use that email."
msgstr "No se puede utilizar este correo electrónico."
#: 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:147 include/user.php:245
msgid "Nickname is already registered. Please choose another."
msgstr "Apodo ya registrado. Por favor, elije otro."
#: include/user.php:157
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:173
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado."
#: include/user.php:231
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:256 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr "predeterminado"
#: include/user.php:266
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:345 include/user.php:352 include/user.php:359
#: mod/photos.php:66 mod/photos.php:180 mod/photos.php:751 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1819 mod/profile_photo.php:74
#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210
#: mod/profile_photo.php:302 mod/profile_photo.php:311
msgid "Profile Photos"
msgstr "Foto del perfil"
#: include/user.php:390
#, php-format
msgid ""
"\n"
"\t\tDear %1$s,\n"
"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
"\t"
msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrarse en %2$s. Su cuenta está pendiente de aprobación por el administrador.\n\t"
#: include/user.php:400
#, php-format
msgid "Registration at %s"
msgstr "Registro en %s"
#: include/user.php:410
#, 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\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t"
#: include/user.php:414
#, 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\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/user.php:446 mod/admin.php:1213
#, php-format
msgid "Registration details for %s"
msgstr "Detalles de registro para %s"
#: include/api.php:1018
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."
#: include/api.php:1038
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."
#: include/api.php:1059
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."
#: include/features.php:70
msgid "General Features"
msgstr "Opciones generales"
#: include/features.php:72
msgid "Multiple Profiles"
msgstr "Perfiles multiples"
#: include/features.php:72
msgid "Ability to create multiple profiles"
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:73
msgid "Photo Location"
msgstr "Localización foto"
#: include/features.php:73
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa."
#: include/features.php:74
msgid "Export Public Calendar"
msgstr "Exportar Calendario Público"
#: include/features.php:74
msgid "Ability for visitors to download the public calendar"
msgstr "Posibilidad de los visitantes de descargar el calendario público"
#: include/features.php:79
msgid "Post Composition Features"
msgstr "Opciones de edición de publicaciones."
#: include/features.php:80
msgid "Richtext Editor"
msgstr "Editor de texto sofisticado (richt text editor)"
#: include/features.php:80
msgid "Enable richtext editor"
msgstr "Habilitar editor de textos sofisticado"
#: include/features.php:81
msgid "Post Preview"
msgstr "Previsualizar publicaciones"
#: include/features.php:81
msgid "Allow previewing posts and comments before publishing them"
msgstr "Permitir la previsualización de publicaciones antes de publicar las mismas."
#: include/features.php:82
msgid "Auto-mention Forums"
msgstr "Auto-mencionar foros"
#: include/features.php:82
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL."
#: include/features.php:87
msgid "Network Sidebar Widgets"
msgstr "Accesorios de red del panel lateral"
#: include/features.php:88
msgid "Search by Date"
msgstr "Buscar por fecha"
#: include/features.php:88
msgid "Ability to select posts by date ranges"
msgstr "Habilidad de seleccionar publicaciones por fecha"
#: include/features.php:89 include/features.php:119
msgid "List Forums"
msgstr "Listar foros"
#: include/features.php:89
msgid "Enable widget to display the forums your are connected with"
msgstr "Habilitar la pestaña para mostrar los foros en que estas participando."
#: include/features.php:90
msgid "Group Filter"
msgstr "Filtro del grupo"
#: include/features.php:90
msgid "Enable widget to display Network posts only from selected group"
msgstr "Habilitar accesorios para visualizar publicaciones en la red solo de grupos seleccionados"
#: include/features.php:91
msgid "Network Filter"
msgstr "Filtro de red"
#: include/features.php:91
msgid "Enable widget to display Network posts only from selected network"
msgstr "Habilitar accesorios para visualizar publicaciones solo de las redes seleccionadas."
#: include/features.php:92 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr "Búsquedas guardadas"
#: include/features.php:92
msgid "Save search terms for re-use"
msgstr "Guardar términos de búsqueda para su reutilizacion"
#: include/features.php:97
msgid "Network Tabs"
msgstr "Pestañas de redes"
#: include/features.php:98
msgid "Network Personal Tab"
msgstr "Pestaña actividad personal"
#: include/features.php:98
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Habilitar para visualizar solo publicaciones con las que se ha interactuado"
#: include/features.php:99
msgid "Network New Tab"
msgstr "Pestaña nuevo en la red"
#: include/features.php:99
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Activar para mostrar solo publicaciones nuevas en la red (de las ultimas 12 horas)"
#: include/features.php:100
msgid "Network Shared Links Tab"
msgstr "Pestaña publicaciones con enlaces"
#: include/features.php:100
msgid "Enable tab to display only Network posts with links in them"
msgstr "Habilitar para visualizar solo publicaciones que contienen enlaces"
#: include/features.php:105
msgid "Post/Comment Tools"
msgstr "Herramienta de publicaciones/respuestas"
#: include/features.php:106
msgid "Multiple Deletion"
msgstr "Borrar múltiples publicaciones"
#: include/features.php:106
msgid "Select and delete multiple posts/comments at once"
msgstr "Habilidad de seleccionar y borrar varias publicaciones/comentarios a la vez"
#: include/features.php:107
msgid "Edit Sent Posts"
msgstr "Editar temas enviados"
#: include/features.php:107
msgid "Edit and correct posts and comments after sending"
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:108
msgid "Tagging"
msgstr "taggear"
#: include/features.php:108
msgid "Ability to tag existing posts"
msgstr "Habilidad de taggear publicaciones existentes"
#: include/features.php:109
msgid "Post Categories"
msgstr "Categorías de publicaciones"
#: include/features.php:109
msgid "Add categories to your posts"
msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio."
#: include/features.php:110
msgid "Ability to file posts under folders"
msgstr "Archivar publicaciones en carpetas"
#: include/features.php:111
msgid "Dislike Posts"
msgstr "Desaprobar publicación (dislike)"
#: include/features.php:111
msgid "Ability to dislike posts/comments"
msgstr "Habilidad de expresar desacuerdo en publicaciones y comentarios. Esta función solo es visualizado en la red friendica."
#: include/features.php:112
msgid "Star Posts"
msgstr "Fijar publicaciones"
#: include/features.php:112
msgid "Ability to mark special posts with a star indicator"
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:113
msgid "Mute Post Notifications"
msgstr "Silenciar notificaciones de una publicacion"
#: include/features.php:113
msgid "Ability to mute notifications for a thread"
msgstr "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación."
#: include/features.php:118
msgid "Advanced Profile Settings"
msgstr "Ajustes avanzados del perfil"
#: include/features.php:119
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr "Nada nuevo por aquí"
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr "Limpiar notificaciones"
#: include/nav.php:78 view/theme/frio/theme.php:246
msgid "End this session"
msgstr "Cerrar la sesión"
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
msgid "Your posts and conversations"
msgstr "Tus publicaciones y conversaciones"
#: include/nav.php:82 view/theme/frio/theme.php:250
msgid "Your profile page"
msgstr "Tu página de perfil"
#: include/nav.php:83 view/theme/frio/theme.php:251
msgid "Your photos"
msgstr "Tus fotos"
#: include/nav.php:84 view/theme/frio/theme.php:252
msgid "Your videos"
msgstr "Tus videos"
#: include/nav.php:85 view/theme/frio/theme.php:253
msgid "Your events"
msgstr "Tus eventos"
#: include/nav.php:86
msgid "Personal notes"
msgstr "Notas personales"
#: include/nav.php:86
msgid "Your personal notes"
msgstr "Tus notas personales"
#: include/nav.php:95
msgid "Sign in"
msgstr "Date de alta"
#: include/nav.php:105
msgid "Home Page"
msgstr "Página de inicio"
#: include/nav.php:109
msgid "Create an account"
msgstr "Crea una cuenta"
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
msgid "Help"
msgstr "Ayuda"
#: include/nav.php:115
msgid "Help and documentation"
msgstr "Ayuda y documentación"
#: include/nav.php:119
msgid "Apps"
msgstr "Aplicaciones"
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr "Aplicaciones, utilidades, juegos"
#: include/nav.php:123
msgid "Search site content"
msgstr " Busca contenido en la página"
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
msgid "Community"
msgstr "Comunidad"
#: include/nav.php:143
msgid "Conversations on this site"
msgstr "Conversaciones en este sitio"
#: include/nav.php:145
msgid "Conversations on the network"
msgstr "Conversaciones en la red"
#: include/nav.php:152
msgid "Directory"
msgstr "Directorio"
#: include/nav.php:152
msgid "People directory"
msgstr "Directorio de usuarios"
#: include/nav.php:154
msgid "Information"
msgstr "Información"
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr "Información sobre esta instancia de friendica"
#: include/nav.php:158 view/theme/frio/theme.php:256
msgid "Conversations from your friends"
msgstr "Conversaciones de tus amigos"
#: include/nav.php:159
msgid "Network Reset"
msgstr "Reseteo de la red"
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr "Cargar pagina de redes sin filtros"
#: include/nav.php:166
msgid "Friend Requests"
msgstr "Solicitudes de amistad"
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr "Notificaciones"
#: include/nav.php:170
msgid "See all notifications"
msgstr "Ver todas las notificaciones"
#: include/nav.php:171 mod/settings.php:902
msgid "Mark as seen"
msgstr "Marcar como leído"
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr "Marcar todas las notificaciones del sistema como leídas"
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
msgid "Messages"
msgstr "Mensajes"
#: include/nav.php:175 view/theme/frio/theme.php:258
msgid "Private mail"
msgstr "Correo privado"
#: include/nav.php:176
msgid "Inbox"
msgstr "Entrada"
#: include/nav.php:177
msgid "Outbox"
msgstr "Enviados"
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr "Nuevo mensaje"
#: include/nav.php:181
msgid "Manage"
msgstr "Administrar"
#: include/nav.php:181
msgid "Manage other pages"
msgstr "Administrar otras páginas"
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr "Delegaciones"
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr "Delegar la administración de la página"
#: include/nav.php:186 mod/admin.php:1524 mod/admin.php:1782
#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:259
msgid "Settings"
msgstr "Configuración"
#: include/nav.php:186 view/theme/frio/theme.php:259
msgid "Account settings"
msgstr "Configuración de tu cuenta"
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr "Manejar/editar Perfiles"
#: include/nav.php:192 view/theme/frio/theme.php:260
msgid "Manage/edit friends and contacts"
msgstr "Administrar/editar amigos y contactos"
#: include/nav.php:197 mod/admin.php:186
msgid "Admin"
msgstr "Admin"
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr "Opciones y configuración del sitio"
#: include/nav.php:200
msgid "Navigation"
msgstr "Navegación"
#: include/nav.php:200
msgid "Site map"
msgstr "Mapa del sitio"
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr "%1$s atenderá %2$s's %3$s"
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr "%1$s no atenderá %2$s's %3$s"
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr "%1$s puede que atienda %2$s's %3$s"
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr "Publicar mediante correo electrónico"
#: include/acl_selectors.php:332
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado."
#: include/acl_selectors.php:333 mod/settings.php:1181
msgid "Hide your profile details from unknown viewers?"
msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr "Visible para cualquiera"
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
msgid "show"
msgstr "mostrar"
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
msgid "don't show"
msgstr "no mostrar"
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr "CC: dirección de correo electrónico"
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr "Permisos"
#: include/acl_selectors.php:350
msgid "Close"
msgstr "Cerrado"
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[sin asunto]"
#: index.php:244 mod/apps.php:7
msgid "You must be logged in to use addons. "
msgstr "Tienes que estar registrado para tener acceso a los accesorios."
#: index.php:288 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52
#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
msgid "Not Found"
msgstr "No se ha encontrado"
#: index.php:291 mod/help.php:56
msgid "Page not found."
msgstr "Página no encontrada."
#: index.php:400 mod/profperm.php:19 mod/group.php:72
msgid "Permission denied"
msgstr "Permiso denegado"
#: index.php:451
msgid "toggle mobile"
msgstr "Cambiar a versión móvil"
#: mod/regmod.php:55
msgid "Account approved."
msgstr "Cuenta aprobada."
#: mod/regmod.php:92
#, php-format
msgid "Registration revoked for %s"
msgstr "Registro anulado para %s"
#: mod/regmod.php:104
msgid "Please login."
msgstr "Por favor accede."
#: mod/oexchange.php:25
msgid "Post successful."
msgstr "¡Publicado!"
#: mod/update_community.php:19 mod/update_notes.php:36
#: mod/update_display.php:23 mod/update_profile.php:35
#: mod/update_network.php:27
msgid "[Embedded content - reload page to view]"
msgstr "[Contenido incrustado - recarga la página para verlo]"
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr "Buscar perfiles - %s"
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr "Búsqueda de foro - %s"
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr "Sin conincidencias"
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr "Acceso denegado."
@ -3121,9 +3236,9 @@ msgstr "Notificaciones del sistema"
msgid "Remove term"
msgstr "Eliminar término"
#: mod/search.php:93 mod/search.php:99 mod/dfrn_request.php:790
#: mod/community.php:22 mod/directory.php:37 mod/display.php:200
#: mod/photos.php:944 mod/videos.php:194 mod/viewcontacts.php:35
#: mod/search.php:93 mod/search.php:99 mod/directory.php:37
#: mod/viewcontacts.php:35 mod/videos.php:194 mod/photos.php:944
#: mod/display.php:200 mod/community.php:22 mod/dfrn_request.php:791
msgid "Public access denied."
msgstr "Acceso público denegado."
@ -3153,6 +3268,210 @@ msgstr "Objetos taggeado con: %s"
msgid "Results for: %s"
msgstr "Resultados para: %s"
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr "Solicitud de identificación no válida."
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
msgstr "Descartar"
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:1000
msgid "Ignore"
msgstr "Ignorar"
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr "Notificaciones de Red"
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr "Notificaciones personales"
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr "Notificaciones de Inicio"
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr "Mostrar peticiones ignoradas"
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr "Ocultar peticiones ignoradas"
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr "Tipo de notificación: "
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr "sugerido por %s"
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr "Ocultar este contacto a los demás."
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr "Publica tu nueva amistad"
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr "Si corresponde"
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
msgid "Approve"
msgstr "Aprobar"
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr "Dice conocerte: "
#: mod/notifications.php:196
msgid "yes"
msgstr "sí"
#: mod/notifications.php:196
msgid "no"
msgstr "no"
#: mod/notifications.php:197
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:200
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:209
msgid "Friend"
msgstr "Amigo"
#: mod/notifications.php:210
msgid "Sharer"
msgstr "Lector"
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr "Fan/Admirador"
#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
msgid "Profile URL"
msgstr "URL Perfil"
#: mod/notifications.php:260
msgid "No introductions."
msgstr "Sin presentaciones."
#: mod/notifications.php:299
msgid "Show unread"
msgstr "Mostrar no leído"
#: mod/notifications.php:299
msgid "Show all"
msgstr "Mostrar todo"
#: mod/notifications.php:305
#, php-format
msgid "No more %s notifications."
msgstr "No más notificaciones de %s."
#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:617
msgid "Profile not found."
msgstr "Perfil no encontrado."
#: mod/dfrn_confirm.php:126 mod/fsuggest.php:20 mod/fsuggest.php:92
#: mod/crepair.php:114
msgid "Contact not found."
msgstr "Contacto no encontrado."
#: mod/dfrn_confirm.php:127
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:246
msgid "Response from remote site was not understood."
msgstr "La respuesta desde el sitio remoto no ha sido entendida."
#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
msgid "Unexpected response from remote site: "
msgstr "Respuesta inesperada desde el sitio remoto: "
#: mod/dfrn_confirm.php:269
msgid "Confirmation completed successfully."
msgstr "Confirmación completada con éxito."
#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
msgid "Remote site reported: "
msgstr "El sito remoto informó: "
#: mod/dfrn_confirm.php:283
msgid "Temporary failure. Please wait and try again."
msgstr "Error temporal. Por favor, espere y vuelva a intentarlo."
#: mod/dfrn_confirm.php:290
msgid "Introduction failed or was revoked."
msgstr "La presentación ha fallado o ha sido anulada."
#: mod/dfrn_confirm.php:419
msgid "Unable to set contact photo."
msgstr "Imposible establecer la foto del contacto."
#: mod/dfrn_confirm.php:557
#, php-format
msgid "No user record found for '%s' "
msgstr "No se ha encontrado a ningún '%s' "
#: mod/dfrn_confirm.php:567
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:578
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:599
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:613
#, 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:633
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:644
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:703
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:775
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s se ha unido a %2$s"
#: mod/friendica.php:70
msgid "This is Friendica, version"
msgstr "Esto es Friendica, versión"
@ -3241,10 +3560,6 @@ msgid ""
"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:1793
msgid "Password Reset"
msgstr "Restablecer la contraseña"
#: mod/lostpass.php:110
msgid "Your password has been reset as requested."
msgstr "Tu contraseña ha sido restablecida como solicitaste."
@ -3307,10 +3622,6 @@ msgid ""
"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 boot.php:1781
msgid "Nickname or Email: "
msgstr "Apodo o Correo electrónico: "
#: mod/lostpass.php:162
msgid "Reset"
msgstr "Restablecer"
@ -3323,34 +3634,51 @@ msgstr "Nigún perfil"
msgid "Help:"
msgstr "Ayuda:"
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
#: mod/fetch.php:39 mod/fetch.php:48 index.php:284
msgid "Not Found"
msgstr "No se ha encontrado"
#: mod/help.php:56 index.php:287
msgid "Page not found."
msgstr "Página no encontrada."
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
#: mod/wall_attach.php:25 mod/wall_attach.php:76
msgid "Invalid request."
msgstr "Consulta invalida"
#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:786
#: mod/wall_upload.php:151 mod/photos.php:786 mod/profile_photo.php:150
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "La imagen excede el limite de %s"
#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:826
#: mod/wall_upload.php:188 mod/photos.php:826 mod/profile_photo.php:159
msgid "Unable to process image."
msgstr "Imposible procesar la imagen."
#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:853
#: mod/wall_upload.php:221 mod/photos.php:853 mod/profile_photo.php:307
msgid "Image upload failed."
msgstr "Error al subir la imagen."
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Solicitud de amistad enviada."
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Sugerencias de amistad"
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Recomienda un amigo a %s"
#: mod/fsuggest.php:107 mod/events.php:506 mod/invite.php:140
#: mod/crepair.php:154 mod/content.php:728 mod/profiles.php:688
#: mod/poke.php:199 mod/photos.php:1104 mod/photos.php:1226
#: mod/photos.php:1539 mod/photos.php:1590 mod/photos.php:1638
#: mod/photos.php:1724 mod/install.php:272 mod/install.php:312
#: mod/contacts.php:577 mod/mood.php:137 mod/localtime.php:45
#: mod/message.php:357 mod/message.php:547 mod/manage.php:143
#: object/Item.php:720 view/theme/frio/config.php:59
#: view/theme/quattro/config.php:64 view/theme/vier/config.php:107
#: view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr "Envíar"
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Privacidad de la información remota no disponible."
@ -3359,6 +3687,94 @@ msgstr "Privacidad de la información remota no disponible."
msgid "Visible to:"
msgstr "Visible para:"
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr "Un evento no puede terminar antes de su comienzo."
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr "Título del evento y hora de inicio requeridas."
#: mod/events.php:380 mod/cal.php:276
msgid "View"
msgstr "Vista"
#: mod/events.php:381
msgid "Create New Event"
msgstr "Crea un evento nuevo"
#: mod/events.php:382 mod/cal.php:277
msgid "Previous"
msgstr "Previo"
#: mod/events.php:383 mod/cal.php:278 mod/install.php:231
msgid "Next"
msgstr "Siguiente"
#: mod/events.php:392 mod/cal.php:287
msgid "list"
msgstr "lista"
#: mod/events.php:482
msgid "Event details"
msgstr "Detalles del evento"
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr "Se requiere fecha de comienzo y titulo"
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr "Inicio del evento:"
#: mod/events.php:484 mod/events.php:496 mod/profiles.php:716
msgid "Required"
msgstr "Obligatorio"
#: mod/events.php:486 mod/events.php:502
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:488 mod/events.php:489
msgid "Event Finishes:"
msgstr "Finalización del evento:"
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr "Ajuste de zona horaria"
#: mod/events.php:492
msgid "Description:"
msgstr "Descripción:"
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr "Título:"
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr "Comparte este evento"
#: mod/directory.php:197 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr "Directorio global"
#: mod/directory.php:199
msgid "Find on this site"
msgstr "Buscar en este sitio"
#: mod/directory.php:201
msgid "Results for:"
msgstr "Resultados para:"
#: mod/directory.php:203
msgid "Site Directory"
msgstr "Directorio del sitio"
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr "Sin entradas (algunas pueden que estén ocultas)."
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "Error de protocolo OpenID. ID no devuelta."
@ -3368,13 +3784,13 @@ 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/uimport.php:50 mod/register.php:191
#: mod/uimport.php:50 mod/register.php:198
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/uimport.php:64 mod/register.php:286
#: mod/uimport.php:64 mod/register.php:295
msgid "Import"
msgstr "Importar"
@ -3409,8 +3825,8 @@ msgid ""
"select \"Export account\""
msgstr "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""
#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:939
#: mod/viewcontacts.php:97
#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586
#: mod/contacts.php:939
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Ver el perfil de %s [%s]"
@ -3423,6 +3839,18 @@ msgstr "Modificar contacto"
msgid "Contacts who are not members of a group"
msgstr "Contactos sin grupo"
#: mod/match.php:33
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:86
msgid "is interested in:"
msgstr "estás interesado en:"
#: mod/match.php:100
msgid "Profile Match"
msgstr "Coincidencias de Perfil"
#: mod/uexport.php:29
msgid "Export account"
msgstr "Exportar cuenta"
@ -3545,27 +3973,13 @@ msgid ""
"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/invite.php:140 mod/localtime.php:45 mod/message.php:357
#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
#: mod/profiles.php:688 mod/contacts.php:577 mod/events.php:506
#: mod/install.php:272 mod/install.php:312 mod/photos.php:1104
#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
#: mod/photos.php:1638 mod/photos.php:1724 object/Item.php:720
#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80
#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70
#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633
#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr "Envíar"
#: mod/fbrowser.php:133
msgid "Files"
msgstr "Archivos"
#: mod/profperm.php:19 mod/group.php:72 index.php:396
msgid "Permission denied"
msgstr "Permiso denegado"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr "Servicio suspendido por mantenimiento"
#: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier."
@ -3587,689 +4001,9 @@ msgstr "Visible para"
msgid "All Contacts (with secure profile access)"
msgstr "Todos los contactos (con perfil de acceso seguro)"
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr "Etiqueta eliminada"
#: mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Eliminar etiqueta"
#: mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Selecciona una etiqueta para eliminar: "
#: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr "Eliminar"
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr "Si no - intento de subir un archivo vacío?"
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr "El archivo excede el limite de tamaño de %s"
#: mod/wall_attach.php:156 mod/wall_attach.php:172
msgid "File upload failed."
msgstr "Ha fallado la subida del archivo."
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr "Resubscribir a contactos de OStatus"
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "error"
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
msgid "Done"
msgstr "hecho!"
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
msgid "Keep this window open until done."
msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado."
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "No se han localizado delegados potenciales de la página."
#: 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
msgid "Existing Page Managers"
msgstr "Administradores actuales de la página"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Delegados actuales de la página"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Delegados potenciales"
#: mod/delegate.php:140
msgid "Add"
msgstr "Añadir"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Sin entradas."
#: mod/credits.php:16
msgid "Credits"
msgstr "Creditos"
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! "
#: mod/filer.php:30
msgid "- select -"
msgstr "- seleccionar -"
#: 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/attach.php:8
msgid "Item not available."
msgstr "Elemento no disponible."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Elemento no encontrado."
#: mod/follow.php:19 mod/dfrn_request.php:874
msgid "Submit Request"
msgstr "Enviar solicitud"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr "Ya has añadido este contacto."
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado."
#: mod/follow.php:109 mod/dfrn_request.php:860
msgid "Please answer the following:"
msgstr "Por favor responde lo siguiente:"
#: mod/follow.php:110 mod/dfrn_request.php:861
#, php-format
msgid "Does %s know you?"
msgstr "¿%s te conoce?"
#: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861
#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
#: mod/register.php:239 mod/settings.php:1158 mod/settings.php:1164
#: mod/settings.php:1172 mod/settings.php:1176 mod/settings.php:1181
#: mod/settings.php:1187 mod/settings.php:1193 mod/settings.php:1199
#: mod/settings.php:1225 mod/settings.php:1226 mod/settings.php:1227
#: mod/settings.php:1228 mod/settings.php:1229
msgid "No"
msgstr "No"
#: mod/follow.php:111 mod/dfrn_request.php:865
msgid "Add a personal note:"
msgstr "Añade una nota personal:"
#: mod/follow.php:117 mod/dfrn_request.php:871
msgid "Your Identity Address:"
msgstr "Dirección de tu perfil:"
#: mod/follow.php:126 mod/notifications.php:243 mod/contacts.php:624
msgid "Profile URL"
msgstr "URL Perfil"
#: mod/follow.php:180
msgid "Contact added"
msgstr "Contacto añadido"
#: mod/apps.php:7 index.php:240
msgid "You must be logged in to use addons. "
msgstr "Tienes que estar registrado para tener acceso a los accesorios."
#: mod/apps.php:11
msgid "Applications"
msgstr "Aplicaciones"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Sin aplicaciones"
#: mod/p.php:9
msgid "Not Extended"
msgstr "No extendido"
#: mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Bienvenido a Friendica "
#: mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Listado de nuevos miembros"
#: 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 "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
msgid "Getting Started"
msgstr "Empezando"
#: mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Visita guiada a Friendica"
#: mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> 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 <em>Inicio Rápido</em> - 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:26
msgid "Go to Your Settings"
msgstr "Ir a tus ajustes"
#: mod/newmember.php:26
msgid ""
"On your <em>Settings</em> 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 <em>Configuración</em> 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
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 "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:250 mod/profiles.php:707
msgid "Upload Profile Photo"
msgstr "Subir foto del Perfil"
#: 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
msgid "Edit Your Profile"
msgstr "Editar tu perfil"
#: mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Edita tu perfil <strong>predeterminado</strong> como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."
#: mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Palabras clave del perfil"
#: 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
msgid "Connecting"
msgstr "Conectando"
#: mod/newmember.php:51
msgid "Importing Emails"
msgstr "Importando correos electrónicos"
#: mod/newmember.php:51
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:53
msgid "Go to Your Contacts Page"
msgstr "Ir a tu página de contactos"
#: mod/newmember.php:53
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 <em>Add New Contact</em> 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:55
msgid "Go to Your Site's Directory"
msgstr "Ir al directorio de tu sitio"
#: mod/newmember.php:55
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> 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 <em>Conectar</em> o <em>Seguir</em> en su perfil. Proporciona tu direción personal si es necesario."
#: mod/newmember.php:57
msgid "Finding New People"
msgstr "Encontrando nueva gente"
#: mod/newmember.php:57
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 "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:65
msgid "Group Your Contacts"
msgstr "Agrupa tus contactos"
#: mod/newmember.php:65
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:68
msgid "Why Aren't My Posts Public?"
msgstr "¿Por qué mis publicaciones no son públicas?"
#: mod/newmember.php:68
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:73
msgid "Getting Help"
msgstr "Consiguiendo ayuda"
#: mod/newmember.php:77
msgid "Go to the Help Section"
msgstr "Ir a la sección de ayuda"
#: mod/newmember.php:77
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Puedes consultar nuestra página de <strong>Ayuda</strong> para más información y recursos de ayuda."
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr "Eliminar mi cuenta"
#: 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
msgid "Please enter your password for verification:"
msgstr "Por favor, introduce tu contraseña para la verificación:"
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Elemento no encontrado"
#: mod/editpost.php:40
msgid "Edit post"
msgstr "Editar publicación"
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr "Conversión horária"
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
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
#, php-format
msgid "UTC time: %s"
msgstr "Tiempo UTC: %s"
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Zona horaria actual: %s"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Zona horaria local convertida: %s"
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Por favor, selecciona tu zona horaria:"
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr "La publicación fue creada"
#: mod/group.php:29
msgid "Group created."
msgstr "Grupo creado."
#: mod/group.php:35
msgid "Could not create group."
msgstr "Imposible crear el grupo."
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr "Grupo no encontrado."
#: mod/group.php:60
msgid "Group name changed."
msgstr "El nombre del grupo ha cambiado."
#: mod/group.php:87
msgid "Save Group"
msgstr "Guardar grupo"
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Crea un grupo de contactos/amigos."
#: mod/group.php:113
msgid "Group removed."
msgstr "Grupo eliminado."
#: mod/group.php:115
msgid "Unable to remove group."
msgstr "No se puede eliminar el grupo."
#: mod/group.php:177
msgid "Group Editor"
msgstr "Editor de grupos"
#: mod/group.php:190
msgid "Members"
msgstr "Miembros"
#: mod/group.php:192 mod/contacts.php:692
msgid "All Contacts"
msgstr "Todos los contactos"
#: mod/group.php:193 mod/content.php:130 mod/network.php:495
msgid "Group is empty"
msgstr "El grupo está vacío"
#: 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:56 mod/message.php:71
msgid "No recipient selected."
msgstr "Ningún destinatario seleccionado"
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Imposible comprobar tu servidor de inicio."
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr "El mensaje no ha podido ser enviado."
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr "Fallo en la recolección de mensajes."
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr "Mensaje enviado."
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Sin receptor."
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr "Enviar mensaje privado"
#: 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/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr "Para:"
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr "Asunto:"
#: mod/share.php:38
msgid "link"
msgstr "enlace"
#: 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
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
msgid "Please login to continue."
msgstr "Inicia sesión para continuar."
#: 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/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Texto fuente (bbcode):"
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Fuente (Diaspora) para pasar a BBcode:"
#: mod/babel.php:31
msgid "Source input: "
msgstr "Entrada: "
#: 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 "Fuente (formato Diaspora): "
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: mod/ostatus_subscribe.php:14
msgid "Subscribing to OStatus contacts"
msgstr "Subscribir a los contactos de OStatus"
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr "Sin suministro de datos de contacto."
#: mod/ostatus_subscribe.php:30
msgid "Couldn't fetch information for contact."
msgstr "No se ha podido conseguir la información del contacto."
#: mod/ostatus_subscribe.php:38
msgid "Couldn't fetch friends for contact."
msgstr "No se ha podido conseguir datos de amigos para contactar."
#: mod/ostatus_subscribe.php:65
msgid "success"
msgstr "exito!"
#: mod/ostatus_subscribe.php:67
msgid "failed"
msgstr "fallido!"
#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
msgid "ignored"
msgstr "ignorado"
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s te da la bienvenida a %2$s"
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr "No se puede encontrar información del contacto."
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr "¿Estás seguro de que quieres borrar este mensaje?"
#: mod/message.php:235
msgid "Message deleted."
msgstr "Mensaje eliminado."
#: mod/message.php:266
msgid "Conversation removed."
msgstr "Conversación eliminada."
#: mod/message.php:383
msgid "No messages."
msgstr "No hay mensajes."
#: mod/message.php:426
msgid "Message not available."
msgstr "Mensaje no disponibile."
#: mod/message.php:503
msgid "Delete message"
msgstr "Borrar mensaje"
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr "Eliminar conversación"
#: mod/message.php:531
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "No hay comunicaciones seguras disponibles. <strong>Podrías</strong> responder desde la página de perfil del remitente. "
#: mod/message.php:535
msgid "Send Reply"
msgstr "Enviar respuesta"
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr "Remitente desconocido - %s"
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr "Tú y %s"
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr "%s y Tú"
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d mensaje"
msgstr[1] "%d mensajes"
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr "Administrar identidades y/o páginas"
#: mod/manage.php:140
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:141
msgid "Select an identity to manage: "
msgstr "Selecciona una identidad a gestionar:"
#: mod/viewcontacts.php:72
msgid "No contacts."
msgstr "Ningún contacto."
#: mod/crepair.php:87
msgid "Contact settings applied."
@ -4279,11 +4013,6 @@ msgstr "Contacto configurado con éxito."
msgid "Contact update failed."
msgstr "Error al actualizar el Contacto."
#: mod/crepair.php:114 mod/dfrn_confirm.php:122 mod/fsuggest.php:20
#: mod/fsuggest.php:92
msgid "Contact not found."
msgstr "Contacto no encontrado."
#: mod/crepair.php:120
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
@ -4330,9 +4059,9 @@ msgid ""
"entries from this contact."
msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta."
#: mod/crepair.php:165 mod/admin.php:1367 mod/admin.php:1380
#: mod/admin.php:1392 mod/admin.php:1408 mod/settings.php:678
#: mod/settings.php:704
#: mod/crepair.php:165 mod/admin.php:1396 mod/admin.php:1409
#: mod/admin.php:1422 mod/admin.php:1438 mod/settings.php:680
#: mod/settings.php:706
msgid "Name"
msgstr "Nombre"
@ -4368,161 +4097,1501 @@ msgstr "Dirección del Sondeo/Fuentes"
msgid "New photo from this URL"
msgstr "Nueva foto de esta dirección"
#: mod/dfrn_request.php:100
msgid "This introduction has already been accepted."
msgstr "Esta presentación ya ha sido aceptada."
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr "Etiqueta eliminada"
#: mod/dfrn_request.php:123 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/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Eliminar etiqueta"
#: mod/dfrn_request.php:128 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/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Selecciona una etiqueta para eliminar: "
#: mod/dfrn_request.php:130 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/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr "Eliminar"
#: mod/dfrn_request.php:133 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/ping.php:261
msgid "{0} wants to be your friend"
msgstr "{0} quiere ser tu amigo"
#: mod/dfrn_request.php:178
msgid "Introduction complete."
msgstr "Presentación completa."
#: mod/ping.php:276
msgid "{0} sent you a message"
msgstr "{0} te ha enviado un mensaje"
#: mod/dfrn_request.php:220
msgid "Unrecoverable protocol error."
msgstr "Error de protocolo irrecuperable."
#: mod/ping.php:291
msgid "{0} requested registration"
msgstr "{0} solicitudes de registro"
#: mod/dfrn_request.php:248
msgid "Profile unavailable."
msgstr "Perfil no disponible."
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr "Configuración de la apariencia actualizada."
#: mod/dfrn_request.php:273
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s ha recibido demasiadas solicitudes de conexión hoy."
#: mod/admin.php:156 mod/admin.php:954
msgid "Site"
msgstr "Sitio"
#: mod/dfrn_request.php:274
msgid "Spam protection measures have been invoked."
msgstr "Han sido activadas las medidas de protección contra spam."
#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
msgid "Users"
msgstr "Usuarios"
#: mod/dfrn_request.php:275
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/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 mod/settings.php:74
msgid "Plugins"
msgstr "Módulos"
#: mod/dfrn_request.php:337
msgid "Invalid locator"
msgstr "Localizador no válido"
#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
msgid "Themes"
msgstr "Temas"
#: mod/dfrn_request.php:346
msgid "Invalid email address."
msgstr "Dirección de correo incorrecta"
#: mod/admin.php:160 mod/settings.php:52
msgid "Additional features"
msgstr "Características adicionales"
#: mod/dfrn_request.php:373
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/admin.php:161
msgid "DB updates"
msgstr "Actualizaciones de la Base de Datos"
#: mod/dfrn_request.php:476
msgid "You have already introduced yourself here."
msgstr "Ya te has presentado aquí."
#: mod/admin.php:162 mod/admin.php:406
msgid "Inspect Queue"
msgstr "Inspeccionar cola"
#: mod/dfrn_request.php:480
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Al parecer, ya eres amigo de %s."
#: mod/admin.php:163 mod/admin.php:372
msgid "Federation Statistics"
msgstr "Estadísticas de federación"
#: mod/dfrn_request.php:501
msgid "Invalid profile URL."
msgstr "Dirección de perfil no válida."
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
msgid "Logs"
msgstr "Registros"
#: mod/dfrn_request.php:579 mod/contacts.php:208
msgid "Failed to update contact record."
msgstr "Error al actualizar el contacto."
#: mod/admin.php:178 mod/admin.php:1972
msgid "View Logs"
msgstr "Ver registro de depuración"
#: mod/dfrn_request.php:600
msgid "Your introduction has been sent."
msgstr "Tu presentación ha sido enviada."
#: mod/admin.php:179
msgid "probe address"
msgstr "probar direccion"
#: mod/dfrn_request.php:640
#: mod/admin.php:180
msgid "check webfinger"
msgstr "Verificar webfinger"
#: mod/admin.php:187
msgid "Plugin Features"
msgstr "Características del módulo"
#: mod/admin.php:189
msgid "diagnostics"
msgstr "diagnosticos"
#: mod/admin.php:190
msgid "User registrations waiting for confirmation"
msgstr "Registro de usuarios esperando la confirmación"
#: mod/admin.php:306
msgid "unknown"
msgstr "desconocido"
#: mod/admin.php:365
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "
#: mod/dfrn_request.php:663
msgid "Please login to confirm introduction."
msgstr "Inicia sesión para confirmar la presentación."
#: mod/dfrn_request.php:673
#: mod/admin.php:366
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Sesión iniciada con la identificación incorrecta. Entra en <strong>este</strong> perfil."
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr "El modulo <em>directorio de contactos encontrados</em> no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí."
#: mod/dfrn_request.php:687 mod/dfrn_request.php:704
msgid "Confirm"
msgstr "Confirmar"
#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
msgid "Administration"
msgstr "Administración"
#: mod/dfrn_request.php:699
msgid "Hide this contact"
msgstr "Ocultar este contacto"
#: mod/dfrn_request.php:702
#: mod/admin.php:378
#, php-format
msgid "Welcome home %s."
msgstr "Bienvenido a casa %s"
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr "Actualmente este nodo reconoce %d nodos de las siguientes plataformas:"
#: mod/dfrn_request.php:703
#, 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/admin.php:408
msgid "ID"
msgstr "ID"
#: mod/dfrn_request.php:832
#: mod/admin.php:409
msgid "Recipient Name"
msgstr "Nombre del recipiente"
#: mod/admin.php:410
msgid "Recipient Profile"
msgstr "Perfil del recipiente"
#: mod/admin.php:412
msgid "Created"
msgstr "Creado"
#: mod/admin.php:413
msgid "Last Tried"
msgstr "Ultimo intento"
#: mod/admin.php:414
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:"
"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/dfrn_request.php:853
#: mod/admin.php:439
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr "Si aun no eres miembro de la red social libre <a href=\"%s/siteinfo\">seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo</a>"
"Your DB still runs with MyISAM tables. You should change the engine type to "
"InnoDB. As Friendica will use InnoDB only features in the future, you should"
" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
"converting the table engines. You may also use the "
"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
"Friendica installation.<br />"
msgstr "Su DB aún funciona con las tablas MyISAM. Debería cambiar el tipo de motror a InnoDB. ¡Como Friendica sólo usará las características de InnoDB en el futuro, debería cambiar esto! Vea <a href=\"%s\">aquí</a> para una guía que puede ayudar a convertir las tablas de motor. También puede usar <tt>convert_innodb.sql</tt> en el directorio <tt>/util</tt> de su instalación de Friendica.<br />"
#: mod/dfrn_request.php:858
msgid "Friend/Connection Request"
msgstr "Solicitud de Amistad/Conexión"
#: mod/dfrn_request.php:859
#: mod/admin.php:444
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"
"You are using a MySQL version which does not support all features that "
"Friendica uses. You should consider switching to MariaDB."
msgstr "Está usando una versión de MySQL que no soporta todas las características de Friendica. Debería considerar cambiar a MariaDB."
#: mod/dfrn_request.php:868
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Web Social Federada"
#: mod/admin.php:448 mod/admin.php:1352
msgid "Normal Account"
msgstr "Cuenta normal"
#: mod/dfrn_request.php:870
#: mod/admin.php:449 mod/admin.php:1353
msgid "Soapbox Account"
msgstr "Cuenta tribuna"
#: mod/admin.php:450 mod/admin.php:1354
msgid "Community/Celebrity Account"
msgstr "Cuenta de Comunidad/Celebridad"
#: mod/admin.php:451 mod/admin.php:1355
msgid "Automatic Friend Account"
msgstr "Cuenta de amistad automática"
#: mod/admin.php:452
msgid "Blog Account"
msgstr "Cuenta de blog"
#: mod/admin.php:453
msgid "Private Forum"
msgstr "Foro privado"
#: mod/admin.php:479
msgid "Message queues"
msgstr "Cola de mensajes"
#: mod/admin.php:485
msgid "Summary"
msgstr "Resumen"
#: mod/admin.php:488
msgid "Registered users"
msgstr "Usuarios registrados"
#: mod/admin.php:490
msgid "Pending registrations"
msgstr "Pendientes de registro"
#: mod/admin.php:491
msgid "Version"
msgstr "Versión"
#: mod/admin.php:496
msgid "Active plugins"
msgstr "Módulos activos"
#: mod/admin.php:521
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos <scheme>://<domain>"
#: mod/admin.php:826
msgid "RINO2 needs mcrypt php extension to work."
msgstr "RINO2 precisa la extensión mcrypt para funcionar. "
#: mod/admin.php:834
msgid "Site settings updated."
msgstr "Configuración de actualización."
#: mod/admin.php:862 mod/settings.php:934
msgid "No special theme for mobile devices"
msgstr "No hay tema especial para dispositivos móviles"
#: mod/admin.php:881
msgid "No community page"
msgstr "No hay pagina de comunidad"
#: mod/admin.php:882
msgid "Public postings from users of this site"
msgstr "Temas públicos de perfiles de este sitio."
#: mod/admin.php:883
msgid "Global community page"
msgstr "Pagina global de comunidad"
#: mod/admin.php:888 mod/contacts.php:530
msgid "Never"
msgstr "Nunca"
#: mod/admin.php:889
msgid "At post arrival"
msgstr "A la llegada de una publicación"
#: mod/admin.php:897 mod/contacts.php:557
msgid "Disabled"
msgstr "Deshabilitado"
#: mod/admin.php:899
msgid "Users, Global Contacts"
msgstr "Perfiles, contactos globales"
#: mod/admin.php:900
msgid "Users, Global Contacts/fallback"
msgstr "Perfiles, contactos globales/fallback"
#: mod/admin.php:904
msgid "One month"
msgstr "Un mes"
#: mod/admin.php:905
msgid "Three months"
msgstr "Tres meses"
#: mod/admin.php:906
msgid "Half a year"
msgstr "Medio año"
#: mod/admin.php:907
msgid "One year"
msgstr "Un año"
#: mod/admin.php:912
msgid "Multi user instance"
msgstr "Sesión multi usuario"
#: mod/admin.php:935
msgid "Closed"
msgstr "Cerrado"
#: mod/admin.php:936
msgid "Requires approval"
msgstr "Requiere aprobación"
#: mod/admin.php:937
msgid "Open"
msgstr "Abierto"
#: mod/admin.php:941
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:942
msgid "Force all links to use SSL"
msgstr "Forzar todos los enlaces a utilizar SSL"
#: mod/admin.php:943
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:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
#: mod/admin.php:2055 mod/settings.php:678 mod/settings.php:788
#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
#: mod/settings.php:1264
msgid "Save Settings"
msgstr "Guardar configuración"
#: mod/admin.php:956 mod/register.php:272
msgid "Registration"
msgstr "Registro"
#: mod/admin.php:957
msgid "File upload"
msgstr "Subida de archivo"
#: mod/admin.php:958
msgid "Policies"
msgstr "Políticas"
#: mod/admin.php:960
msgid "Auto Discovered Contact Directory"
msgstr "Directorio de contactos descubierto automáticamente"
#: mod/admin.php:961
msgid "Performance"
msgstr "Rendimiento"
#: mod/admin.php:962
msgid "Worker"
msgstr "Trabajador (??)"
#: mod/admin.php:963
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. "
#: mod/admin.php:966
msgid "Site name"
msgstr "Nombre del sitio"
#: mod/admin.php:967
msgid "Host name"
msgstr "Nombre de dominio"
#: mod/admin.php:968
msgid "Sender Email"
msgstr "Dirección de origen de correo electrónico"
#: mod/admin.php:968
msgid ""
"The email address your server shall use to send notification emails from."
msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío."
#: mod/admin.php:969
msgid "Banner/Logo"
msgstr "Imagen/Logotipo"
#: mod/admin.php:970
msgid "Shortcut icon"
msgstr "Icono de atajo"
#: mod/admin.php:970
msgid "Link to an icon that will be used for browsers."
msgstr "Enlace hacia un icono que sera usado para el navegador."
#: mod/admin.php:971
msgid "Touch icon"
msgstr "Icono touch"
#: mod/admin.php:971
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr "Enlace para un icono que sera usado para tablets y moviles."
#: mod/admin.php:972
msgid "Additional Info"
msgstr "Información adicional"
#: mod/admin.php:972
#, 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."
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr "Para servidores públicos: información adicional que sera publicado en %s/siteinfo."
#: mod/content.php:119 mod/network.php:468
#: mod/admin.php:973
msgid "System language"
msgstr "Idioma"
#: mod/admin.php:974
msgid "System theme"
msgstr "Tema"
#: mod/admin.php:974
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración <a href='#' id='cnftheme'>cambiar configuración del tema</a>"
#: mod/admin.php:975
msgid "Mobile system theme"
msgstr "Tema de sistema móvil"
#: mod/admin.php:975
msgid "Theme for mobile devices"
msgstr "Tema para dispositivos móviles"
#: mod/admin.php:976
msgid "SSL link policy"
msgstr "Política de enlaces SSL"
#: mod/admin.php:976
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:977
msgid "Force SSL"
msgstr "Forzar SSL"
#: mod/admin.php:977
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
" to endless loops."
msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."
#: mod/admin.php:978
msgid "Old style 'Share'"
msgstr "Viejo estilo de 'reenviar'"
#: mod/admin.php:978
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr "Desactiva el elemento bbcode 'reenviar' para objetos repetidos."
#: mod/admin.php:979
msgid "Hide help entry from navigation menu"
msgstr "Ocultar la ayuda en el menú de navegación"
#: mod/admin.php:979
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:980
msgid "Single user instance"
msgstr "Sesión de usuario único"
#: mod/admin.php:980
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:981
msgid "Maximum image size"
msgstr "Tamaño máximo de la imagen"
#: mod/admin.php:981
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:982
msgid "Maximum image length"
msgstr "Largo máximo de imagen"
#: mod/admin.php:982
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:983
msgid "JPEG image quality"
msgstr "Calidad de imagen JPEG"
#: mod/admin.php:983
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:985
msgid "Register policy"
msgstr "Política de registros"
#: mod/admin.php:986
msgid "Maximum Daily Registrations"
msgstr "Registros Máximos Diarios"
#: mod/admin.php:986
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:987
msgid "Register text"
msgstr "Términos"
#: mod/admin.php:987
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:988
msgid "Accounts abandoned after x days"
msgstr "Cuentas abandonadas después de x días"
#: mod/admin.php:988
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:989
msgid "Allowed friend domains"
msgstr "Dominios amigos permitidos"
#: mod/admin.php:989
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:990
msgid "Allowed email domains"
msgstr "Dominios de correo permitidos"
#: mod/admin.php:990
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:991
msgid "Block public"
msgstr "Bloqueo público"
#: mod/admin.php:991
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:992
msgid "Force publish"
msgstr "Forzar publicación"
#: mod/admin.php:992
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:993
msgid "Global directory URL"
msgstr "URL del directorio global."
#: mod/admin.php:993
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia."
#: mod/admin.php:994
msgid "Allow threaded items"
msgstr "Permitir elementos en hilo"
#: mod/admin.php:994
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:995
msgid "Private posts by default for new users"
msgstr "Publicaciones privadas por defecto para usuarios nuevos"
#: mod/admin.php:995
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:996
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:996
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:997
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones."
#: mod/admin.php:997
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."
#: mod/admin.php:998
msgid "Don't embed private images in posts"
msgstr "No agregar imágenes privados en las publicaciones"
#: mod/admin.php:998
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a "
"while."
msgstr "No 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:999
msgid "Allow Users to set remote_self"
msgstr "Permitir a los usuarios de definir perfiles_remotos"
#: mod/admin.php:999
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 "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:1000
msgid "Block multiple registrations"
msgstr "Bloquear registros multiples"
#: mod/admin.php:1000
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:1001
msgid "OpenID support"
msgstr "Soporte OpenID"
#: mod/admin.php:1001
msgid "OpenID support for registration and logins."
msgstr "Soporte OpenID para registros y accesos."
#: mod/admin.php:1002
msgid "Fullname check"
msgstr "Comprobar Nombre completo"
#: mod/admin.php:1002
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:1003
msgid "UTF-8 Regular expressions"
msgstr "Expresiones regulares UTF-8"
#: mod/admin.php:1003
msgid "Use PHP UTF8 regular expressions"
msgstr "Usar expresiones regulares de UTF8 en PHP"
#: mod/admin.php:1004
msgid "Community Page Style"
msgstr "Estilo de pagina de comunidad"
#: mod/admin.php:1004
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 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:1005
msgid "Posts per user on community page"
msgstr "Publicaciones por usuario en la pagina de comunidad"
#: mod/admin.php:1005
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
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:1006
msgid "Enable OStatus support"
msgstr "Permitir soporte OStatus"
#: mod/admin.php:1006
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
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:1007
msgid "OStatus conversation completion interval"
msgstr "Intervalo de actualización de conversaciones OStatus"
#: mod/admin.php:1007
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
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:1008
msgid "Only import OStatus threads from our contacts"
msgstr "Solo importar OStatus temas de nuestros (?) contactos."
#: mod/admin.php:1008
msgid ""
"Normally we import every content from our OStatus contacts. With this option"
" we only store threads that are started by a contact that is known on our "
"system."
msgstr "Normalmente importamos todo el contenido de los contactos de OStatus. Con esta opción solamente se guardan temas que fueron iniciados por contactos que son conocidos de la instancia.\n(nota de traducción, no se entiende muy bien la función en base al texto original)"
#: mod/admin.php:1009
msgid "OStatus support can only be enabled if threading is enabled."
msgstr "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado."
#: mod/admin.php:1011
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."
#: mod/admin.php:1012
msgid "Enable Diaspora support"
msgstr "Habilitar el soporte para Diaspora*"
#: mod/admin.php:1012
msgid "Provide built-in Diaspora network compatibility."
msgstr "Provee una compatibilidad con la red de Diaspora."
#: mod/admin.php:1013
msgid "Only allow Friendica contacts"
msgstr "Permitir solo contactos de Friendica"
#: mod/admin.php:1013
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:1014
msgid "Verify SSL"
msgstr "Verificar SSL"
#: mod/admin.php:1014
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:1015
msgid "Proxy user"
msgstr "Usuario proxy"
#: mod/admin.php:1016
msgid "Proxy URL"
msgstr "Dirección proxy"
#: mod/admin.php:1017
msgid "Network timeout"
msgstr "Tiempo de espera de red"
#: mod/admin.php:1017
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:1018
msgid "Delivery interval"
msgstr "Intervalo de actualización"
#: mod/admin.php:1018
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:1019
msgid "Poll interval"
msgstr "Intervalo de sondeo"
#: mod/admin.php:1019
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:1020
msgid "Maximum Load Average"
msgstr "Promedio de carga máxima"
#: mod/admin.php:1020
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:1021
msgid "Maximum Load Average (Frontend)"
msgstr "Carga máxima promedio (frontend)"
#: mod/admin.php:1021
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:1022
msgid "Maximum table size for optimization"
msgstr "Tamaño máximo de las tablas para la optimización."
#: mod/admin.php:1022
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr "Tamaño máximo de tablas (en MB) para la optimización automática - por defecto 100MB. Ingrese -1 para deshabilitar."
#: mod/admin.php:1023
msgid "Minimum level of fragmentation"
msgstr "Nivel mínimo de fragmentación "
#: mod/admin.php:1023
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. "
#: mod/admin.php:1025
msgid "Periodical check of global contacts"
msgstr "Verificación periódica de los contactos globales."
#: mod/admin.php:1025
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:1026
msgid "Days between requery"
msgstr "Días entre búsquedas"
#: mod/admin.php:1026
msgid "Number of days after which a server is requeried for his contacts."
msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos."
#: mod/admin.php:1027
msgid "Discover contacts from other servers"
msgstr "Descubrir contactos de otros servidores"
#: mod/admin.php:1027
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:1028
msgid "Timeframe for fetching global contacts"
msgstr "Intervalos de tiempo para revisar contactos globales."
#: mod/admin.php:1028
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:1029
msgid "Search the local directory"
msgstr "Buscar el directorio local"
#: mod/admin.php:1029
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:1031
msgid "Publish server information"
msgstr "Publicar información del servidor"
#: mod/admin.php:1031
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 <a"
" href='http://the-federation.info/'>the-federation.info</a> 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 <a href='http://the-federation.info/'>the-federation.info</a> por detalles."
#: mod/admin.php:1033
msgid "Use MySQL full text engine"
msgstr "Usar motor MySQL de texto completo"
#: mod/admin.php:1033
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:1034
msgid "Suppress Language"
msgstr "Suprimir idiomas"
#: mod/admin.php:1034
msgid "Suppress language information in meta information about a posting."
msgstr "Suprimir la información de datos meta sobre informaciones de idiomas en las publicaciones."
#: mod/admin.php:1035
msgid "Suppress Tags"
msgstr "Suprimir tags"
#: mod/admin.php:1035
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Suprimir la lista de tags al final de una publicación."
#: mod/admin.php:1036
msgid "Path to item cache"
msgstr "Ruta a la caché del objeto"
#: mod/admin.php:1036
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:1037
msgid "Cache duration in seconds"
msgstr "Duración de la caché en segundos"
#: mod/admin.php:1037
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 "¿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:1038
msgid "Maximum numbers of comments per post"
msgstr "Numero máximo de respuestas por tema"
#: mod/admin.php:1038
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."
#: mod/admin.php:1039
msgid "Path for lock file"
msgstr "Ruta al archivo protegido"
#: mod/admin.php:1039
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:1040
msgid "Temp path"
msgstr "Ruta a los temporales"
#: mod/admin.php:1040
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:1041
msgid "Base path to installation"
msgstr "Ruta base para la instalación"
#: mod/admin.php:1041
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:1042
msgid "Disable picture proxy"
msgstr "Deshabilitar proxy de imagen"
#: mod/admin.php:1042
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on"
" systems with very low bandwith."
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:1043
msgid "Enable old style pager"
msgstr "Habilitar paginación estilo viejo"
#: mod/admin.php:1043
msgid ""
"The old style pager has page numbers but slows down massively the page "
"speed."
msgstr "La paginación al estilo viejo tiene números de paginas pero enlentece masivamente la velocidad de la pagina."
#: mod/admin.php:1044
msgid "Only search in tags"
msgstr "Solo buscar en tags"
#: mod/admin.php:1044
msgid "On large systems the text search can slow down the system extremely."
msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."
#: mod/admin.php:1046
msgid "New base url"
msgstr "Nueva URLbase"
#: mod/admin.php:1046
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:1048
msgid "RINO Encryption"
msgstr "Encryptado RINO"
#: mod/admin.php:1048
msgid "Encryption layer between nodes."
msgstr "Capa de encryptación entre nodos."
#: mod/admin.php:1049
msgid "Embedly API key"
msgstr "Embedly llave de API (API key) "
#: mod/admin.php:1049
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr "<a href='http://embed.ly'>Embedly</a> es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional."
#: mod/admin.php:1051
msgid "Enable 'worker' background processing"
msgstr "Habilitar procesos de fondo del \"trabajador\""
#: mod/admin.php:1051
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr "Limita los procesos del trabajo de fondo del numero paralelo de trabajos a un numero máximo que respeta la carga del sistema."
#: mod/admin.php:1052
msgid "Maximum number of parallel workers"
msgstr "Numero máximo de trabajos paralelos de fondo."
#: mod/admin.php:1052
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr "Ajustar a 2 en un servidor compartido (shared hosting).\nEn sistemas grandes valores como 10 son excelentes.\nValor por defecto es 4."
#: mod/admin.php:1053
msgid "Don't use 'proc_open' with the worker"
msgstr "No use 'proc_open' junto al \"trabajador\"!"
#: mod/admin.php:1053
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)"
#: mod/admin.php:1054
msgid "Enable fastlane"
msgstr "Habilitar ascenso rápido"
#: mod/admin.php:1054
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."
#: mod/admin.php:1055
msgid "Enable frontend worker"
msgstr "Habilitar trabajador de interfaz"
#: mod/admin.php:1055
msgid ""
"When enabled the Worker process is triggered when backend access is "
"performed (e.g. messages being delivered). On smaller sites you might want "
"to call yourdomain.tld/worker on a regular basis via an external cron job. "
"You should only enable this option if you cannot utilize cron/scheduled jobs"
" on your server. The worker background process needs to be activated for "
"this."
msgstr ""
#: mod/admin.php:1084
msgid "Update has been marked successful"
msgstr "La actualización se ha completado con éxito"
#: mod/admin.php:1092
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr "Actualización de base de datos %s fue aplicada con éxito."
#: mod/admin.php:1095
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
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:1107
#, php-format
msgid "Executing %s failed with error: %s"
msgstr "Paso %s fallo con el error: %s"
#: mod/admin.php:1110
#, php-format
msgid "Update %s was successfully applied."
msgstr "Actualización %s aplicada con éxito."
#: mod/admin.php:1114
#, 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:1116
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr "No había función adicional de actualización %s que necesitaba ser requerida."
#: mod/admin.php:1135
msgid "No failed updates."
msgstr "Actualizaciones sin fallos."
#: mod/admin.php:1136
msgid "Check database structure"
msgstr "Revisar estructura de la base de datos"
#: mod/admin.php:1141
msgid "Failed Updates"
msgstr "Actualizaciones fallidas"
#: mod/admin.php:1142
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:1143
msgid "Mark success (if update was manually applied)"
msgstr "Marcar como correcta (si actualizaste manualmente)"
#: mod/admin.php:1144
msgid "Attempt to execute this update step automatically"
msgstr "Intentando ejecutar este paso automáticamente"
#: mod/admin.php:1178
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tel administrador de %2$s ha creado una cuenta para usted."
#: mod/admin.php:1181
#, 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 "\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:1225
#, 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:1232
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s usuario eliminado"
msgstr[1] "%s usuarios eliminados"
#: mod/admin.php:1279
#, php-format
msgid "User '%s' deleted"
msgstr "Usuario '%s' eliminado"
#: mod/admin.php:1287
#, php-format
msgid "User '%s' unblocked"
msgstr "Usuario '%s' desbloqueado"
#: mod/admin.php:1287
#, php-format
msgid "User '%s' blocked"
msgstr "Usuario '%s' bloqueado'"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Register date"
msgstr "Fecha de registro"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last login"
msgstr "Último acceso"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last item"
msgstr "Último elemento"
#: mod/admin.php:1396 mod/settings.php:43
msgid "Account"
msgstr "Cuenta"
#: mod/admin.php:1405
msgid "Add User"
msgstr "Agregar usuario"
#: mod/admin.php:1406
msgid "select all"
msgstr "seleccionar todo"
#: mod/admin.php:1407
msgid "User registrations waiting for confirm"
msgstr "Registro de usuarios esperando confirmación"
#: mod/admin.php:1408
msgid "User waiting for permanent deletion"
msgstr "Usuario esperando anulación permanente."
#: mod/admin.php:1409
msgid "Request date"
msgstr "Solicitud de fecha"
#: mod/admin.php:1410
msgid "No registrations."
msgstr "Sin registros."
#: mod/admin.php:1411
msgid "Note from the user"
msgstr "Nota para el usuario"
#: mod/admin.php:1413
msgid "Deny"
msgstr "Denegado"
#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Block"
msgstr "Bloquear"
#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Unblock"
msgstr "Desbloquear"
#: mod/admin.php:1417
msgid "Site admin"
msgstr "Administrador de la web"
#: mod/admin.php:1418
msgid "Account expired"
msgstr "Cuenta caducada"
#: mod/admin.php:1421
msgid "New User"
msgstr "Nuevo usuario"
#: mod/admin.php:1422
msgid "Deleted since"
msgstr "Borrado desde"
#: mod/admin.php:1427
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:1428
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:1438
msgid "Name of the new user."
msgstr "Nombre del nuevo usuario"
#: mod/admin.php:1439
msgid "Nickname"
msgstr "Apodo"
#: mod/admin.php:1439
msgid "Nickname of the new user."
msgstr "Apodo del nuevo perfil."
#: mod/admin.php:1440
msgid "Email address of the new user."
msgstr "Dirección de correo del nuevo perfil."
#: mod/admin.php:1483
#, php-format
msgid "Plugin %s disabled."
msgstr "Módulo %s deshabilitado."
#: mod/admin.php:1487
#, php-format
msgid "Plugin %s enabled."
msgstr "Módulo %s habilitado."
#: mod/admin.php:1498 mod/admin.php:1734
msgid "Disable"
msgstr "Desactivado"
#: mod/admin.php:1500 mod/admin.php:1736
msgid "Enable"
msgstr "Activado"
#: mod/admin.php:1523 mod/admin.php:1781
msgid "Toggle"
msgstr "Activar"
#: mod/admin.php:1531 mod/admin.php:1790
msgid "Author: "
msgstr "Autor:"
#: mod/admin.php:1532 mod/admin.php:1791
msgid "Maintainer: "
msgstr "Mantenedor: "
#: mod/admin.php:1584
msgid "Reload active plugins"
msgstr "Recargar plugins activos"
#: mod/admin.php:1589
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr "No ay plugins habilitados en este nodo. Encontrara los repositorios oficiales de plugins en %1$s y posiblemente encontrara mas plugins interesantes en el registro abierto de plugins aquí %2$s ."
#: mod/admin.php:1694
msgid "No themes found."
msgstr "No se encontraron temas."
#: mod/admin.php:1772
msgid "Screenshot"
msgstr "Captura de pantalla"
#: mod/admin.php:1832
msgid "Reload active themes"
msgstr "Recargar interfaces de usuario activos"
#: mod/admin.php:1837
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr "No se encuentran interfaces en el sistema. Deberían estar localizados (paced) en %1$s"
#: mod/admin.php:1838
msgid "[Experimental]"
msgstr "[Experimental]"
#: mod/admin.php:1839
msgid "[Unsupported]"
msgstr "[Sin soporte]"
#: mod/admin.php:1863
msgid "Log settings updated."
msgstr "Configuración de registro actualizada."
#: mod/admin.php:1895
msgid "PHP log currently enabled."
msgstr "Registro PHP actualmente disponible."
#: mod/admin.php:1897
msgid "PHP log currently disabled."
msgstr "Registro PHP actualmente deshabilitado."
#: mod/admin.php:1906
msgid "Clear"
msgstr "Limpiar"
#: mod/admin.php:1911
msgid "Enable Debugging"
msgstr "Habilitar debugging"
#: mod/admin.php:1912
msgid "Log file"
msgstr "Archivo de registro"
#: mod/admin.php:1912
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:1913
msgid "Log level"
msgstr "Nivel de registro"
#: mod/admin.php:1916
msgid "PHP logging"
msgstr "PHP logging"
#: mod/admin.php:1917
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo."
#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
msgid "Off"
msgstr "Apagado"
#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778
msgid "On"
msgstr "Encendido"
#: mod/admin.php:2045
#, php-format
msgid "Lock feature %s"
msgstr "Trancar opción %s "
#: mod/admin.php:2053
msgid "Manage Additional Features"
msgstr "Administrar opciones adicionales"
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr "Si no - intento de subir un archivo vacío?"
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr "El archivo excede el limite de tamaño de %s"
#: mod/wall_attach.php:156 mod/wall_attach.php:172
msgid "File upload failed."
msgstr "Ha fallado la subida del archivo."
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr "No hay amigos para mostrar."
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "El acceso a este perfil ha sido restringido."
#: mod/cal.php:297
msgid "User not found"
msgstr "Usuario no encontrado"
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr "Este formato de calendario no se soporta"
#: mod/cal.php:315
msgid "No exportable data found"
msgstr "No se ha encontrado información exportable"
#: mod/cal.php:330
msgid "calendar"
msgstr "calendario"
#: mod/content.php:119 mod/network.php:469
msgid "No such group"
msgstr "Ningún grupo"
#: mod/content.php:135 mod/network.php:499
#: mod/content.php:130 mod/network.php:496 mod/group.php:193
msgid "Group is empty"
msgstr "El grupo está vacío"
#: mod/content.php:135 mod/network.php:500
#, php-format
msgid "Group: %s"
msgstr "Grupo: %s"
@ -4571,12 +5640,6 @@ msgstr "compartir"
msgid "This is you"
msgstr "Este eres tú"
#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719 boot.php:969
msgid "Comment"
msgstr "Comentar"
#: mod/content.php:729 object/Item.php:721
msgid "Bold"
msgstr "Negrita"
@ -4609,7 +5672,7 @@ msgstr "Enlace"
msgid "Video"
msgstr "Vídeo"
#: mod/content.php:746 mod/settings.php:738 object/Item.php:122
#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr "Editar"
@ -4646,6 +5709,10 @@ msgstr "revertir ignorar publicacion"
msgid "toggle ignore status"
msgstr "cambiar estatus de observación"
#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245
msgid "ignored"
msgstr "ignorado"
#: mod/content.php:803 object/Item.php:137
msgid "save to folder"
msgstr "grabado en directorio"
@ -4674,314 +5741,80 @@ msgstr "Muro-A-Muro"
msgid "via Wall-To-Wall:"
msgstr "via Muro-A-Muro:"
#: mod/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:617
msgid "Profile not found."
msgstr "Perfil no encontrado."
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr "Resubscribir a contactos de OStatus"
#: mod/dfrn_confirm.php:123
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "error"
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
msgid "Done"
msgstr "hecho!"
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
msgid "Keep this window open until done."
msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado."
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "No se han localizado delegados potenciales de la página."
#: mod/delegate.php:132
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:242
msgid "Response from remote site was not understood."
msgstr "La respuesta desde el sitio remoto no ha sido entendida."
#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256
msgid "Unexpected response from remote site: "
msgstr "Respuesta inesperada desde el sitio remoto: "
#: mod/dfrn_confirm.php:265
msgid "Confirmation completed successfully."
msgstr "Confirmación completada con éxito."
#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288
msgid "Remote site reported: "
msgstr "El sito remoto informó: "
#: mod/dfrn_confirm.php:279
msgid "Temporary failure. Please wait and try again."
msgstr "Error temporal. Por favor, espere y vuelva a intentarlo."
#: mod/dfrn_confirm.php:286
msgid "Introduction failed or was revoked."
msgstr "La presentación ha fallado o ha sido anulada."
#: mod/dfrn_confirm.php:415
msgid "Unable to set contact photo."
msgstr "Imposible establecer la foto del contacto."
#: mod/dfrn_confirm.php:553
#, php-format
msgid "No user record found for '%s' "
msgstr "No se ha encontrado a ningún '%s' "
#: mod/dfrn_confirm.php:563
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:574
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:595
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:609
#, 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:629
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:640
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:699
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:771
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s se ha unido a %2$s"
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Solicitud de amistad enviada."
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Sugerencias de amistad"
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Recomienda un amigo a %s"
#: mod/mood.php:133
msgid "Mood"
msgstr "Ánimo"
#: 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/poke.php:192
msgid "Poke/Prod"
msgstr "Toque/Empujón"
#: 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
msgid "Recipient"
msgstr "Receptor"
#: 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
msgid "Make this post private"
msgstr "Hacer esta publicación privada"
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Imagen recibida, pero ha fallado al recortarla."
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, 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:124
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:134
msgid "Unable to process image"
msgstr "Imposible procesar la imagen"
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr "Subir archivo:"
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr "Elige un perfil:"
#: mod/profile_photo.php:251
msgid "Upload"
msgstr "Subir"
#: mod/profile_photo.php:254
msgid "or"
msgstr "o"
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr "saltar este paso"
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr "elige una foto de tus álbumes"
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr "Recortar imagen"
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Por favor, ajusta el recorte de la imagen para optimizarla."
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr "Editado"
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr "Imagen subida con éxito."
#: mod/regmod.php:55
msgid "Account approved."
msgstr "Cuenta aprobada."
#: mod/regmod.php:92
#, php-format
msgid "Registration revoked for %s"
msgstr "Registro anulado para %s"
#: mod/regmod.php:104
msgid "Please login."
msgstr "Por favor accede."
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr "Solicitud de identificación no válida."
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
msgid "Discard"
msgstr "Descartar"
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:1000
msgid "Ignore"
msgstr "Ignorar"
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr "Notificaciones de Red"
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr "Notificaciones personales"
#: mod/notifications.php:123
msgid "Home Notifications"
msgstr "Notificaciones de Inicio"
#: mod/notifications.php:152
msgid "Show Ignored Requests"
msgstr "Mostrar peticiones ignoradas"
#: mod/notifications.php:152
msgid "Hide Ignored Requests"
msgstr "Ocultar peticiones ignoradas"
#: mod/notifications.php:164 mod/notifications.php:222
msgid "Notification type: "
msgstr "Tipo de notificación: "
#: mod/notifications.php:167
#, php-format
msgid "suggested by %s"
msgstr "sugerido por %s"
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr "Ocultar este contacto a los demás."
#: mod/notifications.php:173 mod/notifications.php:240
msgid "Post a new friend activity"
msgstr "Publica tu nueva amistad"
#: mod/notifications.php:173 mod/notifications.php:240
msgid "if applicable"
msgstr "Si corresponde"
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1382
msgid "Approve"
msgstr "Aprobar"
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr "Dice conocerte: "
#: mod/notifications.php:196
msgid "yes"
msgstr "sí"
#: mod/notifications.php:196
msgid "no"
msgstr "no"
#: mod/notifications.php:197
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:200
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:209
msgid "Friend"
msgstr "Amigo"
#: mod/notifications.php:210
msgid "Sharer"
msgstr "Lector"
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr "Fan/Admirador"
#: mod/notifications.php:260
msgid "No introductions."
msgstr "Sin presentaciones."
#: mod/notifications.php:299
msgid "Show unread"
msgstr "Mostrar no leído"
#: mod/notifications.php:299
msgid "Show all"
msgstr "Mostrar todo"
#: mod/notifications.php:305
#, php-format
msgid "No more %s notifications."
msgstr "No más notificaciones de %s."
"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
msgid "Existing Page Managers"
msgstr "Administradores actuales de la página"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Delegados actuales de la página"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Delegados potenciales"
#: mod/delegate.php:140
msgid "Add"
msgstr "Añadir"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Sin entradas."
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr "Realmente quieres eliminar este vídeo?"
#: mod/videos.php:125
msgid "Delete Video"
msgstr "Borrar vídeo"
#: mod/videos.php:204
msgid "No videos selected"
msgstr "Ningún vídeo seleccionado"
#: mod/videos.php:305 mod/photos.php:1054
msgid "Access to this item is restricted."
msgstr "El acceso a este elemento está restringido."
#: mod/videos.php:387 mod/photos.php:1847
msgid "View Album"
msgstr "Ver Álbum"
#: mod/videos.php:396
msgid "Recent Videos"
msgstr "Vídeos recientes"
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr "Subir nuevos vídeos"
#: mod/profiles.php:38
msgid "Profile deleted."
@ -5082,6 +5915,16 @@ msgstr "%1$s tiene una actualización %2$s, cambiando %3$s."
msgid "Hide contacts and friends:"
msgstr "Ocultar contactos y amigos"
#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
#: mod/follow.php:110 mod/dfrn_request.php:862 mod/register.php:246
#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177
#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192
#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230
#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233
#: mod/settings.php:1234 mod/api.php:106
msgid "No"
msgstr "No"
#: mod/profiles.php:650
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?"
@ -5142,6 +5985,10 @@ msgstr "Información addicional"
msgid "Relation"
msgstr "Relación"
#: mod/profiles.php:707 mod/newmember.php:36 mod/profile_photo.php:250
msgid "Upload Profile Photo"
msgstr "Subir foto del Perfil"
#: mod/profiles.php:708
msgid "Your Gender:"
msgstr "Género:"
@ -5158,10 +6005,6 @@ msgstr "Ejemplo: pesca fotografía software"
msgid "Profile Name:"
msgstr "Nombres del perfil:"
#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
msgid "Required"
msgstr "Obligatorio"
#: mod/profiles.php:718
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
@ -5286,1839 +6129,219 @@ msgstr "Informacioń de contacto y Redes sociales"
msgid "Edit/Manage Profiles"
msgstr "Editar/Administrar perfiles"
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr "Configuración de la apariencia actualizada."
#: mod/credits.php:16
msgid "Credits"
msgstr "Creditos"
#: mod/admin.php:156 mod/admin.php:926
msgid "Site"
msgstr "Sitio"
#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1375 mod/admin.php:1390
msgid "Users"
msgstr "Usuarios"
#: mod/admin.php:158 mod/admin.php:1492 mod/admin.php:1552 mod/settings.php:74
msgid "Plugins"
msgstr "Módulos"
#: mod/admin.php:159 mod/admin.php:1750 mod/admin.php:1800
msgid "Themes"
msgstr "Temas"
#: mod/admin.php:160 mod/settings.php:52
msgid "Additional features"
msgstr "Características adicionales"
#: mod/admin.php:161
msgid "DB updates"
msgstr "Actualizaciones de la Base de Datos"
#: mod/admin.php:162 mod/admin.php:397
msgid "Inspect Queue"
msgstr "Inspeccionar cola"
#: mod/admin.php:163 mod/admin.php:363
msgid "Federation Statistics"
msgstr "Estadísticas de federación"
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1874
msgid "Logs"
msgstr "Registros"
#: mod/admin.php:178 mod/admin.php:1942
msgid "View Logs"
msgstr "Ver registro de depuración"
#: mod/admin.php:179
msgid "probe address"
msgstr "probar direccion"
#: mod/admin.php:180
msgid "check webfinger"
msgstr "Verificar webfinger"
#: mod/admin.php:187
msgid "Plugin Features"
msgstr "Características del módulo"
#: mod/admin.php:189
msgid "diagnostics"
msgstr "diagnosticos"
#: mod/admin.php:190
msgid "User registrations waiting for confirmation"
msgstr "Registro de usuarios esperando la confirmación"
#: mod/admin.php:356
#: mod/credits.php:17
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! "
#: mod/admin.php:357
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr "El modulo <em>directorio de contactos encontrados</em> no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí."
#: mod/filer.php:30
msgid "- select -"
msgstr "- seleccionar -"
#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925
#: mod/admin.php:1374 mod/admin.php:1491 mod/admin.php:1551 mod/admin.php:1749
#: mod/admin.php:1799 mod/admin.php:1873 mod/admin.php:1941
msgid "Administration"
msgstr "Administración"
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr "Toque/Empujón"
#: mod/admin.php:369
#: 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
msgid "Recipient"
msgstr "Receptor"
#: 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
msgid "Make this post private"
msgstr "Hacer esta publicación privada"
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr "Fotos recientes"
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr "Subir nuevas fotos"
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr "todos"
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr "Información del contacto no disponible"
#: mod/photos.php:190
msgid "Album not found."
msgstr "Álbum no encontrado."
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr "Eliminar álbum"
#: mod/photos.php:230
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:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr "Eliminar foto"
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr "¿Estás seguro de que quieres borrar esta foto?"
#: mod/photos.php:688
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr "Actualmente este nodo reconoce %d nodos de las siguientes plataformas:"
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s fue etiquetado en %2$s por %3$s"
#: mod/admin.php:399
msgid "ID"
msgstr "ID"
#: mod/photos.php:688
msgid "a photo"
msgstr "una foto"
#: mod/admin.php:400
msgid "Recipient Name"
msgstr "Nombre del recipiente"
#: mod/photos.php:794
msgid "Image file is empty."
msgstr "El archivo de imagen está vacío."
#: mod/admin.php:401
msgid "Recipient Profile"
msgstr "Perfil del recipiente"
#: mod/photos.php:954
msgid "No photos selected"
msgstr "Ninguna foto seleccionada"
#: mod/admin.php:403
msgid "Created"
msgstr "Creado"
#: mod/admin.php:404
msgid "Last Tried"
msgstr "Ultimo intento"
#: mod/admin.php:405
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:424 mod/admin.php:1323
msgid "Normal Account"
msgstr "Cuenta normal"
#: mod/admin.php:425 mod/admin.php:1324
msgid "Soapbox Account"
msgstr "Cuenta tribuna"
#: mod/admin.php:426 mod/admin.php:1325
msgid "Community/Celebrity Account"
msgstr "Cuenta de Comunidad/Celebridad"
#: mod/admin.php:427 mod/admin.php:1326
msgid "Automatic Friend Account"
msgstr "Cuenta de amistad automática"
#: mod/admin.php:428
msgid "Blog Account"
msgstr "Cuenta de blog"
#: mod/admin.php:429
msgid "Private Forum"
msgstr "Foro privado"
#: mod/admin.php:455
msgid "Message queues"
msgstr "Cola de mensajes"
#: mod/admin.php:461
msgid "Summary"
msgstr "Resumen"
#: mod/admin.php:464
msgid "Registered users"
msgstr "Usuarios registrados"
#: mod/admin.php:466
msgid "Pending registrations"
msgstr "Pendientes de registro"
#: mod/admin.php:467
msgid "Version"
msgstr "Versión"
#: mod/admin.php:472
msgid "Active plugins"
msgstr "Módulos activos"
#: mod/admin.php:495
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos <scheme>://<domain>"
#: mod/admin.php:798
msgid "RINO2 needs mcrypt php extension to work."
msgstr "RINO2 precisa la extensión mcrypt para funcionar. "
#: mod/admin.php:806
msgid "Site settings updated."
msgstr "Configuración de actualización."
#: mod/admin.php:834 mod/settings.php:932
msgid "No special theme for mobile devices"
msgstr "No hay tema especial para dispositivos móviles"
#: mod/admin.php:853
msgid "No community page"
msgstr "No hay pagina de comunidad"
#: mod/admin.php:854
msgid "Public postings from users of this site"
msgstr "Temas públicos de perfiles de este sitio."
#: mod/admin.php:855
msgid "Global community page"
msgstr "Pagina global de comunidad"
#: mod/admin.php:860 mod/contacts.php:530
msgid "Never"
msgstr "Nunca"
#: mod/admin.php:861
msgid "At post arrival"
msgstr "A la llegada de una publicación"
#: mod/admin.php:869 mod/contacts.php:557
msgid "Disabled"
msgstr "Deshabilitado"
#: mod/admin.php:871
msgid "Users, Global Contacts"
msgstr "Perfiles, contactos globales"
#: mod/admin.php:872
msgid "Users, Global Contacts/fallback"
msgstr "Perfiles, contactos globales/fallback"
#: mod/admin.php:876
msgid "One month"
msgstr "Un mes"
#: mod/admin.php:877
msgid "Three months"
msgstr "Tres meses"
#: mod/admin.php:878
msgid "Half a year"
msgstr "Medio año"
#: mod/admin.php:879
msgid "One year"
msgstr "Un año"
#: mod/admin.php:884
msgid "Multi user instance"
msgstr "Sesión multi usuario"
#: mod/admin.php:907
msgid "Closed"
msgstr "Cerrado"
#: mod/admin.php:908
msgid "Requires approval"
msgstr "Requiere aprobación"
#: mod/admin.php:909
msgid "Open"
msgstr "Abierto"
#: mod/admin.php:913
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:914
msgid "Force all links to use SSL"
msgstr "Forzar todos los enlaces a utilizar SSL"
#: mod/admin.php:915
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:927 mod/admin.php:1553 mod/admin.php:1801 mod/admin.php:1875
#: mod/admin.php:2025 mod/settings.php:676 mod/settings.php:786
#: mod/settings.php:833 mod/settings.php:902 mod/settings.php:992
#: mod/settings.php:1259
msgid "Save Settings"
msgstr "Guardar configuración"
#: mod/admin.php:928 mod/register.php:263
msgid "Registration"
msgstr "Registro"
#: mod/admin.php:929
msgid "File upload"
msgstr "Subida de archivo"
#: mod/admin.php:930
msgid "Policies"
msgstr "Políticas"
#: mod/admin.php:932
msgid "Auto Discovered Contact Directory"
msgstr "Directorio de contactos descubierto automáticamente"
#: mod/admin.php:933
msgid "Performance"
msgstr "Rendimiento"
#: mod/admin.php:934
msgid "Worker"
msgstr "Trabajador (??)"
#: mod/admin.php:935
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. "
#: mod/admin.php:938
msgid "Site name"
msgstr "Nombre del sitio"
#: mod/admin.php:939
msgid "Host name"
msgstr "Nombre de dominio"
#: mod/admin.php:940
msgid "Sender Email"
msgstr "Dirección de origen de correo electrónico"
#: mod/admin.php:940
msgid ""
"The email address your server shall use to send notification emails from."
msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío."
#: mod/admin.php:941
msgid "Banner/Logo"
msgstr "Imagen/Logotipo"
#: mod/admin.php:942
msgid "Shortcut icon"
msgstr "Icono de atajo"
#: mod/admin.php:942
msgid "Link to an icon that will be used for browsers."
msgstr "Enlace hacia un icono que sera usado para el navegador."
#: mod/admin.php:943
msgid "Touch icon"
msgstr "Icono touch"
#: mod/admin.php:943
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr "Enlace para un icono que sera usado para tablets y moviles."
#: mod/admin.php:944
msgid "Additional Info"
msgstr "Información adicional"
#: mod/admin.php:944
#: 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:1148
msgid "Upload Photos"
msgstr "Subir fotos"
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr "Nombre del nuevo álbum: "
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr "o nombre de un álbum existente: "
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr "No actualizar tu estado con este envío"
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
msgid "Show to Groups"
msgstr "Mostrar a los Grupos"
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
msgid "Show to Contacts"
msgstr "Mostrar a los Contactos"
#: mod/photos.php:1167
msgid "Private Photo"
msgstr "Foto Privada"
#: mod/photos.php:1168
msgid "Public Photo"
msgstr "Foto Pública"
#: mod/photos.php:1234
msgid "Edit Album"
msgstr "Modificar álbum"
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr "Mostrar más nuevos primero"
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr "Mostrar más antiguos primero"
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr "Ver foto"
#: mod/photos.php:1315
msgid "Permission denied. Access to this item may be restricted."
msgstr "Permiso denegado. El acceso a este elemento puede estar restringido."
#: mod/photos.php:1317
msgid "Photo not available"
msgstr "Foto no disponible"
#: mod/photos.php:1372
msgid "View photo"
msgstr "Ver foto"
#: mod/photos.php:1372
msgid "Edit photo"
msgstr "Modificar foto"
#: mod/photos.php:1373
msgid "Use as profile photo"
msgstr "Usar como foto del perfil"
#: mod/photos.php:1398
msgid "View Full Size"
msgstr "Ver a tamaño completo"
#: mod/photos.php:1484
msgid "Tags: "
msgstr "Etiquetas: "
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr "[Borrar todas las etiquetas]"
#: mod/photos.php:1526
msgid "New album name"
msgstr "Nuevo nombre del álbum"
#: mod/photos.php:1527
msgid "Caption"
msgstr "Título"
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr "Añadir una etiqueta"
#: mod/photos.php:1528
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr "Para servidores públicos: información adicional que sera publicado en %s/siteinfo."
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"
#: mod/admin.php:945
msgid "System language"
msgstr "Idioma"
#: mod/photos.php:1529
msgid "Do not rotate"
msgstr "No rotar"
#: mod/admin.php:946
msgid "System theme"
msgstr "Tema"
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr "Girar a la derecha"
#: mod/admin.php:946
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración <a href='#' id='cnftheme'>cambiar configuración del tema</a>"
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr "Girar a la izquierda"
#: mod/admin.php:947
msgid "Mobile system theme"
msgstr "Tema de sistema móvil"
#: mod/photos.php:1546
msgid "Private photo"
msgstr "Foto privada"
#: mod/admin.php:947
msgid "Theme for mobile devices"
msgstr "Tema para dispositivos móviles"
#: mod/photos.php:1547
msgid "Public photo"
msgstr "Foto pública"
#: mod/admin.php:948
msgid "SSL link policy"
msgstr "Política de enlaces SSL"
#: mod/admin.php:948
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:949
msgid "Force SSL"
msgstr "Forzar SSL"
#: mod/admin.php:949
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
" to endless loops."
msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."
#: mod/admin.php:950
msgid "Old style 'Share'"
msgstr "Viejo estilo de 'reenviar'"
#: mod/admin.php:950
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr "Desactiva el elemento bbcode 'reenviar' para objetos repetidos."
#: mod/admin.php:951
msgid "Hide help entry from navigation menu"
msgstr "Ocultar la ayuda en el menú de navegación"
#: mod/admin.php:951
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:952
msgid "Single user instance"
msgstr "Sesión de usuario único"
#: mod/admin.php:952
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:953
msgid "Maximum image size"
msgstr "Tamaño máximo de la imagen"
#: mod/admin.php:953
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:954
msgid "Maximum image length"
msgstr "Largo máximo de imagen"
#: mod/admin.php:954
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:955
msgid "JPEG image quality"
msgstr "Calidad de imagen JPEG"
#: mod/admin.php:955
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:957
msgid "Register policy"
msgstr "Política de registros"
#: mod/admin.php:958
msgid "Maximum Daily Registrations"
msgstr "Registros Máximos Diarios"
#: mod/admin.php:958
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:959
msgid "Register text"
msgstr "Términos"
#: mod/admin.php:959
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:960
msgid "Accounts abandoned after x days"
msgstr "Cuentas abandonadas después de x días"
#: mod/admin.php:960
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:961
msgid "Allowed friend domains"
msgstr "Dominios amigos permitidos"
#: mod/admin.php:961
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:962
msgid "Allowed email domains"
msgstr "Dominios de correo permitidos"
#: mod/admin.php:962
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:963
msgid "Block public"
msgstr "Bloqueo público"
#: mod/admin.php:963
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:964
msgid "Force publish"
msgstr "Forzar publicación"
#: mod/admin.php:964
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:965
msgid "Global directory URL"
msgstr "URL del directorio global."
#: mod/admin.php:965
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia."
#: mod/admin.php:966
msgid "Allow threaded items"
msgstr "Permitir elementos en hilo"
#: mod/admin.php:966
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:967
msgid "Private posts by default for new users"
msgstr "Publicaciones privadas por defecto para usuarios nuevos"
#: mod/admin.php:967
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:968
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:968
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:969
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones."
#: mod/admin.php:969
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."
#: mod/admin.php:970
msgid "Don't embed private images in posts"
msgstr "No agregar imágenes privados en las publicaciones"
#: mod/admin.php:970
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a "
"while."
msgstr "No 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:971
msgid "Allow Users to set remote_self"
msgstr "Permitir a los usuarios de definir perfiles_remotos"
#: mod/admin.php:971
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 "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:972
msgid "Block multiple registrations"
msgstr "Bloquear registros multiples"
#: mod/admin.php:972
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:973
msgid "OpenID support"
msgstr "Soporte OpenID"
#: mod/admin.php:973
msgid "OpenID support for registration and logins."
msgstr "Soporte OpenID para registros y accesos."
#: mod/admin.php:974
msgid "Fullname check"
msgstr "Comprobar Nombre completo"
#: mod/admin.php:974
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:975
msgid "UTF-8 Regular expressions"
msgstr "Expresiones regulares UTF-8"
#: mod/admin.php:975
msgid "Use PHP UTF8 regular expressions"
msgstr "Usar expresiones regulares de UTF8 en PHP"
#: mod/admin.php:976
msgid "Community Page Style"
msgstr "Estilo de pagina de comunidad"
#: mod/admin.php:976
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 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:977
msgid "Posts per user on community page"
msgstr "Publicaciones por usuario en la pagina de comunidad"
#: mod/admin.php:977
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
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:978
msgid "Enable OStatus support"
msgstr "Permitir soporte OStatus"
#: mod/admin.php:978
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
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:979
msgid "OStatus conversation completion interval"
msgstr "Intervalo de actualización de conversaciones OStatus"
#: mod/admin.php:979
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
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:980
msgid "Only import OStatus threads from our contacts"
msgstr "Solo importar OStatus temas de nuestros (?) contactos."
#: mod/admin.php:980
msgid ""
"Normally we import every content from our OStatus contacts. With this option"
" we only store threads that are started by a contact that is known on our "
"system."
msgstr "Normalmente importamos todo el contenido de los contactos de OStatus. Con esta opción solamente se guardan temas que fueron iniciados por contactos que son conocidos de la instancia.\n(nota de traducción, no se entiende muy bien la función en base al texto original)"
#: mod/admin.php:981
msgid "OStatus support can only be enabled if threading is enabled."
msgstr "Solo se puede habilitar el soporte OStatus si threading (comentarios en fila) se encuentra habilitado."
#: mod/admin.php:983
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."
#: mod/admin.php:984
msgid "Enable Diaspora support"
msgstr "Habilitar el soporte para Diaspora*"
#: mod/admin.php:984
msgid "Provide built-in Diaspora network compatibility."
msgstr "Provee una compatibilidad con la red de Diaspora."
#: mod/admin.php:985
msgid "Only allow Friendica contacts"
msgstr "Permitir solo contactos de Friendica"
#: mod/admin.php:985
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:986
msgid "Verify SSL"
msgstr "Verificar SSL"
#: mod/admin.php:986
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:987
msgid "Proxy user"
msgstr "Usuario proxy"
#: mod/admin.php:988
msgid "Proxy URL"
msgstr "Dirección proxy"
#: mod/admin.php:989
msgid "Network timeout"
msgstr "Tiempo de espera de red"
#: mod/admin.php:989
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:990
msgid "Delivery interval"
msgstr "Intervalo de actualización"
#: mod/admin.php:990
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:991
msgid "Poll interval"
msgstr "Intervalo de sondeo"
#: mod/admin.php:991
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:992
msgid "Maximum Load Average"
msgstr "Promedio de carga máxima"
#: mod/admin.php:992
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:993
msgid "Maximum Load Average (Frontend)"
msgstr "Carga máxima promedio (frontend)"
#: mod/admin.php:993
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:994
msgid "Maximum table size for optimization"
msgstr "Tamaño máximo de las tablas para la optimización."
#: mod/admin.php:994
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr "Tamaño máximo de tablas (en MB) para la optimización automática - por defecto 100MB. Ingrese -1 para deshabilitar."
#: mod/admin.php:995
msgid "Minimum level of fragmentation"
msgstr "Nivel mínimo de fragmentación "
#: mod/admin.php:995
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. "
#: mod/admin.php:997
msgid "Periodical check of global contacts"
msgstr "Verificación periódica de los contactos globales."
#: mod/admin.php:997
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:998
msgid "Days between requery"
msgstr "Días entre búsquedas"
#: mod/admin.php:998
msgid "Number of days after which a server is requeried for his contacts."
msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos."
#: mod/admin.php:999
msgid "Discover contacts from other servers"
msgstr "Descubrir contactos de otros servidores"
#: mod/admin.php:999
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:1000
msgid "Timeframe for fetching global contacts"
msgstr "Intervalos de tiempo para revisar contactos globales."
#: mod/admin.php:1000
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:1001
msgid "Search the local directory"
msgstr "Buscar el directorio local"
#: mod/admin.php:1001
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:1003
msgid "Publish server information"
msgstr "Publicar información del servidor"
#: mod/admin.php:1003
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 <a"
" href='http://the-federation.info/'>the-federation.info</a> 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 <a href='http://the-federation.info/'>the-federation.info</a> por detalles."
#: mod/admin.php:1005
msgid "Use MySQL full text engine"
msgstr "Usar motor MySQL de texto completo"
#: mod/admin.php:1005
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:1006
msgid "Suppress Language"
msgstr "Suprimir idiomas"
#: mod/admin.php:1006
msgid "Suppress language information in meta information about a posting."
msgstr "Suprimir la información de datos meta sobre informaciones de idiomas en las publicaciones."
#: mod/admin.php:1007
msgid "Suppress Tags"
msgstr "Suprimir tags"
#: mod/admin.php:1007
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "Suprimir la lista de tags al final de una publicación."
#: mod/admin.php:1008
msgid "Path to item cache"
msgstr "Ruta a la caché del objeto"
#: mod/admin.php:1008
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:1009
msgid "Cache duration in seconds"
msgstr "Duración de la caché en segundos"
#: mod/admin.php:1009
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 "¿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:1010
msgid "Maximum numbers of comments per post"
msgstr "Numero máximo de respuestas por tema"
#: mod/admin.php:1010
msgid "How much comments should be shown for each post? Default value is 100."
msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."
#: mod/admin.php:1011
msgid "Path for lock file"
msgstr "Ruta al archivo protegido"
#: mod/admin.php:1011
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:1012
msgid "Temp path"
msgstr "Ruta a los temporales"
#: mod/admin.php:1012
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:1013
msgid "Base path to installation"
msgstr "Ruta base para la instalación"
#: mod/admin.php:1013
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:1014
msgid "Disable picture proxy"
msgstr "Deshabilitar proxy de imagen"
#: mod/admin.php:1014
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on"
" systems with very low bandwith."
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:1015
msgid "Enable old style pager"
msgstr "Habilitar paginación estilo viejo"
#: mod/admin.php:1015
msgid ""
"The old style pager has page numbers but slows down massively the page "
"speed."
msgstr "La paginación al estilo viejo tiene números de paginas pero enlentece masivamente la velocidad de la pagina."
#: mod/admin.php:1016
msgid "Only search in tags"
msgstr "Solo buscar en tags"
#: mod/admin.php:1016
msgid "On large systems the text search can slow down the system extremely."
msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."
#: mod/admin.php:1018
msgid "New base url"
msgstr "Nueva URLbase"
#: mod/admin.php:1018
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:1020
msgid "RINO Encryption"
msgstr "Encryptado RINO"
#: mod/admin.php:1020
msgid "Encryption layer between nodes."
msgstr "Capa de encryptación entre nodos."
#: mod/admin.php:1021
msgid "Embedly API key"
msgstr "Embedly llave de API (API key) "
#: mod/admin.php:1021
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr "<a href='http://embed.ly'>Embedly</a> es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional."
#: mod/admin.php:1023
msgid "Enable 'worker' background processing"
msgstr "Habilitar procesos de fondo del \"trabajador\""
#: mod/admin.php:1023
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr "Limita los procesos del trabajo de fondo del numero paralelo de trabajos a un numero máximo que respeta la carga del sistema."
#: mod/admin.php:1024
msgid "Maximum number of parallel workers"
msgstr "Numero máximo de trabajos paralelos de fondo."
#: mod/admin.php:1024
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr "Ajustar a 2 en un servidor compartido (shared hosting).\nEn sistemas grandes valores como 10 son excelentes.\nValor por defecto es 4."
#: mod/admin.php:1025
msgid "Don't use 'proc_open' with the worker"
msgstr "No use 'proc_open' junto al \"trabajador\"!"
#: mod/admin.php:1025
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)"
#: mod/admin.php:1026
msgid "Enable fastlane"
msgstr "Habilitar ascenso rápido"
#: mod/admin.php:1026
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."
#: mod/admin.php:1055
msgid "Update has been marked successful"
msgstr "La actualización se ha completado con éxito"
#: mod/admin.php:1063
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr "Actualización de base de datos %s fue aplicada con éxito."
#: mod/admin.php:1066
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
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:1078
#, php-format
msgid "Executing %s failed with error: %s"
msgstr "Paso %s fallo con el error: %s"
#: mod/admin.php:1081
#, php-format
msgid "Update %s was successfully applied."
msgstr "Actualización %s aplicada con éxito."
#: mod/admin.php:1085
#, 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:1087
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr "No había función adicional de actualización %s que necesitaba ser requerida."
#: mod/admin.php:1106
msgid "No failed updates."
msgstr "Actualizaciones sin fallos."
#: mod/admin.php:1107
msgid "Check database structure"
msgstr "Revisar estructura de la base de datos"
#: mod/admin.php:1112
msgid "Failed Updates"
msgstr "Actualizaciones fallidas"
#: mod/admin.php:1113
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:1114
msgid "Mark success (if update was manually applied)"
msgstr "Marcar como correcta (si actualizaste manualmente)"
#: mod/admin.php:1115
msgid "Attempt to execute this update step automatically"
msgstr "Intentando ejecutar este paso automáticamente"
#: mod/admin.php:1149
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tel administrador de %2$s ha creado una cuenta para usted."
#: mod/admin.php:1152
#, 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 "\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:1196
#, 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:1203
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s usuario eliminado"
msgstr[1] "%s usuarios eliminados"
#: mod/admin.php:1250
#, php-format
msgid "User '%s' deleted"
msgstr "Usuario '%s' eliminado"
#: mod/admin.php:1258
#, php-format
msgid "User '%s' unblocked"
msgstr "Usuario '%s' desbloqueado"
#: mod/admin.php:1258
#, php-format
msgid "User '%s' blocked"
msgstr "Usuario '%s' bloqueado'"
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Register date"
msgstr "Fecha de registro"
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Last login"
msgstr "Último acceso"
#: mod/admin.php:1367 mod/admin.php:1392
msgid "Last item"
msgstr "Último elemento"
#: mod/admin.php:1367 mod/settings.php:43
msgid "Account"
msgstr "Cuenta"
#: mod/admin.php:1376
msgid "Add User"
msgstr "Agregar usuario"
#: mod/admin.php:1377
msgid "select all"
msgstr "seleccionar todo"
#: mod/admin.php:1378
msgid "User registrations waiting for confirm"
msgstr "Registro de usuarios esperando confirmación"
#: mod/admin.php:1379
msgid "User waiting for permanent deletion"
msgstr "Usuario esperando anulación permanente."
#: mod/admin.php:1380
msgid "Request date"
msgstr "Solicitud de fecha"
#: mod/admin.php:1381
msgid "No registrations."
msgstr "Sin registros."
#: mod/admin.php:1383
msgid "Deny"
msgstr "Denegado"
#: mod/admin.php:1385 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Block"
msgstr "Bloquear"
#: mod/admin.php:1386 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:992
msgid "Unblock"
msgstr "Desbloquear"
#: mod/admin.php:1387
msgid "Site admin"
msgstr "Administrador de la web"
#: mod/admin.php:1388
msgid "Account expired"
msgstr "Cuenta caducada"
#: mod/admin.php:1391
msgid "New User"
msgstr "Nuevo usuario"
#: mod/admin.php:1392
msgid "Deleted since"
msgstr "Borrado desde"
#: mod/admin.php:1397
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:1398
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:1408
msgid "Name of the new user."
msgstr "Nombre del nuevo usuario"
#: mod/admin.php:1409
msgid "Nickname"
msgstr "Apodo"
#: mod/admin.php:1409
msgid "Nickname of the new user."
msgstr "Apodo del nuevo perfil."
#: mod/admin.php:1410
msgid "Email address of the new user."
msgstr "Dirección de correo del nuevo perfil."
#: mod/admin.php:1453
#, php-format
msgid "Plugin %s disabled."
msgstr "Módulo %s deshabilitado."
#: mod/admin.php:1457
#, php-format
msgid "Plugin %s enabled."
msgstr "Módulo %s habilitado."
#: mod/admin.php:1468 mod/admin.php:1704
msgid "Disable"
msgstr "Desactivado"
#: mod/admin.php:1470 mod/admin.php:1706
msgid "Enable"
msgstr "Activado"
#: mod/admin.php:1493 mod/admin.php:1751
msgid "Toggle"
msgstr "Activar"
#: mod/admin.php:1501 mod/admin.php:1760
msgid "Author: "
msgstr "Autor:"
#: mod/admin.php:1502 mod/admin.php:1761
msgid "Maintainer: "
msgstr "Mantenedor: "
#: mod/admin.php:1554
msgid "Reload active plugins"
msgstr "Recargar plugins activos"
#: mod/admin.php:1559
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr "No ay plugins habilitados en este nodo. Encontrara los repositorios oficiales de plugins en %1$s y posiblemente encontrara mas plugins interesantes en el registro abierto de plugins aquí %2$s ."
#: mod/admin.php:1664
msgid "No themes found."
msgstr "No se encontraron temas."
#: mod/admin.php:1742
msgid "Screenshot"
msgstr "Captura de pantalla"
#: mod/admin.php:1802
msgid "Reload active themes"
msgstr "Recargar interfaces de usuario activos"
#: mod/admin.php:1807
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr "No se encuentran interfaces en el sistema. Deberían estar localizados (paced) en %1$s"
#: mod/admin.php:1808
msgid "[Experimental]"
msgstr "[Experimental]"
#: mod/admin.php:1809
msgid "[Unsupported]"
msgstr "[Sin soporte]"
#: mod/admin.php:1833
msgid "Log settings updated."
msgstr "Configuración de registro actualizada."
#: mod/admin.php:1865
msgid "PHP log currently enabled."
msgstr "Registro PHP actualmente disponible."
#: mod/admin.php:1867
msgid "PHP log currently disabled."
msgstr "Registro PHP actualmente deshabilitado."
#: mod/admin.php:1876
msgid "Clear"
msgstr "Limpiar"
#: mod/admin.php:1881
msgid "Enable Debugging"
msgstr "Habilitar debugging"
#: mod/admin.php:1882
msgid "Log file"
msgstr "Archivo de registro"
#: mod/admin.php:1882
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:1883
msgid "Log level"
msgstr "Nivel de registro"
#: mod/admin.php:1886
msgid "PHP logging"
msgstr "PHP logging"
#: mod/admin.php:1887
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo."
#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
msgid "Off"
msgstr "Apagado"
#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
msgid "On"
msgstr "Encendido"
#: mod/admin.php:2015
#, php-format
msgid "Lock feature %s"
msgstr "Trancar opción %s "
#: mod/admin.php:2023
msgid "Manage Additional Features"
msgstr "Administrar opciones adicionales"
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr "No hay amigos para mostrar."
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "El acceso a este perfil ha sido restringido."
#: mod/cal.php:276 mod/events.php:380
msgid "View"
msgstr "Vista"
#: mod/cal.php:277 mod/events.php:382
msgid "Previous"
msgstr "Previo"
#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
msgid "Next"
msgstr "Siguiente"
#: mod/cal.php:287 mod/events.php:392
msgid "list"
msgstr "lista"
#: mod/cal.php:297
msgid "User not found"
msgstr "Usuario no encontrado"
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr "Este formato de calendario no se soporta"
#: mod/cal.php:315
msgid "No exportable data found"
msgstr "No se ha encontrado información exportable"
#: mod/cal.php:330
msgid "calendar"
msgstr "calendario"
#: mod/common.php:86
msgid "No contacts in common."
msgstr "Sin contactos en común."
#: mod/common.php:134 mod/contacts.php:863
msgid "Common Friends"
msgstr "Amigos comunes"
#: mod/community.php:27
msgid "Not available."
msgstr "No disponible"
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d contacto editado."
msgstr[1] "%d contacts edited."
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr "No se pudo acceder a los datos del contacto."
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr "No se pudo encontrar el perfil seleccionado."
#: mod/contacts.php:206
msgid "Contact updated."
msgstr "Contacto actualizado."
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr "El contacto ha sido bloqueado"
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr "El contacto ha sido desbloqueado"
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr "El contacto ha sido ignorado"
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr "El contacto ya no está ignorado"
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr "El contacto ha sido archivado"
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr "El contacto ya no está archivado"
#: mod/contacts.php:437
msgid "Drop contact"
msgstr "Eliminar contacto"
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr "¿Estás seguro de que quieres eliminar este contacto?"
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr "El contacto ha sido eliminado"
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr "Ahora tienes una amistad mutua con %s"
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr "Estás compartiendo con %s"
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr "%s está compartiendo contigo"
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr "Las comunicaciones privadas no está disponibles para este contacto."
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr "(La actualización se ha completado)"
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr "(La actualización no se ha completado)"
#: mod/contacts.php:536 mod/contacts.php:973
msgid "Suggest friends"
msgstr "Sugerir amigos"
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr "Tipo de red: %s"
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr "¡Se ha perdido la comunicación con este contacto!"
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr "Recaudar informacion complementaria de los feeds"
#: 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:575
msgid "Contact"
msgstr "Contacto"
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr "Visibilidad del Perfil"
#: mod/contacts.php:579
#, 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:580
msgid "Contact Information / Notes"
msgstr "Información del Contacto / Notas"
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr "Editar notas del contacto"
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr "Boquear/Desbloquear contacto"
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr "Ignorar contacto"
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr "Configuración de reparación de la dirección"
#: mod/contacts.php:590
msgid "View conversations"
msgstr "Ver conversaciones"
#: mod/contacts.php:596
msgid "Last update:"
msgstr "Última actualización:"
#: mod/contacts.php:598
msgid "Update public posts"
msgstr "Actualizar publicaciones públicas"
#: mod/contacts.php:600 mod/contacts.php:983
msgid "Update now"
msgstr "Actualizar ahora"
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
msgid "Unignore"
msgstr "Quitar de Ignorados"
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr "Bloqueados"
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr "Ignorados"
#: mod/contacts.php:612
msgid "Currently archived"
msgstr "Archivados"
#: mod/contacts.php:613
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles."
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr "Notificacion de nuevos temas."
#: mod/contacts.php:614
msgid "Send a notification of every new post of this contact"
msgstr "Enviar una notificacion por nuevos temas de este contacto."
#: mod/contacts.php:617
msgid "Blacklisted keywords"
msgstr "Lista negra de palabras"
#: mod/contacts.php:617
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
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:635
msgid "Actions"
msgstr "Acciones"
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr "Ajustes del contacto"
#: mod/contacts.php:684
msgid "Suggestions"
msgstr "Sugerencias"
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr "Amistades potenciales sugeridas"
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr "Mostrar todos los contactos"
#: mod/contacts.php:700
msgid "Unblocked"
msgstr "Desbloqueados"
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr "Mostrar solo contactos sin bloquear"
#: mod/contacts.php:709
msgid "Blocked"
msgstr "Bloqueados"
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr "Mostrar solo contactos bloqueados"
#: mod/contacts.php:718
msgid "Ignored"
msgstr "Ignorados"
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr "Mostrar solo contactos ignorados"
#: mod/contacts.php:727
msgid "Archived"
msgstr "Archivados"
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr "Mostrar solo contactos archivados"
#: mod/contacts.php:736
msgid "Hidden"
msgstr "Ocultos"
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr "Mostrar solo contactos ocultos"
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr "Buscar en tus contactos"
#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:702
msgid "Update"
msgstr "Actualizar"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Archive"
msgstr "Archivo"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Unarchive"
msgstr "Sin archivar"
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr "Accones en lote"
#: mod/contacts.php:856
msgid "View all contacts"
msgstr "Ver todos los contactos"
#: mod/contacts.php:866
msgid "View all common friends"
msgstr "Ver todos los conocidos en común "
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr "Configuración avanzada"
#: mod/contacts.php:916
msgid "Mutual Friendship"
msgstr "Amistad recíproca"
#: mod/contacts.php:920
msgid "is a fan of yours"
msgstr "es tu fan"
#: mod/contacts.php:924
msgid "you are a fan of"
msgstr "eres fan de"
#: mod/contacts.php:994
msgid "Toggle Blocked status"
msgstr "Cambiar bloqueados"
#: mod/contacts.php:1002
msgid "Toggle Ignored status"
msgstr "Cambiar ignorados"
#: mod/contacts.php:1010
msgid "Toggle Archive status"
msgstr "Cambiar archivados"
#: mod/contacts.php:1018
msgid "Delete contact"
msgstr "Eliminar contacto"
#: mod/directory.php:197 view/theme/vier/theme.php:201
#: view/theme/diabook/theme.php:525
msgid "Global Directory"
msgstr "Directorio global"
#: mod/directory.php:199
msgid "Find on this site"
msgstr "Buscar en este sitio"
#: mod/directory.php:201
msgid "Results for:"
msgstr "Resultados para:"
#: mod/directory.php:203
msgid "Site Directory"
msgstr "Directorio del sitio"
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr "Sin entradas (algunas pueden que estén ocultas)."
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr "Buscar perfiles - %s"
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr "Búsqueda de foro - %s"
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr "Sin conincidencias"
#: mod/display.php:473
msgid "Item has been removed."
msgstr "El elemento ha sido eliminado."
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr "Un evento no puede terminar antes de su comienzo."
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr "Título del evento y hora de inicio requeridas."
#: mod/events.php:381
msgid "Create New Event"
msgstr "Crea un evento nuevo"
#: mod/events.php:482
msgid "Event details"
msgstr "Detalles del evento"
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr "Se requiere fecha de comienzo y titulo"
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr "Inicio del evento:"
#: mod/events.php:486 mod/events.php:502
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:488 mod/events.php:489
msgid "Event Finishes:"
msgstr "Finalización del evento:"
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr "Ajuste de zona horaria"
#: mod/events.php:492
msgid "Description:"
msgstr "Descripción:"
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr "Título:"
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr "Comparte este evento"
#: mod/photos.php:1770
msgid "Map"
msgstr "Mapa"
#: mod/install.php:139
msgid "Friendica Communications Server - Setup"
@ -7473,323 +6696,967 @@ msgid ""
"poller."
msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo"
#: mod/item.php:116
msgid "Unable to locate original post."
msgstr "No se puede encontrar la publicación original."
#: 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/item.php:340
msgid "Empty post discarded."
msgstr "Publicación vacía descartada."
#: mod/attach.php:8
msgid "Item not available."
msgstr "Elemento no disponible."
#: mod/item.php:895
msgid "System error. Post not saved."
msgstr "Error del sistema. Mensaje no guardado."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Elemento no encontrado."
#: mod/item.php:985
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] "%d contacto editado."
msgstr[1] "%d contacts edited."
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr "No se pudo acceder a los datos del contacto."
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr "No se pudo encontrar el perfil seleccionado."
#: mod/contacts.php:206
msgid "Contact updated."
msgstr "Contacto actualizado."
#: mod/contacts.php:208 mod/dfrn_request.php:583
msgid "Failed to update contact record."
msgstr "Error al actualizar el contacto."
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr "El contacto ha sido bloqueado"
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr "El contacto ha sido desbloqueado"
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr "El contacto ha sido ignorado"
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr "El contacto ya no está ignorado"
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr "El contacto ha sido archivado"
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr "El contacto ya no está archivado"
#: mod/contacts.php:437
msgid "Drop contact"
msgstr "Eliminar contacto"
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr "¿Estás seguro de que quieres eliminar este contacto?"
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr "El contacto ha sido eliminado"
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr "Ahora tienes una amistad mutua con %s"
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr "Estás compartiendo con %s"
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr "%s está compartiendo contigo"
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr "Las comunicaciones privadas no está disponibles para este contacto."
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr "(La actualización se ha completado)"
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr "(La actualización no se ha completado)"
#: mod/contacts.php:536 mod/contacts.php:973
msgid "Suggest friends"
msgstr "Sugerir amigos"
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr "Tipo de red: %s"
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr "¡Se ha perdido la comunicación con este contacto!"
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr "Recaudar informacion complementaria de los feeds"
#: 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:575
msgid "Contact"
msgstr "Contacto"
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr "Visibilidad del Perfil"
#: mod/contacts.php:579
#, 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."
"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/item.php:987
#, php-format
msgid "You may visit them online at %s"
msgstr "Los puedes visitar en línea en %s"
#: mod/contacts.php:580
msgid "Contact Information / Notes"
msgstr "Información del Contacto / Notas"
#: mod/item.php:988
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr "Editar notas del contacto"
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr "Boquear/Desbloquear contacto"
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr "Ignorar contacto"
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr "Configuración de reparación de la dirección"
#: mod/contacts.php:590
msgid "View conversations"
msgstr "Ver conversaciones"
#: mod/contacts.php:596
msgid "Last update:"
msgstr "Última actualización:"
#: mod/contacts.php:598
msgid "Update public posts"
msgstr "Actualizar publicaciones públicas"
#: mod/contacts.php:600 mod/contacts.php:983
msgid "Update now"
msgstr "Actualizar ahora"
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
msgid "Unignore"
msgstr "Quitar de Ignorados"
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr "Bloqueados"
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr "Ignorados"
#: mod/contacts.php:612
msgid "Currently archived"
msgstr "Archivados"
#: mod/contacts.php:613
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."
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles."
#: mod/item.php:992
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr "Notificacion de nuevos temas."
#: mod/contacts.php:614
msgid "Send a notification of every new post of this contact"
msgstr "Enviar una notificacion por nuevos temas de este contacto."
#: mod/contacts.php:617
msgid "Blacklisted keywords"
msgstr "Lista negra de palabras"
#: mod/contacts.php:617
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
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:635
msgid "Actions"
msgstr "Acciones"
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr "Ajustes del contacto"
#: mod/contacts.php:684
msgid "Suggestions"
msgstr "Sugerencias"
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr "Amistades potenciales sugeridas"
#: mod/contacts.php:692 mod/group.php:192
msgid "All Contacts"
msgstr "Todos los contactos"
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr "Mostrar todos los contactos"
#: mod/contacts.php:700
msgid "Unblocked"
msgstr "Desbloqueados"
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr "Mostrar solo contactos sin bloquear"
#: mod/contacts.php:709
msgid "Blocked"
msgstr "Bloqueados"
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr "Mostrar solo contactos bloqueados"
#: mod/contacts.php:718
msgid "Ignored"
msgstr "Ignorados"
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr "Mostrar solo contactos ignorados"
#: mod/contacts.php:727
msgid "Archived"
msgstr "Archivados"
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr "Mostrar solo contactos archivados"
#: mod/contacts.php:736
msgid "Hidden"
msgstr "Ocultos"
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr "Mostrar solo contactos ocultos"
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr "Buscar en tus contactos"
#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
msgid "Update"
msgstr "Actualizar"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Archive"
msgstr "Archivo"
#: mod/contacts.php:807 mod/contacts.php:1008
msgid "Unarchive"
msgstr "Sin archivar"
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr "Accones en lote"
#: mod/contacts.php:856
msgid "View all contacts"
msgstr "Ver todos los contactos"
#: mod/contacts.php:863 mod/common.php:134
msgid "Common Friends"
msgstr "Amigos comunes"
#: mod/contacts.php:866
msgid "View all common friends"
msgstr "Ver todos los conocidos en común "
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr "Configuración avanzada"
#: mod/contacts.php:916
msgid "Mutual Friendship"
msgstr "Amistad recíproca"
#: mod/contacts.php:920
msgid "is a fan of yours"
msgstr "es tu fan"
#: mod/contacts.php:924
msgid "you are a fan of"
msgstr "eres fan de"
#: mod/contacts.php:994
msgid "Toggle Blocked status"
msgstr "Cambiar bloqueados"
#: mod/contacts.php:1002
msgid "Toggle Ignored status"
msgstr "Cambiar ignorados"
#: mod/contacts.php:1010
msgid "Toggle Archive status"
msgstr "Cambiar archivados"
#: mod/contacts.php:1018
msgid "Delete contact"
msgstr "Eliminar contacto"
#: mod/follow.php:19 mod/dfrn_request.php:875
msgid "Submit Request"
msgstr "Enviar solicitud"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr "Ya has añadido este contacto."
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado."
#: mod/follow.php:109 mod/dfrn_request.php:861
msgid "Please answer the following:"
msgstr "Por favor responde lo siguiente:"
#: mod/follow.php:110 mod/dfrn_request.php:862
#, php-format
msgid "%s posted an update."
msgstr "%s ha publicado una actualización."
msgid "Does %s know you?"
msgstr "¿%s te conoce?"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr "Servicio suspendido por mantenimiento"
#: mod/follow.php:111 mod/dfrn_request.php:866
msgid "Add a personal note:"
msgstr "Añade una nota personal:"
#: mod/match.php:33
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/follow.php:117 mod/dfrn_request.php:872
msgid "Your Identity Address:"
msgstr "Dirección de tu perfil:"
#: mod/match.php:86
msgid "is interested in:"
msgstr "estás interesado en:"
#: mod/follow.php:180
msgid "Contact added"
msgstr "Contacto añadido"
#: mod/match.php:100
msgid "Profile Match"
msgstr "Coincidencias de Perfil"
#: mod/apps.php:11
msgid "Applications"
msgstr "Aplicaciones"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Sin aplicaciones"
#: 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:71
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:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Ignorar/Ocultar"
#: mod/p.php:9
msgid "Not Extended"
msgstr "No extendido"
#: mod/display.php:473
msgid "Item has been removed."
msgstr "El elemento ha sido eliminado."
#: mod/common.php:86
msgid "No contacts in common."
msgstr "Sin contactos en común."
#: mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Bienvenido a Friendica "
#: mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Listado de nuevos miembros"
#: 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 "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
msgid "Getting Started"
msgstr "Empezando"
#: mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Visita guiada a Friendica"
#: mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> 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 <em>Inicio Rápido</em> - 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:26
msgid "Go to Your Settings"
msgstr "Ir a tus ajustes"
#: mod/newmember.php:26
msgid ""
"On your <em>Settings</em> 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 <em>Configuración</em> 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
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 "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
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
msgid "Edit Your Profile"
msgstr "Editar tu perfil"
#: mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Edita tu perfil <strong>predeterminado</strong> como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."
#: mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Palabras clave del perfil"
#: 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
msgid "Connecting"
msgstr "Conectando"
#: mod/newmember.php:51
msgid "Importing Emails"
msgstr "Importando correos electrónicos"
#: mod/newmember.php:51
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:53
msgid "Go to Your Contacts Page"
msgstr "Ir a tu página de contactos"
#: mod/newmember.php:53
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 <em>Add New Contact</em> 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:55
msgid "Go to Your Site's Directory"
msgstr "Ir al directorio de tu sitio"
#: mod/newmember.php:55
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> 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 <em>Conectar</em> o <em>Seguir</em> en su perfil. Proporciona tu direción personal si es necesario."
#: mod/newmember.php:57
msgid "Finding New People"
msgstr "Encontrando nueva gente"
#: mod/newmember.php:57
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 "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:65
msgid "Group Your Contacts"
msgstr "Agrupa tus contactos"
#: mod/newmember.php:65
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:68
msgid "Why Aren't My Posts Public?"
msgstr "¿Por qué mis publicaciones no son públicas?"
#: mod/newmember.php:68
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:73
msgid "Getting Help"
msgstr "Consiguiendo ayuda"
#: mod/newmember.php:77
msgid "Go to the Help Section"
msgstr "Ir a la sección de ayuda"
#: mod/newmember.php:77
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Puedes consultar nuestra página de <strong>Ayuda</strong> para más información y recursos de ayuda."
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr "Eliminar mi cuenta"
#: 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
msgid "Please enter your password for verification:"
msgstr "Por favor, introduce tu contraseña para la verificación:"
#: mod/mood.php:133
msgid "Mood"
msgstr "Ánimo"
#: 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/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Elemento no encontrado"
#: mod/editpost.php:40
msgid "Edit post"
msgstr "Editar publicación"
#: mod/network.php:398
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid ""
"Warning: This group contains %s member from a network that doesn't allow non"
" public messages."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
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."
"Warning: This group contains %s members from a network that doesn't allow "
"non public messages."
msgstr[0] "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos."
msgstr[1] "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos."
#: mod/network.php:401
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."
msgid "Messages in this group won't be send to these receivers."
msgstr "Los mensajes de este grupo no se enviarán a estos receptores."
#: mod/network.php:528
#: mod/network.php:529
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:533
#: mod/network.php:534
msgid "Invalid contact."
msgstr "Contacto erróneo."
#: mod/network.php:826
#: mod/network.php:827
msgid "Commented Order"
msgstr "Orden de comentarios"
#: mod/network.php:829
#: mod/network.php:830
msgid "Sort by Comment Date"
msgstr "Ordenar por fecha de comentarios"
#: mod/network.php:834
#: mod/network.php:835
msgid "Posted Order"
msgstr "Orden de publicación"
#: mod/network.php:837
#: mod/network.php:838
msgid "Sort by Post Date"
msgstr "Ordenar por fecha de publicación"
#: mod/network.php:848
#: mod/network.php:849
msgid "Posts that mention or involve you"
msgstr "Publicaciones que te mencionan o involucran"
#: mod/network.php:856
#: mod/network.php:857
msgid "New"
msgstr "Nuevo"
#: mod/network.php:859
#: mod/network.php:860
msgid "Activity Stream - by date"
msgstr "Corriente de actividad por fecha"
#: mod/network.php:867
#: mod/network.php:868
msgid "Shared Links"
msgstr "Enlaces compartidos"
#: mod/network.php:870
#: mod/network.php:871
msgid "Interesting Links"
msgstr "Enlaces interesantes"
#: mod/network.php:878
#: mod/network.php:879
msgid "Starred"
msgstr "Favoritos"
#: mod/network.php:881
#: mod/network.php:882
msgid "Favourite Posts"
msgstr "Publicaciones favoritas"
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr "Fotos recientes"
#: mod/community.php:27
msgid "Not available."
msgstr "No disponible"
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr "Subir nuevas fotos"
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr "Conversión horária"
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr "todos"
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr "Información del contacto no disponible"
#: mod/photos.php:190
msgid "Album not found."
msgstr "Álbum no encontrado."
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr "Eliminar álbum"
#: mod/photos.php:230
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:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr "Eliminar foto"
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr "¿Estás seguro de que quieres borrar esta foto?"
#: mod/photos.php:688
#, 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:688
msgid "a photo"
msgstr "una foto"
#: mod/photos.php:794
msgid "Image file is empty."
msgstr "El archivo de imagen está vacío."
#: mod/photos.php:954
msgid "No photos selected"
msgstr "Ninguna foto seleccionada"
#: mod/photos.php:1054 mod/videos.php:305
msgid "Access to this item is restricted."
msgstr "El acceso a este elemento está restringido."
#: 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:1148
msgid "Upload Photos"
msgstr "Subir fotos"
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr "Nombre del nuevo álbum: "
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr "o nombre de un álbum existente: "
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr "No actualizar tu estado con este envío"
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1295
msgid "Show to Groups"
msgstr "Mostrar a los Grupos"
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1296
msgid "Show to Contacts"
msgstr "Mostrar a los Contactos"
#: mod/photos.php:1167
msgid "Private Photo"
msgstr "Foto Privada"
#: mod/photos.php:1168
msgid "Public Photo"
msgstr "Foto Pública"
#: mod/photos.php:1234
msgid "Edit Album"
msgstr "Modificar álbum"
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr "Mostrar más nuevos primero"
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr "Mostrar más antiguos primero"
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr "Ver foto"
#: mod/photos.php:1315
msgid "Permission denied. Access to this item may be restricted."
msgstr "Permiso denegado. El acceso a este elemento puede estar restringido."
#: mod/photos.php:1317
msgid "Photo not available"
msgstr "Foto no disponible"
#: mod/photos.php:1372
msgid "View photo"
msgstr "Ver foto"
#: mod/photos.php:1372
msgid "Edit photo"
msgstr "Modificar foto"
#: mod/photos.php:1373
msgid "Use as profile photo"
msgstr "Usar como foto del perfil"
#: mod/photos.php:1398
msgid "View Full Size"
msgstr "Ver a tamaño completo"
#: mod/photos.php:1484
msgid "Tags: "
msgstr "Etiquetas: "
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr "[Borrar todas las etiquetas]"
#: mod/photos.php:1526
msgid "New album name"
msgstr "Nuevo nombre del álbum"
#: mod/photos.php:1527
msgid "Caption"
msgstr "Título"
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr "Añadir una etiqueta"
#: mod/photos.php:1528
#: mod/localtime.php:26
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos."
#: mod/photos.php:1529
msgid "Do not rotate"
msgstr "No rotar"
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "Tiempo UTC: %s"
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr "Girar a la derecha"
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Zona horaria actual: %s"
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr "Girar a la izquierda"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Zona horaria local convertida: %s"
#: mod/photos.php:1546
msgid "Private photo"
msgstr "Foto privada"
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Por favor, selecciona tu zona horaria:"
#: mod/photos.php:1547
msgid "Public photo"
msgstr "Foto pública"
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr "La publicación fue creada"
#: mod/photos.php:1770
msgid "Map"
msgstr "Mapa"
#: mod/group.php:29
msgid "Group created."
msgstr "Grupo creado."
#: mod/photos.php:1847 mod/videos.php:387
msgid "View Album"
msgstr "Ver Álbum"
#: mod/group.php:35
msgid "Could not create group."
msgstr "Imposible crear el grupo."
#: mod/ping.php:234
msgid "{0} wants to be your friend"
msgstr "{0} quiere ser tu amigo"
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr "Grupo no encontrado."
#: mod/ping.php:249
msgid "{0} sent you a message"
msgstr "{0} te ha enviado un mensaje"
#: mod/group.php:60
msgid "Group name changed."
msgstr "El nombre del grupo ha cambiado."
#: mod/ping.php:264
msgid "{0} requested registration"
msgstr "{0} solicitudes de registro"
#: mod/group.php:87
msgid "Save Group"
msgstr "Guardar grupo"
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Consejos para nuevos miembros"
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Crea un grupo de contactos/amigos."
#: mod/group.php:113
msgid "Group removed."
msgstr "Grupo eliminado."
#: mod/group.php:115
msgid "Unable to remove group."
msgstr "No se puede eliminar el grupo."
#: mod/group.php:177
msgid "Group Editor"
msgstr "Editor de grupos"
#: mod/group.php:190
msgid "Members"
msgstr "Miembros"
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr "Esta presentación ya ha sido aceptada."
#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
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:129 mod/dfrn_request.php:525
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:131 mod/dfrn_request.php:527
msgid "Warning: profile location has no profile photo."
msgstr "Aviso: la dirección del perfil no tiene foto de perfil."
#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
#, 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:180
msgid "Introduction complete."
msgstr "Presentación completa."
#: mod/dfrn_request.php:222
msgid "Unrecoverable protocol error."
msgstr "Error de protocolo irrecuperable."
#: mod/dfrn_request.php:250
msgid "Profile unavailable."
msgstr "Perfil no disponible."
#: mod/dfrn_request.php:277
#, 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:278
msgid "Spam protection measures have been invoked."
msgstr "Han sido activadas las medidas de protección contra spam."
#: mod/dfrn_request.php:279
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:341
msgid "Invalid locator"
msgstr "Localizador no válido"
#: mod/dfrn_request.php:350
msgid "Invalid email address."
msgstr "Dirección de correo incorrecta"
#: mod/dfrn_request.php:375
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:478
msgid "You have already introduced yourself here."
msgstr "Ya te has presentado aquí."
#: mod/dfrn_request.php:482
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Al parecer, ya eres amigo de %s."
#: mod/dfrn_request.php:503
msgid "Invalid profile URL."
msgstr "Dirección de perfil no válida."
#: mod/dfrn_request.php:604
msgid "Your introduction has been sent."
msgstr "Tu presentación ha sido enviada."
#: mod/dfrn_request.php:644
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."
#: mod/dfrn_request.php:664
msgid "Please login to confirm introduction."
msgstr "Inicia sesión para confirmar la presentación."
#: mod/dfrn_request.php:674
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Sesión iniciada con la identificación incorrecta. Entra en <strong>este</strong> perfil."
#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
msgid "Confirm"
msgstr "Confirmar"
#: mod/dfrn_request.php:700
msgid "Hide this contact"
msgstr "Ocultar este contacto"
#: mod/dfrn_request.php:703
#, php-format
msgid "Welcome home %s."
msgstr "Bienvenido a casa %s"
#: mod/dfrn_request.php:704
#, 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:833
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:854
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr "Si aun no eres miembro de la red social libre <a href=\"%s/siteinfo\">seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo</a>"
#: mod/dfrn_request.php:859
msgid "Friend/Connection Request"
msgstr "Solicitud de Amistad/Conexión"
#: mod/dfrn_request.php:860
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:869
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Web Social Federada"
#: mod/dfrn_request.php:871
#, 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/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Imagen recibida, pero ha fallado al recortarla."
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, 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:124
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:134
msgid "Unable to process image"
msgstr "Imposible procesar la imagen"
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr "Subir archivo:"
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr "Elige un perfil:"
#: mod/profile_photo.php:251
msgid "Upload"
msgstr "Subir"
#: mod/profile_photo.php:254
msgid "or"
msgstr "o"
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr "saltar este paso"
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr "elige una foto de tus álbumes"
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr "Recortar imagen"
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Por favor, ajusta el recorte de la imagen para optimizarla."
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr "Editado"
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr "Imagen subida con éxito."
#: mod/register.php:93
msgid ""
@ -7811,70 +7678,78 @@ msgstr "Registro exitoso."
msgid "Your registration can not be processed."
msgstr "Tu registro no se puede procesar."
#: mod/register.php:153
#: mod/register.php:160
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:219
#: mod/register.php:226
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:220
#: mod/register.php:227
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:221
#: mod/register.php:228
msgid "Your OpenID (optional): "
msgstr "Tu OpenID (opcional):"
#: mod/register.php:235
#: mod/register.php:242
msgid "Include your profile in member directory?"
msgstr "¿Incluir tu perfil en el directorio de miembros?"
#: mod/register.php:259
#: mod/register.php:267
msgid "Note for the admin"
msgstr "Nota para el administrador"
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
msgstr "Sitio solo accesible mediante invitación."
#: mod/register.php:260
#: mod/register.php:269
msgid "Your invitation ID: "
msgstr "ID de tu invitación: "
#: mod/register.php:271
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr "Nombre completo (ej. Joe Smith, real o real aparente):"
#: mod/register.php:272
#: mod/register.php:281
msgid "Your Email Address: "
msgstr "Tu dirección de correo: "
#: mod/register.php:274 mod/settings.php:1266
#: mod/register.php:283 mod/settings.php:1271
msgid "New Password:"
msgstr "Contraseña nueva:"
#: mod/register.php:274
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr "Dejar vacío para autogenerar una contraseña"
#: mod/register.php:275 mod/settings.php:1267
#: mod/register.php:284 mod/settings.php:1272
msgid "Confirm:"
msgstr "Confirmar:"
#: mod/register.php:276
#: mod/register.php:285
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"<strong>apodo@$nombredelsitio</strong>\"."
#: mod/register.php:277
#: mod/register.php:286
msgid "Choose a nickname: "
msgstr "Escoge un apodo: "
#: mod/register.php:287
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr "Importar tu perfil a esta instancia de friendica"
@ -7882,7 +7757,7 @@ msgstr "Importar tu perfil a esta instancia de friendica"
msgid "Display"
msgstr "Interfaz del usuario"
#: mod/settings.php:67 mod/settings.php:884
#: mod/settings.php:67 mod/settings.php:886
msgid "Social Networks"
msgstr "Redes sociales"
@ -7910,711 +7785,951 @@ msgstr "Configuración de correo actualizada."
msgid "Features updated"
msgstr "Actualizaciones"
#: mod/settings.php:357
#: mod/settings.php:359
msgid "Relocate message has been send to your contacts"
msgstr "Mensaje de reubicación ha sido enviado a sus contactos."
#: mod/settings.php:376
#: mod/settings.php:378
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:384
#: mod/settings.php:386
msgid "Wrong password."
msgstr "Contraseña incorrecta"
#: mod/settings.php:395
#: mod/settings.php:397
msgid "Password changed."
msgstr "Contraseña modificada."
#: mod/settings.php:397
#: mod/settings.php:399
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:477
#: mod/settings.php:479
msgid " Please use a shorter name."
msgstr " Usa un nombre más corto."
#: mod/settings.php:479
#: mod/settings.php:481
msgid " Name too short."
msgstr " Nombre demasiado corto."
#: mod/settings.php:488
#: mod/settings.php:490
msgid "Wrong Password"
msgstr "Contraseña incorrecta"
#: mod/settings.php:493
#: mod/settings.php:495
msgid " Not valid email."
msgstr " Correo no válido."
#: mod/settings.php:499
#: mod/settings.php:501
msgid " Cannot change to that email."
msgstr " No se puede usar ese correo."
#: mod/settings.php:555
#: mod/settings.php:557
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:559
#: mod/settings.php:561
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:599
#: mod/settings.php:601
msgid "Settings updated."
msgstr "Configuración actualizada."
#: mod/settings.php:675 mod/settings.php:701 mod/settings.php:737
#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
msgid "Add application"
msgstr "Agregar aplicación"
#: mod/settings.php:679 mod/settings.php:705
#: mod/settings.php:681 mod/settings.php:707
msgid "Consumer Key"
msgstr "Clave del consumidor"
#: mod/settings.php:680 mod/settings.php:706
#: mod/settings.php:682 mod/settings.php:708
msgid "Consumer Secret"
msgstr "Secreto del consumidor"
#: mod/settings.php:681 mod/settings.php:707
#: mod/settings.php:683 mod/settings.php:709
msgid "Redirect"
msgstr "Redirigir"
#: mod/settings.php:682 mod/settings.php:708
#: mod/settings.php:684 mod/settings.php:710
msgid "Icon url"
msgstr "Dirección del ícono"
#: mod/settings.php:693
#: mod/settings.php:695
msgid "You can't edit this application."
msgstr "No puedes editar esta aplicación."
#: mod/settings.php:736
#: mod/settings.php:738
msgid "Connected Apps"
msgstr "Aplicaciones conectadas"
#: mod/settings.php:740
#: mod/settings.php:742
msgid "Client key starts with"
msgstr "Clave de cliente comienza por"
#: mod/settings.php:741
#: mod/settings.php:743
msgid "No name"
msgstr "Sin nombre"
#: mod/settings.php:742
#: mod/settings.php:744
msgid "Remove authorization"
msgstr "Suprimir la autorización"
#: mod/settings.php:754
#: mod/settings.php:756
msgid "No Plugin settings configured"
msgstr "No se ha configurado ningún módulo"
#: mod/settings.php:762
#: mod/settings.php:764
msgid "Plugin Settings"
msgstr "Configuración de los módulos"
#: mod/settings.php:784
#: mod/settings.php:786
msgid "Additional Features"
msgstr "Características adicionales"
#: mod/settings.php:794 mod/settings.php:798
#: mod/settings.php:796 mod/settings.php:800
msgid "General Social Media Settings"
msgstr "Configuración general de social media "
#: mod/settings.php:804
#: mod/settings.php:806
msgid "Disable intelligent shortening"
msgstr "Deshabilitar recorte inteligente de URL"
#: mod/settings.php:806
#: mod/settings.php:808
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:812
#: mod/settings.php:814
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones "
#: mod/settings.php:814
#: mod/settings.php:816
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:820
#: mod/settings.php:822
msgid "Default group for OStatus contacts"
msgstr "Grupo por defecto para contactos OStatus"
#: mod/settings.php:826
#: mod/settings.php:828
msgid "Your legacy GNU Social account"
msgstr "Tu cuenta GNU social conectada"
#: mod/settings.php:828
#: mod/settings.php:830
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 "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. "
#: mod/settings.php:831
#: mod/settings.php:833
msgid "Repair OStatus subscriptions"
msgstr "Reparar subscripciones de OStatus"
#: mod/settings.php:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
#, 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:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
msgid "enabled"
msgstr "habilitado"
#: mod/settings.php:840 mod/settings.php:841
#: mod/settings.php:842 mod/settings.php:843
msgid "disabled"
msgstr "deshabilitado"
#: mod/settings.php:841
#: mod/settings.php:843
msgid "GNU Social (OStatus)"
msgstr "GNUsocial (OStatus)"
#: mod/settings.php:877
#: mod/settings.php:879
msgid "Email access is disabled on this site."
msgstr "El acceso por correo está deshabilitado en esta web."
#: mod/settings.php:889
#: mod/settings.php:891
msgid "Email/Mailbox Setup"
msgstr "Configuración del correo/buzón"
#: mod/settings.php:890
#: mod/settings.php:892
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:891
#: mod/settings.php:893
msgid "Last successful email check:"
msgstr "Última comprobación del correo con éxito:"
#: mod/settings.php:893
#: mod/settings.php:895
msgid "IMAP server name:"
msgstr "Nombre del servidor IMAP:"
#: mod/settings.php:894
#: mod/settings.php:896
msgid "IMAP port:"
msgstr "Puerto IMAP:"
#: mod/settings.php:895
#: mod/settings.php:897
msgid "Security:"
msgstr "Seguridad:"
#: mod/settings.php:895 mod/settings.php:900
#: mod/settings.php:897 mod/settings.php:902
msgid "None"
msgstr "Ninguna"
#: mod/settings.php:896
#: mod/settings.php:898
msgid "Email login name:"
msgstr "Nombre de usuario:"
#: mod/settings.php:897
#: mod/settings.php:899
msgid "Email password:"
msgstr "Contraseña:"
#: mod/settings.php:898
#: mod/settings.php:900
msgid "Reply-to address:"
msgstr "Dirección de respuesta:"
#: mod/settings.php:899
#: mod/settings.php:901
msgid "Send public posts to all email contacts:"
msgstr "Enviar publicaciones públicas a todos los contactos de correo:"
#: mod/settings.php:900
#: mod/settings.php:902
msgid "Action after import:"
msgstr "Acción después de importar:"
#: mod/settings.php:900
#: mod/settings.php:902
msgid "Move to folder"
msgstr "Mover a un directorio"
#: mod/settings.php:901
#: mod/settings.php:903
msgid "Move to folder:"
msgstr "Mover al directorio:"
#: mod/settings.php:990
#: mod/settings.php:994
msgid "Display Settings"
msgstr "Configuración Tema/Visualización"
#: mod/settings.php:996 mod/settings.php:1018
#: mod/settings.php:1000 mod/settings.php:1023
msgid "Display Theme:"
msgstr "Utilizar tema:"
#: mod/settings.php:997
#: mod/settings.php:1001
msgid "Mobile Theme:"
msgstr "Tema móvil:"
#: mod/settings.php:998
#: mod/settings.php:1002
msgid "Suppress warning of insecure networks"
msgstr "Suprimir el aviso de redes inseguras"
#: mod/settings.php:1002
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas."
#: mod/settings.php:1003
msgid "Update browser every xx seconds"
msgstr "Actualizar navegador cada xx segundos"
#: mod/settings.php:998
#: mod/settings.php:1003
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar."
#: mod/settings.php:999
#: mod/settings.php:1004
msgid "Number of items to display per page:"
msgstr "Número de elementos a mostrar por página:"
#: mod/settings.php:999 mod/settings.php:1000
#: mod/settings.php:1004 mod/settings.php:1005
msgid "Maximum of 100 items"
msgstr "Máximo 100 elementos"
#: mod/settings.php:1000
#: mod/settings.php:1005
msgid "Number of items to display per page when viewed from mobile device:"
msgstr "Cantidad de objetos a visualizar cuando se usa un movil"
#: mod/settings.php:1001
#: mod/settings.php:1006
msgid "Don't show emoticons"
msgstr "No mostrar emoticones"
#: mod/settings.php:1002
#: mod/settings.php:1007
msgid "Calendar"
msgstr "Calendario"
#: mod/settings.php:1003
#: mod/settings.php:1008
msgid "Beginning of week:"
msgstr "Principio de la semana:"
#: mod/settings.php:1004
#: mod/settings.php:1009
msgid "Don't show notices"
msgstr "No mostrara avisos"
#: mod/settings.php:1005
#: mod/settings.php:1010
msgid "Infinite scroll"
msgstr "pagina infinita (sroll)"
#: mod/settings.php:1006
#: mod/settings.php:1011
msgid "Automatic updates only at the top of the network page"
msgstr "Actualizaciones automaticas solo estando al principio de la pagina"
#: mod/settings.php:1007
#: mod/settings.php:1012
msgid "Bandwith Saver Mode"
msgstr ""
msgstr "Modo de guardado de ancho de banda"
#: mod/settings.php:1009
#: mod/settings.php:1012
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas."
#: mod/settings.php:1014
msgid "General Theme Settings"
msgstr "Ajustes generales de tema"
#: mod/settings.php:1010
#: mod/settings.php:1015
msgid "Custom Theme Settings"
msgstr "Ajustes personalizados de tema"
#: mod/settings.php:1011
#: mod/settings.php:1016
msgid "Content Settings"
msgstr "Ajustes de contenido"
#: mod/settings.php:1012 view/theme/frio/config.php:61
#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66
#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109
#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61
#: mod/settings.php:1017 view/theme/frio/config.php:61
#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr "Configuración del Tema"
#: mod/settings.php:1094
#: mod/settings.php:1099
msgid "Account Types"
msgstr "Tipos de cuenta"
#: mod/settings.php:1095
#: mod/settings.php:1100
msgid "Personal Page Subtypes"
msgstr "Subtipos de página personal"
#: mod/settings.php:1096
#: mod/settings.php:1101
msgid "Community Forum Subtypes"
msgstr "Subtipos de foro de comunidad"
#: mod/settings.php:1103
#: mod/settings.php:1108
msgid "Personal Page"
msgstr "Página personal"
#: mod/settings.php:1104
#: mod/settings.php:1109
msgid "This account is a regular personal profile"
msgstr "Esta cuenta es un perfil personal corriente"
#: mod/settings.php:1107
#: mod/settings.php:1112
msgid "Organisation Page"
msgstr "Página de organización"
#: mod/settings.php:1108
#: mod/settings.php:1113
msgid "This account is a profile for an organisation"
msgstr "Esta cuenta es un perfil de una organización"
#: mod/settings.php:1111
#: mod/settings.php:1116
msgid "News Page"
msgstr "Página de noticias"
#: mod/settings.php:1112
#: mod/settings.php:1117
msgid "This account is a news account/reflector"
msgstr "Esta cuenta es una cuenta de noticias/reflectora"
#: mod/settings.php:1115
#: mod/settings.php:1120
msgid "Community Forum"
msgstr "Foro de la comunidad"
#: mod/settings.php:1116
#: mod/settings.php:1121
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr "Esta cuenta es un foro de comunidad donde la gente puede debatir con otros"
#: mod/settings.php:1119
#: mod/settings.php:1124
msgid "Normal Account Page"
msgstr "Página de cuenta normal"
#: mod/settings.php:1120
#: mod/settings.php:1125
msgid "This account is a normal personal profile"
msgstr "Esta cuenta es el perfil personal normal"
#: mod/settings.php:1123
#: mod/settings.php:1128
msgid "Soapbox Page"
msgstr "Página de tribuna"
#: mod/settings.php:1124
#: mod/settings.php:1129
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:1127
#: mod/settings.php:1132
msgid "Public Forum"
msgstr "Foro público"
#: mod/settings.php:1128
#: mod/settings.php:1133
msgid "Automatically approve all contact requests"
msgstr "Aprovar autimáticamente todas las solicitudes de contacto"
#: mod/settings.php:1131
#: mod/settings.php:1136
msgid "Automatic Friend Page"
msgstr "Página de Amistad autómatica"
#: mod/settings.php:1132
#: mod/settings.php:1137
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:1135
#: mod/settings.php:1140
msgid "Private Forum [Experimental]"
msgstr "Foro privado [Experimental]"
#: mod/settings.php:1136
#: mod/settings.php:1141
msgid "Private forum - approved members only"
msgstr "Foro privado - solo miembros"
#: mod/settings.php:1148
#: mod/settings.php:1153
msgid "OpenID:"
msgstr "OpenID:"
#: mod/settings.php:1148
#: mod/settings.php:1153
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta."
#: mod/settings.php:1158
#: mod/settings.php:1163
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:1164
#: mod/settings.php:1169
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:1172
#: mod/settings.php:1177
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:1176
#: mod/settings.php:1181
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. "
#: mod/settings.php:1181
#: mod/settings.php:1186
msgid "Allow friends to post to your profile page?"
msgstr "¿Permites que tus amigos publiquen en tu página de perfil?"
#: mod/settings.php:1187
#: mod/settings.php:1192
msgid "Allow friends to tag your posts?"
msgstr "¿Permites a los amigos etiquetar tus publicaciones?"
#: mod/settings.php:1193
#: mod/settings.php:1198
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:1199
#: mod/settings.php:1204
msgid "Permit unknown people to send you private mail?"
msgstr "¿Permites que desconocidos te manden correos privados?"
#: mod/settings.php:1207
#: mod/settings.php:1212
msgid "Profile is <strong>not published</strong>."
msgstr "El perfil <strong>no está publicado</strong>."
#: mod/settings.php:1215
#: mod/settings.php:1220
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr "Su dirección de identidad es <strong>'%s'</strong> o '%s'."
#: mod/settings.php:1222
#: mod/settings.php:1227
msgid "Automatically expire posts after this many days:"
msgstr "Las publicaciones expirarán automáticamente después de estos días:"
#: mod/settings.php:1222
#: mod/settings.php:1227
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:1223
#: mod/settings.php:1228
msgid "Advanced expiration settings"
msgstr "Configuración avanzada de expiración"
#: mod/settings.php:1224
#: mod/settings.php:1229
msgid "Advanced Expiration"
msgstr "Expiración avanzada"
#: mod/settings.php:1225
#: mod/settings.php:1230
msgid "Expire posts:"
msgstr "¿Expiran las publicaciones?"
#: mod/settings.php:1226
#: mod/settings.php:1231
msgid "Expire personal notes:"
msgstr "¿Expiran las notas personales?"
#: mod/settings.php:1227
#: mod/settings.php:1232
msgid "Expire starred posts:"
msgstr "¿Expiran los favoritos?"
#: mod/settings.php:1228
#: mod/settings.php:1233
msgid "Expire photos:"
msgstr "¿Expiran las fotografías?"
#: mod/settings.php:1229
#: mod/settings.php:1234
msgid "Only expire posts by others:"
msgstr "Solo expiran los mensajes de los demás:"
#: mod/settings.php:1257
#: mod/settings.php:1262
msgid "Account Settings"
msgstr "Configuración de la cuenta"
#: mod/settings.php:1265
#: mod/settings.php:1270
msgid "Password Settings"
msgstr "Configuración de la contraseña"
#: mod/settings.php:1267
#: mod/settings.php:1272
msgid "Leave password fields blank unless changing"
msgstr "Deja la contraseña en blanco si no quieres cambiarla"
#: mod/settings.php:1268
#: mod/settings.php:1273
msgid "Current Password:"
msgstr "Contraseña actual:"
#: mod/settings.php:1268 mod/settings.php:1269
#: mod/settings.php:1273 mod/settings.php:1274
msgid "Your current password to confirm the changes"
msgstr "Su contraseña actual para confirmar los cambios."
#: mod/settings.php:1269
#: mod/settings.php:1274
msgid "Password:"
msgstr "Contraseña:"
#: mod/settings.php:1273
#: mod/settings.php:1278
msgid "Basic Settings"
msgstr "Configuración básica"
#: mod/settings.php:1275
#: mod/settings.php:1280
msgid "Email Address:"
msgstr "Dirección de correo:"
#: mod/settings.php:1276
#: mod/settings.php:1281
msgid "Your Timezone:"
msgstr "Zona horaria:"
#: mod/settings.php:1277
#: mod/settings.php:1282
msgid "Your Language:"
msgstr "Tu idioma:"
#: mod/settings.php:1277
#: mod/settings.php:1282
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo."
#: mod/settings.php:1278
#: mod/settings.php:1283
msgid "Default Post Location:"
msgstr "Localización predeterminada:"
#: mod/settings.php:1279
#: mod/settings.php:1284
msgid "Use Browser Location:"
msgstr "Usar localización del navegador:"
#: mod/settings.php:1282
#: mod/settings.php:1287
msgid "Security and Privacy Settings"
msgstr "Configuración de seguridad y privacidad"
#: mod/settings.php:1284
#: mod/settings.php:1289
msgid "Maximum Friend Requests/Day:"
msgstr "Máximo número de peticiones de amistad por día:"
#: mod/settings.php:1284 mod/settings.php:1314
#: mod/settings.php:1289 mod/settings.php:1319
msgid "(to prevent spam abuse)"
msgstr "(para prevenir el abuso de spam)"
#: mod/settings.php:1285
#: mod/settings.php:1290
msgid "Default Post Permissions"
msgstr "Permisos por defecto para las publicaciones"
#: mod/settings.php:1286
#: mod/settings.php:1291
msgid "(click to open/close)"
msgstr "(pulsa para abrir/cerrar)"
#: mod/settings.php:1297
#: mod/settings.php:1302
msgid "Default Private Post"
msgstr "Publicación Privada por defecto"
#: mod/settings.php:1298
#: mod/settings.php:1303
msgid "Default Public Post"
msgstr "Publicación Pública por defecto"
#: mod/settings.php:1302
#: mod/settings.php:1307
msgid "Default Permissions for New Posts"
msgstr "Permisos por defecto para nuevas publicaciones"
#: mod/settings.php:1314
#: mod/settings.php:1319
msgid "Maximum private messages per day from unknown people:"
msgstr "Número máximo de mensajes diarios para desconocidos:"
#: mod/settings.php:1317
#: mod/settings.php:1322
msgid "Notification Settings"
msgstr "Configuración de notificaciones"
#: mod/settings.php:1318
#: mod/settings.php:1323
msgid "By default post a status message when:"
msgstr "Publicar en tu estado cuando:"
#: mod/settings.php:1319
#: mod/settings.php:1324
msgid "accepting a friend request"
msgstr "aceptes una solicitud de amistad"
#: mod/settings.php:1320
#: mod/settings.php:1325
msgid "joining a forum/community"
msgstr "te unas a un foro/comunidad"
#: mod/settings.php:1321
#: mod/settings.php:1326
msgid "making an <em>interesting</em> profile change"
msgstr "hagas un cambio <em>interesante</em> en tu perfil"
#: mod/settings.php:1322
#: mod/settings.php:1327
msgid "Send a notification email when:"
msgstr "Enviar notificación por correo cuando:"
#: mod/settings.php:1323
#: mod/settings.php:1328
msgid "You receive an introduction"
msgstr "Recibas una presentación"
#: mod/settings.php:1324
#: mod/settings.php:1329
msgid "Your introductions are confirmed"
msgstr "Tu presentación sea confirmada"
#: mod/settings.php:1325
#: mod/settings.php:1330
msgid "Someone writes on your profile wall"
msgstr "Alguien escriba en el muro de mi perfil"
#: mod/settings.php:1326
#: mod/settings.php:1331
msgid "Someone writes a followup comment"
msgstr "Algien escriba en un comentario que sigo"
#: mod/settings.php:1327
#: mod/settings.php:1332
msgid "You receive a private message"
msgstr "Recibas un mensaje privado"
#: mod/settings.php:1328
#: mod/settings.php:1333
msgid "You receive a friend suggestion"
msgstr "Recibas una sugerencia de amistad"
#: mod/settings.php:1329
#: mod/settings.php:1334
msgid "You are tagged in a post"
msgstr "Seas etiquetado en una publicación"
#: mod/settings.php:1330
#: mod/settings.php:1335
msgid "You are poked/prodded/etc. in a post"
msgstr "Te han tocado/empujado/etc. en una publicación"
#: mod/settings.php:1332
#: mod/settings.php:1337
msgid "Activate desktop notifications"
msgstr "Activar notificaciones en pantalla."
#: mod/settings.php:1332
#: mod/settings.php:1337
msgid "Show desktop popup on new notifications"
msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos."
#: mod/settings.php:1334
#: mod/settings.php:1339
msgid "Text-only notification emails"
msgstr "Notificaciones e-mail de solo texto"
#: mod/settings.php:1336
#: mod/settings.php:1341
msgid "Send text only notification emails, without the html part"
msgstr "Enviar las notificaciones por correo con formato de solo texto sin html."
#: mod/settings.php:1338
#: mod/settings.php:1343
msgid "Advanced Account/Page Type Settings"
msgstr "Configuración avanzada de tipo de Cuenta/Página"
#: mod/settings.php:1339
#: mod/settings.php:1344
msgid "Change the behaviour of this account for special situations"
msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales"
#: mod/settings.php:1342
#: mod/settings.php:1347
msgid "Relocate"
msgstr "Relocalizar"
#: mod/settings.php:1343
#: mod/settings.php:1348
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 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:1344
#: mod/settings.php:1349
msgid "Resend relocate message to contacts"
msgstr "Reenviar mensaje de relocalización a los contactos"
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "¿Estás seguro de que quieres borrar esta sugerencia?"
#: 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/suggest.php:71
#: mod/wallmessage.php:56 mod/message.php:71
msgid "No recipient selected."
msgstr "Ningún destinatario seleccionado"
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Imposible comprobar tu servidor de inicio."
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr "El mensaje no ha podido ser enviado."
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr "Fallo en la recolección de mensajes."
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr "Mensaje enviado."
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Sin receptor."
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr "Enviar mensaje privado"
#: mod/wallmessage.php:143
#, php-format
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."
"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/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Ignorar/Ocultar"
#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr "Para:"
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr "[Contenido incrustado - recarga la página para verlo]"
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr "Asunto:"
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr "Realmente quieres eliminar este vídeo?"
#: mod/share.php:38
msgid "link"
msgstr "enlace"
#: mod/videos.php:125
msgid "Delete Video"
msgstr "Borrar vídeo"
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr "Autorizar la conexión de la aplicación"
#: mod/videos.php:204
msgid "No videos selected"
msgstr "Ningún vídeo seleccionado"
#: 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/videos.php:396
msgid "Recent Videos"
msgstr "Vídeos recientes"
#: mod/api.php:89
msgid "Please login to continue."
msgstr "Inicia sesión para continuar."
#: mod/videos.php:398
msgid "Upload New Videos"
msgstr "Subir nuevos vídeos"
#: 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/viewcontacts.php:72
msgid "No contacts."
msgstr "Ningún contacto."
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Texto fuente (bbcode):"
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Fuente (Diaspora) para pasar a BBcode:"
#: mod/babel.php:31
msgid "Source input: "
msgstr "Entrada: "
#: 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 "Fuente (formato Diaspora): "
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: mod/item.php:116
msgid "Unable to locate original post."
msgstr "No se puede encontrar la publicación original."
#: mod/item.php:340
msgid "Empty post discarded."
msgstr "Publicación vacía descartada."
#: mod/item.php:898
msgid "System error. Post not saved."
msgstr "Error del sistema. Mensaje no guardado."
#: mod/item.php:988
#, 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:990
#, php-format
msgid "You may visit them online at %s"
msgstr "Los puedes visitar en línea en %s"
#: mod/item.php:991
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:995
#, php-format
msgid "%s posted an update."
msgstr "%s ha publicado una actualización."
#: mod/ostatus_subscribe.php:14
msgid "Subscribing to OStatus contacts"
msgstr "Subscribir a los contactos de OStatus"
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr "Sin suministro de datos de contacto."
#: mod/ostatus_subscribe.php:30
msgid "Couldn't fetch information for contact."
msgstr "No se ha podido conseguir la información del contacto."
#: mod/ostatus_subscribe.php:38
msgid "Couldn't fetch friends for contact."
msgstr "No se ha podido conseguir datos de amigos para contactar."
#: mod/ostatus_subscribe.php:65
msgid "success"
msgstr "exito!"
#: mod/ostatus_subscribe.php:67
msgid "failed"
msgstr "fallido!"
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s te da la bienvenida a %2$s"
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Consejos para nuevos miembros"
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr "No se puede encontrar información del contacto."
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr "¿Estás seguro de que quieres borrar este mensaje?"
#: mod/message.php:235
msgid "Message deleted."
msgstr "Mensaje eliminado."
#: mod/message.php:266
msgid "Conversation removed."
msgstr "Conversación eliminada."
#: mod/message.php:383
msgid "No messages."
msgstr "No hay mensajes."
#: mod/message.php:426
msgid "Message not available."
msgstr "Mensaje no disponibile."
#: mod/message.php:503
msgid "Delete message"
msgstr "Borrar mensaje"
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr "Eliminar conversación"
#: mod/message.php:531
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "No hay comunicaciones seguras disponibles. <strong>Podrías</strong> responder desde la página de perfil del remitente. "
#: mod/message.php:535
msgid "Send Reply"
msgstr "Enviar respuesta"
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr "Remitente desconocido - %s"
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr "Tú y %s"
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr "%s y Tú"
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d mensaje"
msgstr[1] "%d mensajes"
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr "Administrar identidades y/o páginas"
#: mod/manage.php:140
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:141
msgid "Select an identity to manage: "
msgstr "Selecciona una identidad a gestionar:"
#: object/Item.php:370
msgid "via"
@ -8652,6 +8767,14 @@ msgstr "Reajustar al mejor tamaño"
msgid "Resize to best fit and retain aspect ratio."
msgstr "Reajustar al mejor tamaño y conservar proporción"
#: view/theme/frio/theme.php:229
msgid "Guest"
msgstr "Invitado"
#: view/theme/frio/theme.php:235
msgid "Visitor"
msgstr "Visitante"
#: view/theme/frio/config.php:42
msgid "Default"
msgstr "Por defecto"
@ -8692,31 +8815,6 @@ msgstr "Transparencia de contenido de fondo"
msgid "Set the background image"
msgstr "Seleccionar la imagen de fondo"
#: view/theme/frio/theme.php:226
msgid "Guest"
msgstr "Invitado"
#: view/theme/frio/theme.php:232
msgid "Visitor"
msgstr "Visitante"
#: 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
msgid "Set font-size for posts and comments"
msgstr "Tamaño del texto para publicaciones y comentarios"
#: 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
msgid "Color scheme"
msgstr "Esquema de color"
#: view/theme/quattro/config.php:67
msgid "Alignment"
msgstr "Alineación"
@ -8729,6 +8827,10 @@ msgstr "Izquierda"
msgid "Center"
msgstr "Centrado"
#: view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr "Esquema de color"
#: view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr "Tamaño de letra del titulo de las publicaciones"
@ -8737,33 +8839,19 @@ msgstr "Tamaño de letra del titulo de las publicaciones"
msgid "Textareas font size"
msgstr "Tamaño de letra del área de texto"
#: 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
msgid "Set colour scheme"
msgstr "Configurar esquema de color"
#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
#: view/theme/diabook/config.php:160
msgid "Community Profiles"
msgstr "Perfiles de la Comunidad"
#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
#: view/theme/diabook/config.php:164
msgid "Last users"
msgstr "Últimos usuarios"
#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
#: view/theme/diabook/config.php:163
msgid "Find Friends"
msgstr "Buscar amigos"
#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524
#: view/theme/vier/theme.php:200
msgid "Local Directory"
msgstr "Directorio local"
@ -8772,8 +8860,6 @@ msgid "Quick Start"
msgstr "Inicio rápido"
#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
#: view/theme/diabook/config.php:162
msgid "Connect Services"
msgstr "Servicios conectados"
@ -8785,68 +8871,14 @@ msgstr "Lista separada por comas de foros de ayuda."
msgid "Set style"
msgstr "Definir estilo"
#: view/theme/vier/config.php:111 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/vier/config.php:111
msgid "Community Pages"
msgstr "Páginas de Comunidad"
#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599
#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161
#: view/theme/vier/config.php:113
msgid "Help or @NewHere ?"
msgstr "¿Ayuda o @NuevoAquí?"
#: view/theme/diabook/theme.php:125
msgid "Your contacts"
msgstr "Tus contactos"
#: view/theme/diabook/theme.php:128
msgid "Your personal photos"
msgstr "Tus fotos personales"
#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632
#: view/theme/diabook/config.php:166
msgid "Last likes"
msgstr "Últimos \"me gusta\""
#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
#: view/theme/diabook/config.php:165
msgid "Last photos"
msgstr "Últimas fotos"
#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
#: view/theme/diabook/config.php:159
msgid "Earth Layers"
msgstr "Minimapa"
#: view/theme/diabook/theme.php:584
msgid "Set zoomfactor for Earth Layers"
msgstr "Configurar zoom en Minimapa"
#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156
msgid "Set longitude (X) for Earth Layers"
msgstr "Configurar longitud (X) en Minimapa"
#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157
msgid "Set latitude (Y) for Earth Layers"
msgstr "Configurar latitud (Y) en Minimapa"
#: view/theme/diabook/theme.php:622
msgid "Show/hide boxes at right-hand column:"
msgstr "Mostrar/Ocultar casillas en la columna derecha:"
#: 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
msgid "Set color scheme"
msgstr "Configurar esquema de color"
#: view/theme/diabook/config.php:155
msgid "Set zoomfactor for Earth Layer"
msgstr "Establecer zoom para Minimapa"
#: view/theme/duepuntozero/config.php:45
msgid "greenzero"
msgstr "greenzero"
@ -8874,56 +8906,3 @@ msgstr "slackr"
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
msgstr "Variaciones"
#: index.php:447
msgid "toggle mobile"
msgstr "Cambiar a versión móvil"
#: boot.php:968
msgid "Delete this item?"
msgstr "¿Eliminar este elemento?"
#: boot.php:971
msgid "show fewer"
msgstr "ver menos"
#: boot.php:1641
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Falló la actualización de %s. Mira los registros de errores."
#: boot.php:1753
msgid "Create a New Account"
msgstr "Crear una nueva cuenta"
#: boot.php:1782
msgid "Password: "
msgstr "Contraseña: "
#: boot.php:1783
msgid "Remember me"
msgstr "Recordarme"
#: boot.php:1786
msgid "Or login using OpenID: "
msgstr "O inicia sesión usando OpenID: "
#: boot.php:1792
msgid "Forgot your password?"
msgstr "¿Olvidaste la contraseña?"
#: boot.php:1795
msgid "Website Terms of Service"
msgstr "Términos de uso del sitio"
#: boot.php:1796
msgid "terms of service"
msgstr "Términos de uso"
#: boot.php:1798
msgid "Website Privacy Policy"
msgstr "Política de privacidad del sitio"
#: boot.php:1799
msgid "privacy policy"
msgstr "Política de privacidad"

View file

@ -5,6 +5,48 @@ function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Delete this item?"] = "¿Eliminar este elemento?";
$a->strings["Comment"] = "Comentar";
$a->strings["show more"] = "ver más";
$a->strings["show fewer"] = "ver menos";
$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores.";
$a->strings["Create a New Account"] = "Crear una nueva cuenta";
$a->strings["Register"] = "Registrarse";
$a->strings["Logout"] = "Salir";
$a->strings["Login"] = "Acceder";
$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: ";
$a->strings["Password: "] = "Contraseña: ";
$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["Password Reset"] = "Restablecer la contraseña";
$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["Miscellaneous"] = "Varios";
$a->strings["Birthday:"] = "Fecha de nacimiento:";
$a->strings["Age: "] = "Edad: ";
$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";
$a->strings["minute"] = "minuto";
$a->strings["minutes"] = "minutos";
$a->strings["second"] = "segundo";
$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["Add New Contact"] = "Añadir nuevo contacto";
$a->strings["Enter address or web location"] = "Escribe la dirección o página web";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel";
@ -31,9 +73,158 @@ $a->strings["%d contact in common"] = array(
0 => "%d contacto en común",
1 => "%d contactos en común",
);
$a->strings["show more"] = "ver más";
$a->strings["System"] = "Sistema";
$a->strings["Network"] = "Red";
$a->strings["Personal"] = "Personal";
$a->strings["Home"] = "Inicio";
$a->strings["Introductions"] = "Presentaciones";
$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s";
$a->strings["%s created a new post"] = "%s creó una nueva publicación";
$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s";
$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s";
$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's";
$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's";
$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's";
$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s";
$a->strings["Friend Suggestion"] = "Propuestas de amistad";
$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión";
$a->strings["New Follower"] = "Nuevo seguidor";
$a->strings["Friendica Notification"] = "Notificación de Friendica";
$a->strings["Thank You,"] = "Gracias,";
$a->strings["%s Administrator"] = "%s Administrador";
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador";
$a->strings["noreply"] = "no responder";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificación] Nuevo correo recibido de %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s te ha enviado un mensaje privado desde %2\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s te ha enviado %2\$s.";
$a->strings["a private message"] = "un mensaje privado";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visita %s para ver y/o responder a tus mensajes privados.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentó en [url=%2\$s] %4\$s de %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s] tu %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificación] Comentario en la conversación de #%1\$d por %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s ha comentado en una conversación/elemento que sigues.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visita %s para ver y/o responder a la conversación.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificación] %s publicó en tu muro";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicó en tu perfil de %2\$s";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicó en [url=%2\$s]tu muro[/url]";
$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"] = "[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].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificación] %s ha etiquetado tu publicación";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetado tu publicación en %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha etiquetado [url=%2\$s]tu publicación[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificación] Presentación recibida";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has recibido una presentación de '%1\$s' en %2\$s";
$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"] = "[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"] = "[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 without restriction."] = "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción.";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor visite %s si desea hacer algún cambio a su relación.";
$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 extender esto en una relación más permisiva o ambidireccional en el futuro.";
$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["[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["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.";
$a->strings["Forums"] = "Foros";
$a->strings["External link to forum"] = "Enlace externo al foro";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s";
$a->strings["status"] = "estado";
$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*";
$a->strings["Attachments:"] = "Archivos adjuntos:";
$a->strings["%s\\'s birthday"] = "%s\\'s cumpleaños";
$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 => "%d contactos no encontrado",
1 => "%d contactos no importado",
);
$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["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información DNS para la base de datos del servidor '%s'";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Starts:"] = "Inicio:";
$a->strings["Finishes:"] = "Final:";
$a->strings["Location:"] = "Localización:";
$a->strings["Sun"] = "Dom";
$a->strings["Mon"] = "Lun";
$a->strings["Tue"] = "Mar";
$a->strings["Wed"] = "Mie";
$a->strings["Thu"] = "Jue";
$a->strings["Fri"] = "Vie";
$a->strings["Sat"] = "Sab";
$a->strings["Sunday"] = "Domingo";
$a->strings["Monday"] = "Lunes";
$a->strings["Tuesday"] = "Martes";
$a->strings["Wednesday"] = "Miércoles";
$a->strings["Thursday"] = "Jueves";
$a->strings["Friday"] = "Viernes";
$a->strings["Saturday"] = "Sábado";
$a->strings["Jan"] = "Ene";
$a->strings["Feb"] = "Feb";
$a->strings["Mar"] = "Mar";
$a->strings["Apr"] = "Abr";
$a->strings["May"] = "Mayo";
$a->strings["Jun"] = "Jun";
$a->strings["Jul"] = "Jul";
$a->strings["Aug"] = "Ago";
$a->strings["Sept"] = "Sept";
$a->strings["Oct"] = "Oct";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Dec";
$a->strings["January"] = "Enero";
$a->strings["February"] = "Febrero";
$a->strings["March"] = "Marzo";
$a->strings["April"] = "Abril";
$a->strings["June"] = "Junio";
$a->strings["July"] = "Julio";
$a->strings["August"] = "Agosto";
$a->strings["September"] = "Septiembre";
$a->strings["October"] = "Octubre";
$a->strings["November"] = "Noviembre";
$a->strings["December"] = "Diciembre";
$a->strings["today"] = "hoy";
$a->strings["all-day"] = "todo el día";
$a->strings["No events to display"] = "No hay eventos a mostrar";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Editar evento";
$a->strings["link to source"] = "Enlace al original";
$a->strings["Export"] = "Exportar";
$a->strings["Export calendar as ical"] = "Exportar calendario como ical";
$a->strings["Export calendar as csv"] = "Exportar calendario como csv";
$a->strings["Welcome "] = "Bienvenido ";
$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil.";
$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["Male"] = "Hombre";
$a->strings["Female"] = "Mujer";
$a->strings["Currently Male"] = "Actualmente Hombre";
@ -95,201 +286,80 @@ $a->strings["Uncertain"] = "Incierto";
$a->strings["It's complicated"] = "Es complicado";
$a->strings["Don't care"] = "No te importa";
$a->strings["Ask me"] = "Pregúntame";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Starts:"] = "Inicio:";
$a->strings["Finishes:"] = "Final:";
$a->strings["Location:"] = "Localización:";
$a->strings["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información DNS para la base de datos del servidor '%s'";
$a->strings["Logged out."] = "Sesión finalizada";
$a->strings["Login failed."] = "Accesso fallido.";
$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:";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes <strong>pueden</strong> 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.";
$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos";
$a->strings["Everybody"] = "Todo el mundo";
$a->strings["edit"] = "editar";
$a->strings["Groups"] = "Grupos";
$a->strings["Edit groups"] = "Editar grupo";
$a->strings["Edit group"] = "Editar grupo";
$a->strings["Create a new group"] = "Crear un nuevo grupo";
$a->strings["Group Name: "] = "Nombre del grupo: ";
$a->strings["Contacts not in any group"] = "Contactos sin grupo";
$a->strings["add"] = "añadir";
$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada.";
$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";
$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria.";
$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto.";
$a->strings["Name too short."] = "El nombre es demasiado corto.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo.";
$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 \"_\"."] = "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["default"] = "predeterminado";
$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["Profile Photos"] = "Foto del perfil";
$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["Registration details for %s"] = "Detalles de registro para %s";
$a->strings["Unknown | Not categorised"] = "Desconocido | No clasificado";
$a->strings["Block immediately"] = "Bloquear inmediatamente";
$a->strings["Shady, spammer, self-marketer"] = "Sospechoso, spammer, auto-publicidad";
$a->strings["Known to me, but no opinion"] = "Le conozco, sin opinión";
$a->strings["OK, probably harmless"] = "OK, probablemente inofensivo";
$a->strings["Reputable, has my trust"] = "Buena reputación, tiene mi confianza";
$a->strings["Frequently"] = "Frequentemente";
$a->strings["Hourly"] = "Cada hora";
$a->strings["Twice daily"] = "Dos veces al día";
$a->strings["Daily"] = "Diariamente";
$a->strings["Weekly"] = "Semanalmente";
$a->strings["Monthly"] = "Mensualmente";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "Correo electrónico";
$a->strings["Diaspora"] = "Diaspora*";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Conector Diaspora";
$a->strings["GNU Social"] = "GNUsocial (OStatus)";
$a->strings["App.net"] = "App.net";
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
$a->strings["view full size"] = "Ver a tamaño completo";
$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["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?";
$a->strings["Visible to everybody"] = "Visible para cualquiera";
$a->strings["show"] = "mostrar";
$a->strings["don't show"] = "no mostrar";
$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico";
$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com";
$a->strings["Permissions"] = "Permisos";
$a->strings["Close"] = "Cerrado";
$a->strings["photo"] = "foto";
$a->strings["status"] = "estado";
$a->strings["event"] = "evento";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s puede que atienda %2\$s's %3\$s";
$a->strings["[no subject]"] = "[sin asunto]";
$a->strings["Wall Photos"] = "Foto del Muro";
$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.";
$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 => "%d contactos no encontrado",
1 => "%d contactos no importado",
$a->strings["[Name Withheld]"] = "[Nombre oculto]";
$a->strings["Item not found."] = "Elemento no encontrado.";
$a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?";
$a->strings["Yes"] = "";
$a->strings["Cancel"] = "Cancelar";
$a->strings["Permission denied."] = "Permiso denegado.";
$a->strings["Archives"] = "Archivos";
$a->strings["newer"] = "más nuevo";
$a->strings["older"] = "más antiguo";
$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["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["System"] = "Sistema";
$a->strings["Network"] = "Red";
$a->strings["Personal"] = "Personal";
$a->strings["Home"] = "Inicio";
$a->strings["Introductions"] = "Presentaciones";
$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s";
$a->strings["%s created a new post"] = "%s creó una nueva publicación";
$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s";
$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s";
$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's";
$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's";
$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's";
$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s";
$a->strings["Friend Suggestion"] = "Propuestas de amistad";
$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión";
$a->strings["New Follower"] = "Nuevo seguidor";
$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*";
$a->strings["Attachments:"] = "Archivos adjuntos:";
$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["Photo Location"] = "Localización foto";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa.";
$a->strings["Export Public Calendar"] = "Exportar Calendario Público";
$a->strings["Ability for visitors to download the public calendar"] = "Posibilidad de los visitantes de descargar el calendario público";
$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 forum page is selected/deselected in ACL window."] = "Añadir/eliminar mención cuando un 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["List Forums"] = "Listar foros";
$a->strings["Enable widget to display the forums your are connected with"] = "Habilitar la pestaña para mostrar los foros en que estas participando.";
$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["Saved Searches"] = "Búsquedas guardadas";
$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["Advanced Profile Settings"] = "Ajustes avanzados del perfil";
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles.";
$a->strings["(no subject)"] = "(sin asunto)";
$a->strings["noreply"] = "no responder";
$a->strings["stopped following"] = "dejó de seguir";
$a->strings["View Profile"] = "Ver perfil";
$a->strings["View Status"] = "Ver estado";
$a->strings["View Photos"] = "Ver fotos";
$a->strings["Network Posts"] = "Publicaciones en la red";
$a->strings["View Contact"] = "Ver contacto";
$a->strings["Drop Contact"] = "Eliminar contacto";
$a->strings["Send PM"] = "Enviar mensaje privado";
$a->strings["Poke"] = "Toque";
$a->strings["Organisation"] = "Organización";
$a->strings["News"] = "Noticias";
$a->strings["Forum"] = "Foro";
$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["Image/photo"] = "Imagen/Foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
$a->strings["$1 wrote:"] = "$1 escribió:";
$a->strings["Encrypted content"] = "Contenido cifrado";
$a->strings["View Contacts"] = "Ver contactos";
$a->strings["Search"] = "Buscar";
$a->strings["Save"] = "Guardar";
$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido";
$a->strings["Full Text"] = "Texto completo";
$a->strings["Tags"] = "Tags";
$a->strings["Contacts"] = "Contactos";
$a->strings["poke"] = "tocar";
$a->strings["poked"] = "tocó a";
$a->strings["ping"] = "hacer \"ping\"";
$a->strings["pinged"] = "hizo \"ping\" a";
$a->strings["prod"] = "empujar";
$a->strings["prodded"] = "empujó a";
$a->strings["slap"] = "abofetear";
$a->strings["slapped"] = "abofeteó a";
$a->strings["finger"] = "meter dedo";
$a->strings["fingered"] = "le metió un dedo a";
$a->strings["rebuff"] = "desairar";
$a->strings["rebuffed"] = "desairó a";
$a->strings["happy"] = "feliz";
$a->strings["sad"] = "triste";
$a->strings["mellow"] = "sentimental";
$a->strings["tired"] = "cansado";
$a->strings["perky"] = "alegre";
$a->strings["angry"] = "furioso";
$a->strings["stupified"] = "estupefacto";
$a->strings["puzzled"] = "extrañado";
$a->strings["interested"] = "interesado";
$a->strings["bitter"] = "rencoroso";
$a->strings["cheerful"] = "jovial";
$a->strings["alive"] = "vivo";
$a->strings["annoyed"] = "enojado";
$a->strings["anxious"] = "ansioso";
$a->strings["cranky"] = "irritable";
$a->strings["disturbed"] = "perturbado";
$a->strings["frustrated"] = "frustrado";
$a->strings["motivated"] = "motivado";
$a->strings["relaxed"] = "relajado";
$a->strings["surprised"] = "sorprendido";
$a->strings["View Video"] = "Ver vídeo";
$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["event"] = "evento";
$a->strings["photo"] = "foto";
$a->strings["activity"] = "Actividad";
$a->strings["comment"] = array(
0 => "",
1 => "Comentario",
);
$a->strings["post"] = "Publicación";
$a->strings["Item filed"] = "Elemento archivado";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s";
$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s";
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s";
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s atenderá quizás %2\$s's %3\$s";
@ -318,6 +388,13 @@ $a->strings["Please wait"] = "Por favor, espera";
$a->strings["remove"] = "eliminar";
$a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado";
$a->strings["Follow Thread"] = "Seguir publicacion";
$a->strings["View Status"] = "Ver estado";
$a->strings["View Profile"] = "Ver perfil";
$a->strings["View Photos"] = "Ver fotos";
$a->strings["Network Posts"] = "Publicaciones en la red";
$a->strings["View Contact"] = "Ver contacto";
$a->strings["Send PM"] = "Enviar mensaje privado";
$a->strings["Poke"] = "Toque";
$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["%s attends."] = "%s atiende.";
@ -364,7 +441,6 @@ $a->strings["Permission settings"] = "Configuración de permisos";
$a->strings["permissions"] = "permisos";
$a->strings["Public post"] = "Publicación pública";
$a->strings["Preview"] = "Vista previa";
$a->strings["Cancel"] = "Cancelar";
$a->strings["Post to Groups"] = "Publicar hacia grupos";
$a->strings["Post to Contacts"] = "Publicar hacia contactos";
$a->strings["Private post"] = "Publicación privada";
@ -383,152 +459,7 @@ $a->strings["Not Attending"] = array(
0 => "No atendiendo",
1 => "No atendiendo",
);
$a->strings["Miscellaneous"] = "Varios";
$a->strings["Birthday:"] = "Fecha de nacimiento:";
$a->strings["Age: "] = "Edad: ";
$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";
$a->strings["minute"] = "minuto";
$a->strings["minutes"] = "minutos";
$a->strings["second"] = "segundo";
$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["\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."] = "Errores encontrados al ejecutar cambios en la base de datos.";
$a->strings["%s\\'s birthday"] = "%s\\'s cumpleaños";
$a->strings["Friendica Notification"] = "Notificación de Friendica";
$a->strings["Thank You,"] = "Gracias,";
$a->strings["%s Administrator"] = "%s Administrador";
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificación] Nuevo correo recibido de %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s te ha enviado un mensaje privado desde %2\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s te ha enviado %2\$s.";
$a->strings["a private message"] = "un mensaje privado";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visita %s para ver y/o responder a tus mensajes privados.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentó en [url=%2\$s] %4\$s de %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s] tu %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificación] Comentario en la conversación de #%1\$d por %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s ha comentado en una conversación/elemento que sigues.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visita %s para ver y/o responder a la conversación.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificación] %s publicó en tu muro";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicó en tu perfil de %2\$s";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicó en [url=%2\$s]tu muro[/url]";
$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"] = "[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].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificación] %s ha etiquetado tu publicación";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetado tu publicación en %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha etiquetado [url=%2\$s]tu publicación[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificación] Presentación recibida";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has recibido una presentación de '%1\$s' en %2\$s";
$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"] = "[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"] = "[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 without restriction."] = "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción.";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor visite %s si desea hacer algún cambio a su relación.";
$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 extender esto en una relación más permisiva o ambidireccional en el futuro.";
$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["[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["Sun"] = "Dom";
$a->strings["Mon"] = "Lun";
$a->strings["Tue"] = "Mar";
$a->strings["Wed"] = "Mie";
$a->strings["Thu"] = "Jue";
$a->strings["Fri"] = "Vie";
$a->strings["Sat"] = "Sab";
$a->strings["Sunday"] = "Domingo";
$a->strings["Monday"] = "Lunes";
$a->strings["Tuesday"] = "Martes";
$a->strings["Wednesday"] = "Miércoles";
$a->strings["Thursday"] = "Jueves";
$a->strings["Friday"] = "Viernes";
$a->strings["Saturday"] = "Sábado";
$a->strings["Jan"] = "Ene";
$a->strings["Feb"] = "Feb";
$a->strings["Mar"] = "Mar";
$a->strings["Apr"] = "Abr";
$a->strings["May"] = "Mayo";
$a->strings["Jun"] = "Jun";
$a->strings["Jul"] = "Jul";
$a->strings["Aug"] = "Ago";
$a->strings["Sept"] = "Sept";
$a->strings["Oct"] = "Oct";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Dec";
$a->strings["January"] = "Enero";
$a->strings["February"] = "Febrero";
$a->strings["March"] = "Marzo";
$a->strings["April"] = "Abril";
$a->strings["June"] = "Junio";
$a->strings["July"] = "Julio";
$a->strings["August"] = "Agosto";
$a->strings["September"] = "Septiembre";
$a->strings["October"] = "Octubre";
$a->strings["November"] = "Noviembre";
$a->strings["December"] = "Diciembre";
$a->strings["today"] = "hoy";
$a->strings["all-day"] = "todo el día";
$a->strings["No events to display"] = "No hay eventos a mostrar";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Editar evento";
$a->strings["link to source"] = "Enlace al original";
$a->strings["Export"] = "Exportar";
$a->strings["Export calendar as ical"] = "Exportar calendario como ical";
$a->strings["Export calendar as csv"] = "Exportar calendario como csv";
$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida.";
$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.";
$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada.";
$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre.";
$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección concuerda con la suministrada.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto.";
$a->strings["Use mailto: in front of address to force email check."] = "Escribe mailto: al principio de la dirección para forzar el envío.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas.";
$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto.";
$a->strings["following"] = "siguiendo";
$a->strings["Contact Photos"] = "Foto del contacto";
$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible.";
$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible.";
$a->strings["Edit profile"] = "Editar perfil";
@ -589,17 +520,160 @@ $a->strings["Events"] = "Eventos";
$a->strings["Events and Calendar"] = "Eventos y Calendario";
$a->strings["Personal Notes"] = "Notas personales";
$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto";
$a->strings["Contacts"] = "Contactos";
$a->strings["[Name Withheld]"] = "[Nombre oculto]";
$a->strings["Item not found."] = "Elemento no encontrado.";
$a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?";
$a->strings["Yes"] = "";
$a->strings["Permission denied."] = "Permiso denegado.";
$a->strings["Archives"] = "Archivos";
$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida.";
$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.";
$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada.";
$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre.";
$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección concuerda con la suministrada.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto.";
$a->strings["Use mailto: in front of address to force email check."] = "Escribe mailto: al principio de la dirección para forzar el envío.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas.";
$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto.";
$a->strings["following"] = "siguiendo";
$a->strings["stopped following"] = "dejó de seguir";
$a->strings["Drop Contact"] = "Eliminar contacto";
$a->strings["Organisation"] = "Organización";
$a->strings["News"] = "Noticias";
$a->strings["Forum"] = "Foro";
$a->strings["Embedded content"] = "Contenido integrado";
$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado";
$a->strings["Image/photo"] = "Imagen/Foto";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
$a->strings["$1 wrote:"] = "$1 escribió:";
$a->strings["Encrypted content"] = "Contenido cifrado";
$a->strings["Unknown | Not categorised"] = "Desconocido | No clasificado";
$a->strings["Block immediately"] = "Bloquear inmediatamente";
$a->strings["Shady, spammer, self-marketer"] = "Sospechoso, spammer, auto-publicidad";
$a->strings["Known to me, but no opinion"] = "Le conozco, sin opinión";
$a->strings["OK, probably harmless"] = "OK, probablemente inofensivo";
$a->strings["Reputable, has my trust"] = "Buena reputación, tiene mi confianza";
$a->strings["Frequently"] = "Frequentemente";
$a->strings["Hourly"] = "Cada hora";
$a->strings["Twice daily"] = "Dos veces al día";
$a->strings["Daily"] = "Diariamente";
$a->strings["Weekly"] = "Semanalmente";
$a->strings["Monthly"] = "Mensualmente";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "Correo electrónico";
$a->strings["Diaspora"] = "Diaspora*";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "Conector Diaspora";
$a->strings["GNU Social"] = "GNUsocial (OStatus)";
$a->strings["App.net"] = "App.net";
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
$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."] = "Errores encontrados al ejecutar cambios en la base de datos.";
$a->strings["Logged out."] = "Sesión finalizada";
$a->strings["Login failed."] = "Accesso fallido.";
$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:";
$a->strings["view full size"] = "Ver a tamaño completo";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes <strong>pueden</strong> 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.";
$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos";
$a->strings["Everybody"] = "Todo el mundo";
$a->strings["edit"] = "editar";
$a->strings["Groups"] = "Grupos";
$a->strings["Edit groups"] = "Editar grupo";
$a->strings["Edit group"] = "Editar grupo";
$a->strings["Create a new group"] = "Crear un nuevo grupo";
$a->strings["Group Name: "] = "Nombre del grupo: ";
$a->strings["Contacts not in any group"] = "Contactos sin grupo";
$a->strings["add"] = "añadir";
$a->strings["Wall Photos"] = "Foto del Muro";
$a->strings["(no subject)"] = "(sin asunto)";
$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada.";
$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";
$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria.";
$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto.";
$a->strings["Name too short."] = "El nombre es demasiado corto.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo.";
$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 \"_\"."] = "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["default"] = "predeterminado";
$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["Profile Photos"] = "Foto del perfil";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrarse en %2\$s. Su cuenta está pendiente de aprobación por el administrador.\n\t";
$a->strings["Registration at %s"] = "Registro en %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["Registration details for %s"] = "Detalles de registro para %s";
$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["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["Photo Location"] = "Localización foto";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa.";
$a->strings["Export Public Calendar"] = "Exportar Calendario Público";
$a->strings["Ability for visitors to download the public calendar"] = "Posibilidad de los visitantes de descargar el calendario público";
$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 forum page is selected/deselected in ACL window."] = "Añadir/eliminar mención cuando un 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["List Forums"] = "Listar foros";
$a->strings["Enable widget to display the forums your are connected with"] = "Habilitar la pestaña para mostrar los foros en que estas participando.";
$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["Saved Searches"] = "Búsquedas guardadas";
$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["Advanced Profile Settings"] = "Ajustes avanzados del perfil";
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles.";
$a->strings["Nothing new here"] = "Nada nuevo por aquí";
$a->strings["Clear notifications"] = "Limpiar notificaciones";
$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido";
$a->strings["Logout"] = "Salir";
$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";
@ -608,19 +682,14 @@ $a->strings["Your videos"] = "Tus videos";
$a->strings["Your events"] = "Tus eventos";
$a->strings["Personal notes"] = "Notas personales";
$a->strings["Your personal notes"] = "Tus notas personales";
$a->strings["Login"] = "Acceder";
$a->strings["Sign in"] = "Date de alta";
$a->strings["Home Page"] = "Página de inicio";
$a->strings["Register"] = "Registrarse";
$a->strings["Create an account"] = "Crea una cuenta";
$a->strings["Help"] = "Ayuda";
$a->strings["Help and documentation"] = "Ayuda y documentación";
$a->strings["Apps"] = "Aplicaciones";
$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos";
$a->strings["Search"] = "Buscar";
$a->strings["Search site content"] = " Busca contenido en la página";
$a->strings["Full Text"] = "Texto completo";
$a->strings["Tags"] = "Tags";
$a->strings["Community"] = "Comunidad";
$a->strings["Conversations on this site"] = "Conversaciones en este sitio";
$a->strings["Conversations on the network"] = "Conversaciones en la red";
@ -653,73 +722,33 @@ $a->strings["Admin"] = "Admin";
$a->strings["Site setup and configuration"] = "Opciones y configuración del sitio";
$a->strings["Navigation"] = "Navegación";
$a->strings["Site map"] = "Mapa del sitio";
$a->strings["Embedded content"] = "Contenido integrado";
$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado";
$a->strings["Contact Photos"] = "Foto del contacto";
$a->strings["Welcome "] = "Bienvenido ";
$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil.";
$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["newer"] = "más nuevo";
$a->strings["older"] = "más antiguo";
$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["View Contacts"] = "Ver contactos";
$a->strings["Save"] = "Guardar";
$a->strings["poke"] = "tocar";
$a->strings["poked"] = "tocó a";
$a->strings["ping"] = "hacer \"ping\"";
$a->strings["pinged"] = "hizo \"ping\" a";
$a->strings["prod"] = "empujar";
$a->strings["prodded"] = "empujó a";
$a->strings["slap"] = "abofetear";
$a->strings["slapped"] = "abofeteó a";
$a->strings["finger"] = "meter dedo";
$a->strings["fingered"] = "le metió un dedo a";
$a->strings["rebuff"] = "desairar";
$a->strings["rebuffed"] = "desairó a";
$a->strings["happy"] = "feliz";
$a->strings["sad"] = "triste";
$a->strings["mellow"] = "sentimental";
$a->strings["tired"] = "cansado";
$a->strings["perky"] = "alegre";
$a->strings["angry"] = "furioso";
$a->strings["stupified"] = "estupefacto";
$a->strings["puzzled"] = "extrañado";
$a->strings["interested"] = "interesado";
$a->strings["bitter"] = "rencoroso";
$a->strings["cheerful"] = "jovial";
$a->strings["alive"] = "vivo";
$a->strings["annoyed"] = "enojado";
$a->strings["anxious"] = "ansioso";
$a->strings["cranky"] = "irritable";
$a->strings["disturbed"] = "perturbado";
$a->strings["frustrated"] = "frustrado";
$a->strings["motivated"] = "motivado";
$a->strings["relaxed"] = "relajado";
$a->strings["surprised"] = "sorprendido";
$a->strings["View Video"] = "Ver vídeo";
$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["activity"] = "Actividad";
$a->strings["comment"] = array(
0 => "",
1 => "Comentario",
);
$a->strings["post"] = "Publicación";
$a->strings["Item filed"] = "Elemento archivado";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s puede que atienda %2\$s's %3\$s";
$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["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?";
$a->strings["Visible to everybody"] = "Visible para cualquiera";
$a->strings["show"] = "mostrar";
$a->strings["don't show"] = "no mostrar";
$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico";
$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com";
$a->strings["Permissions"] = "Permisos";
$a->strings["Close"] = "Cerrado";
$a->strings["[no subject]"] = "[sin asunto]";
$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios.";
$a->strings["Not Found"] = "No se ha encontrado";
$a->strings["Page not found."] = "Página no encontrada.";
$a->strings["Permission denied"] = "Permiso denegado";
$a->strings["toggle mobile"] = "Cambiar a versión móvil";
$a->strings["Account approved."] = "Cuenta aprobada.";
$a->strings["Registration revoked for %s"] = "Registro anulado para %s";
$a->strings["Please login."] = "Por favor accede.";
$a->strings["Post successful."] = "¡Publicado!";
$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]";
$a->strings["People Search - %s"] = "Buscar perfiles - %s";
$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s";
$a->strings["No matches"] = "Sin conincidencias";
$a->strings["Access denied."] = "Acceso denegado.";
$a->strings["Welcome to %s"] = "Bienvenido a %s";
$a->strings["No more system notifications."] = "No hay más notificaciones del sistema.";
@ -732,6 +761,52 @@ $a->strings["Only one search per minute is permitted for not logged in users."]
$a->strings["No results."] = "Sin resultados.";
$a->strings["Items tagged with: %s"] = "Objetos taggeado con: %s";
$a->strings["Results for: %s"] = "Resultados para: %s";
$a->strings["Invalid request identifier."] = "Solicitud de identificación no válida.";
$a->strings["Discard"] = "Descartar";
$a->strings["Ignore"] = "Ignorar";
$a->strings["Network Notifications"] = "Notificaciones de Red";
$a->strings["Personal Notifications"] = "Notificaciones personales";
$a->strings["Home Notifications"] = "Notificaciones de Inicio";
$a->strings["Show Ignored Requests"] = "Mostrar peticiones ignoradas";
$a->strings["Hide Ignored Requests"] = "Ocultar peticiones ignoradas";
$a->strings["Notification type: "] = "Tipo de notificación: ";
$a->strings["suggested by %s"] = "sugerido por %s";
$a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás.";
$a->strings["Post a new friend activity"] = "Publica tu nueva amistad";
$a->strings["if applicable"] = "Si corresponde";
$a->strings["Approve"] = "Aprobar";
$a->strings["Claims to be known to you: "] = "Dice conocerte: ";
$a->strings["yes"] = "";
$a->strings["no"] = "no";
$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["Profile URL"] = "URL Perfil";
$a->strings["No introductions."] = "Sin presentaciones.";
$a->strings["Show unread"] = "Mostrar no leído";
$a->strings["Show all"] = "Mostrar todo";
$a->strings["No more %s notifications."] = "No más notificaciones de %s.";
$a->strings["Profile not found."] = "Perfil no encontrado.";
$a->strings["Contact not found."] = "Contacto no encontrado.";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada.";
$a->strings["Response from remote site was not understood."] = "La respuesta desde el sitio remoto no ha sido entendida.";
$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto: ";
$a->strings["Confirmation completed successfully."] = "Confirmación completada con éxito.";
$a->strings["Remote site reported: "] = "El sito remoto informó: ";
$a->strings["Temporary failure. Please wait and try again."] = "Error temporal. Por favor, espere y vuelva a intentarlo.";
$a->strings["Introduction failed or was revoked."] = "La presentación ha fallado o ha sido anulada.";
$a->strings["Unable to set contact photo."] = "Imposible establecer la foto del contacto.";
$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s' ";
$a->strings["Our site encryption key is apparently messed up."] = "Nuestra clave de cifrado del sitio es aparentemente un lío.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Se ha proporcionado una dirección vacía o no hemos podido descifrarla.";
$a->strings["Contact record was not found for you on our site."] = "El contacto no se ha encontrado en nuestra base de datos.";
$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para %s.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo.";
$a->strings["Unable to set your contact credentials on our system."] = "No se puede establecer las credenciales de tu contacto en nuestro sistema.";
$a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s se ha unido a %2\$s";
$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 <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visita <a href=\"http://friendica.com\">Friendica.com</a> para saber más sobre el proyecto Friendica.";
@ -746,7 +821,6 @@ $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s
$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";
$a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste.";
$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";
@ -757,18 +831,41 @@ $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Locati
$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.";
$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: ";
$a->strings["Reset"] = "Restablecer";
$a->strings["No profile"] = "Nigún perfil";
$a->strings["Help:"] = "Ayuda:";
$a->strings["Not Found"] = "No se ha encontrado";
$a->strings["Page not found."] = "Página no encontrada.";
$a->strings["Invalid request."] = "Consulta invalida";
$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["Image upload failed."] = "Error al subir la imagen.";
$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["Submit"] = "Envíar";
$a->strings["Remote privacy information not available."] = "Privacidad de la información remota no disponible.";
$a->strings["Visible to:"] = "Visible para:";
$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["View"] = "Vista";
$a->strings["Create New Event"] = "Crea un evento nuevo";
$a->strings["Previous"] = "Previo";
$a->strings["Next"] = "Siguiente";
$a->strings["list"] = "lista";
$a->strings["Event details"] = "Detalles del evento";
$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["Title:"] = "Título:";
$a->strings["Share this event"] = "Comparte este evento";
$a->strings["Global Directory"] = "Directorio global";
$a->strings["Find on this site"] = "Buscar en este sitio";
$a->strings["Results for:"] = "Resultados para:";
$a->strings["Site Directory"] = "Directorio del sitio";
$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas).";
$a->strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. ID no devuelta.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Cuenta no encontrada y el registro OpenID no está permitido en ese 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.";
@ -782,6 +879,9 @@ $a->strings["To export your account, go to \"Settings->Export your personal data
$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]";
$a->strings["Edit contact"] = "Modificar contacto";
$a->strings["Contacts who are not members of a group"] = "Contactos sin grupo";
$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["Profile Match"] = "Coincidencias de Perfil";
$a->strings["Export account"] = "Exportar cuenta";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta 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.";
$a->strings["Export all"] = "Exportar todo";
@ -808,170 +908,16 @@ $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["Submit"] = "Envíar";
$a->strings["Files"] = "Archivos";
$a->strings["Permission denied"] = "Permiso denegado";
$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento";
$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido.";
$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil";
$a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo.";
$a->strings["Visible To"] = "Visible para";
$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)";
$a->strings["Tag removed"] = "Etiqueta eliminada";
$a->strings["Remove Item Tag"] = "Eliminar etiqueta";
$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: ";
$a->strings["Remove"] = "Eliminar";
$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["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus";
$a->strings["Error"] = "error";
$a->strings["Done"] = "hecho!";
$a->strings["Keep this window open until done."] = "Mantén esta ventana abierta hasta que el proceso ha terminado.";
$a->strings["No potential page delegates located."] = "No se han localizado delegados potenciales de la página.";
$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."] = "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.";
$a->strings["Existing Page Managers"] = "Administradores actuales de la página";
$a->strings["Existing Page Delegates"] = "Delegados actuales de la página";
$a->strings["Potential Delegates"] = "Delegados potenciales";
$a->strings["Add"] = "Añadir";
$a->strings["No entries."] = "Sin entradas.";
$a->strings["Credits"] = "Creditos";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! ";
$a->strings["- select -"] = "- seleccionar -";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo las %3\$s de %2\$s";
$a->strings["Item not available."] = "Elemento no disponible.";
$a->strings["Item was not found."] = "Elemento no encontrado.";
$a->strings["Submit Request"] = "Enviar solicitud";
$a->strings["You already added this contact."] = "Ya has añadido este contacto.";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado.";
$a->strings["OStatus support is disabled. Contact can't be added."] = "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado.";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "No se pudo detectar el tipo de red. Contacto no puede ser agregado.";
$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["Profile URL"] = "URL Perfil";
$a->strings["Contact added"] = "Contacto añadido";
$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["Not Extended"] = "No extendido";
$a->strings["Welcome to Friendica"] = "Bienvenido a Friendica ";
$a->strings["New Member Checklist"] = "Listado de nuevos miembros";
$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."] = "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á.";
$a->strings["Getting Started"] = "Empezando";
$a->strings["Friendica Walk-Through"] = "Visita guiada a Friendica";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "En tu página de <em>Inicio Rápido</em> - 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.";
$a->strings["Go to Your Settings"] = "Ir a tus ajustes";
$a->strings["On your <em>Settings</em> 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."] = "En la página de <em>Configuración</em> 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.";
$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."] = "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.";
$a->strings["Upload Profile Photo"] = "Subir foto del Perfil";
$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."] = "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.";
$a->strings["Edit Your Profile"] = "Editar tu perfil";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edita tu perfil <strong>predeterminado</strong> como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos.";
$a->strings["Profile Keywords"] = "Palabras clave del perfil";
$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."] = "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.";
$a->strings["Connecting"] = "Conectando";
$a->strings["Importing Emails"] = "Importando correos electrónicos";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduce 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.";
$a->strings["Go to Your Contacts Page"] = "Ir a tu página de contactos";
$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 <em>Add New Contact</em> dialog."] = "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\".";
$a->strings["Go to Your Site's Directory"] = "Ir al directorio de tu sitio";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de <em>Conectar</em> o <em>Seguir</em> en su perfil. Proporciona tu direción personal si es necesario.";
$a->strings["Finding New People"] = "Encontrando nueva gente";
$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."] = "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.";
$a->strings["Group Your Contacts"] = "Agrupa tus contactos";
$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."] = "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.";
$a->strings["Why Aren't My Posts Public?"] = "¿Por qué mis publicaciones no son públicas?";
$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 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.";
$a->strings["Getting Help"] = "Consiguiendo ayuda";
$a->strings["Go to the Help Section"] = "Ir a la sección de ayuda";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de <strong>Ayuda</strong> para más información y recursos de ayuda.";
$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["Item not found"] = "Elemento no encontrado";
$a->strings["Edit post"] = "Editar publicación";
$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."] = "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";
$a->strings["Please select your timezone:"] = "Por favor, selecciona tu zona horaria:";
$a->strings["The post was created"] = "La publicación fue creada";
$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"] = "Guardar grupo";
$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos.";
$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["All Contacts"] = "Todos los contactos";
$a->strings["Group is empty"] = "El grupo está vacío";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado.";
$a->strings["No recipient selected."] = "Ningún destinatario seleccionado";
$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio.";
$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado.";
$a->strings["Message collection failure."] = "Fallo en la recolección de mensajes.";
$a->strings["Message sent."] = "Mensaje enviado.";
$a->strings["No recipient."] = "Sin receptor.";
$a->strings["Send Private Message"] = "Enviar mensaje privado";
$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 quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos.";
$a->strings["To:"] = "Para:";
$a->strings["Subject:"] = "Asunto:";
$a->strings["link"] = "enlace";
$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación";
$a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:";
$a->strings["Please login to continue."] = "Inicia sesión para continuar.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?";
$a->strings["Source (bbcode) text:"] = "Texto fuente (bbcode):";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Fuente (Diaspora) para pasar a BBcode:";
$a->strings["Source input: "] = "Entrada: ";
$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): "] = "Fuente (formato Diaspora): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Subscribing to OStatus contacts"] = "Subscribir a los contactos de OStatus";
$a->strings["No contact provided."] = "Sin suministro de datos de contacto.";
$a->strings["Couldn't fetch information for contact."] = "No se ha podido conseguir la información del contacto.";
$a->strings["Couldn't fetch friends for contact."] = "No se ha podido conseguir datos de amigos para contactar.";
$a->strings["success"] = "exito!";
$a->strings["failed"] = "fallido!";
$a->strings["ignored"] = "ignorado";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s";
$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto.";
$a->strings["Do you really want to delete this message?"] = "¿Estás seguro de que quieres borrar este mensaje?";
$a->strings["Message deleted."] = "Mensaje eliminado.";
$a->strings["Conversation removed."] = "Conversación eliminada.";
$a->strings["No messages."] = "No hay mensajes.";
$a->strings["Message not available."] = "Mensaje no disponibile.";
$a->strings["Delete message"] = "Borrar mensaje";
$a->strings["Delete conversation"] = "Eliminar conversación";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "No hay comunicaciones seguras disponibles. <strong>Podrías</strong> responder desde la página de perfil del remitente. ";
$a->strings["Send Reply"] = "Enviar respuesta";
$a->strings["Unknown sender - %s"] = "Remitente desconocido - %s";
$a->strings["You and %s"] = "Tú y %s";
$a->strings["%s and You"] = "%s y Tú";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d mensaje",
1 => "%d mensajes",
);
$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";
$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:";
$a->strings["No contacts."] = "Ningún contacto.";
$a->strings["Contact settings applied."] = "Contacto configurado con éxito.";
$a->strings["Contact update failed."] = "Error al actualizar el Contacto.";
$a->strings["Contact not found."] = "Contacto no encontrado.";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ADVERTENCIA: Esto es muy avanzado</strong> 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 <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor usa el botón 'Atás' de tu navegador <strong>ahora</strong> si no tienes claro qué hacer en esta página.";
$a->strings["No mirroring"] = "No espejar";
@ -991,226 +937,13 @@ $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["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.";
$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "no se encontró %d parámetro requerido en el lugar determinado",
1 => "no se encontraron %d parámetros requeridos en el lugar determinado",
);
$a->strings["Introduction complete."] = "Presentación completa.";
$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable.";
$a->strings["Profile unavailable."] = "Perfil no disponible.";
$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy.";
$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas.";
$a->strings["Invalid locator"] = "Localizador no válido";
$a->strings["Invalid email address."] = "Dirección de correo incorrecta";
$a->strings["This account has not been configured for email. Request failed."] = "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud.";
$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí.";
$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s.";
$a->strings["Invalid profile URL."] = "Dirección de perfil no válida.";
$a->strings["Failed to update contact record."] = "Error al actualizar el contacto.";
$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada.";
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema.";
$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 <strong>this</strong> profile."] = "Sesión iniciada con la identificación incorrecta. Entra en <strong>este</strong> 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["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, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si aun no eres miembro de la red social libre <a href=\"%s/siteinfo\">seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo</a>";
$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["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["No such group"] = "Ningún grupo";
$a->strings["Group: %s"] = "Grupo: %s";
$a->strings["This entry was edited"] = "Esta entrada fue editada";
$a->strings["%d comment"] = array(
0 => "%d comentario",
1 => "%d comentarios",
);
$a->strings["Private Message"] = "Mensaje privado";
$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)";
$a->strings["like"] = "me gusta";
$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)";
$a->strings["dislike"] = "no me gusta";
$a->strings["Share this"] = "Compartir esto";
$a->strings["share"] = "compartir";
$a->strings["This is you"] = "Este eres tú";
$a->strings["Comment"] = "Comentar";
$a->strings["Bold"] = "Negrita";
$a->strings["Italic"] = "Cursiva";
$a->strings["Underline"] = "Subrayado";
$a->strings["Quote"] = "Cita";
$a->strings["Code"] = "Código";
$a->strings["Image"] = "Imagen";
$a->strings["Link"] = "Enlace";
$a->strings["Video"] = "Vídeo";
$a->strings["Edit"] = "Editar";
$a->strings["add star"] = "Añadir estrella";
$a->strings["remove star"] = "Quitar estrella";
$a->strings["toggle star status"] = "Añadir a destacados";
$a->strings["starred"] = "marcados con estrellas";
$a->strings["add tag"] = "añadir etiqueta";
$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["save to folder"] = "grabado en directorio";
$a->strings["I will attend"] = "Voy a estar presente";
$a->strings["I will not attend"] = "No voy a estar presente";
$a->strings["I might attend"] = "Puede que voy a estar presente";
$a->strings["to"] = "a";
$a->strings["Wall-to-Wall"] = "Muro-A-Muro";
$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:";
$a->strings["Profile not found."] = "Perfil no encontrado.";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada.";
$a->strings["Response from remote site was not understood."] = "La respuesta desde el sitio remoto no ha sido entendida.";
$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto: ";
$a->strings["Confirmation completed successfully."] = "Confirmación completada con éxito.";
$a->strings["Remote site reported: "] = "El sito remoto informó: ";
$a->strings["Temporary failure. Please wait and try again."] = "Error temporal. Por favor, espere y vuelva a intentarlo.";
$a->strings["Introduction failed or was revoked."] = "La presentación ha fallado o ha sido anulada.";
$a->strings["Unable to set contact photo."] = "Imposible establecer la foto del contacto.";
$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s' ";
$a->strings["Our site encryption key is apparently messed up."] = "Nuestra clave de cifrado del sitio es aparentemente un lío.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Se ha proporcionado una dirección vacía o no hemos podido descifrarla.";
$a->strings["Contact record was not found for you on our site."] = "El contacto no se ha encontrado en nuestra base de datos.";
$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para %s.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo.";
$a->strings["Unable to set your contact credentials on our system."] = "No se puede establecer las credenciales de tu contacto en nuestro sistema.";
$a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s se ha unido a %2\$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["Mood"] = "Ánimo";
$a->strings["Set your current mood and tell your friends"] = "Coloca tu ánimo actual y cuéntaselo a tus amigos";
$a->strings["Poke/Prod"] = "Toque/Empujón";
$a->strings["poke, prod or do other things to somebody"] = "da un toque, empujón o similar a alguien";
$a->strings["Recipient"] = "Receptor";
$a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor";
$a->strings["Make this post private"] = "Hacer esta publicación privada";
$a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla.";
$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["Upload File:"] = "Subir archivo:";
$a->strings["Select a profile:"] = "Elige un perfil:";
$a->strings["Upload"] = "Subir";
$a->strings["or"] = "o";
$a->strings["skip this step"] = "saltar este paso";
$a->strings["select a photo from your photo albums"] = "elige una foto de tus álbumes";
$a->strings["Crop Image"] = "Recortar imagen";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla.";
$a->strings["Done Editing"] = "Editado";
$a->strings["Image uploaded successfully."] = "Imagen subida con éxito.";
$a->strings["Account approved."] = "Cuenta aprobada.";
$a->strings["Registration revoked for %s"] = "Registro anulado para %s";
$a->strings["Please login."] = "Por favor accede.";
$a->strings["Invalid request identifier."] = "Solicitud de identificación no válida.";
$a->strings["Discard"] = "Descartar";
$a->strings["Ignore"] = "Ignorar";
$a->strings["Network Notifications"] = "Notificaciones de Red";
$a->strings["Personal Notifications"] = "Notificaciones personales";
$a->strings["Home Notifications"] = "Notificaciones de Inicio";
$a->strings["Show Ignored Requests"] = "Mostrar peticiones ignoradas";
$a->strings["Hide Ignored Requests"] = "Ocultar peticiones ignoradas";
$a->strings["Notification type: "] = "Tipo de notificación: ";
$a->strings["suggested by %s"] = "sugerido por %s";
$a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás.";
$a->strings["Post a new friend activity"] = "Publica tu nueva amistad";
$a->strings["if applicable"] = "Si corresponde";
$a->strings["Approve"] = "Aprobar";
$a->strings["Claims to be known to you: "] = "Dice conocerte: ";
$a->strings["yes"] = "";
$a->strings["no"] = "no";
$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["No introductions."] = "Sin presentaciones.";
$a->strings["Show unread"] = "Mostrar no leído";
$a->strings["Show all"] = "Mostrar todo";
$a->strings["No more %s notifications."] = "No más notificaciones de %s.";
$a->strings["Profile deleted."] = "Perfil eliminado.";
$a->strings["Profile-"] = "Perfil-";
$a->strings["New profile created."] = "Nuevo perfil creado.";
$a->strings["Profile unavailable to clone."] = "Imposible duplicar el perfil.";
$a->strings["Profile Name is required."] = "Se necesita un nombre de perfil.";
$a->strings["Marital Status"] = "Estado civil";
$a->strings["Romantic Partner"] = "Pareja sentimental";
$a->strings["Work/Employment"] = "Trabajo/estudios";
$a->strings["Religion"] = "Religión";
$a->strings["Political Views"] = "Preferencias políticas";
$a->strings["Gender"] = "Género";
$a->strings["Sexual Preference"] = "Orientación sexual";
$a->strings["XMPP"] = "XMPP";
$a->strings["Homepage"] = "Página de inicio";
$a->strings["Interests"] = "Intereses";
$a->strings["Address"] = "Dirección";
$a->strings["Location"] = "Ubicación";
$a->strings["Profile updated."] = "Perfil actualizado.";
$a->strings[" and "] = " y ";
$a->strings["public profile"] = "perfil público";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s cambió su %2\$s a &ldquo;%3\$s&rdquo;";
$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:"] = "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["Show more profile fields:"] = "Mostrar mas campos del perfil:";
$a->strings["Profile Actions"] = "Acciones de perfil";
$a->strings["Edit Profile Details"] = "Editar detalles de tu perfil";
$a->strings["Change Profile Photo"] = "Cambiar imagen del Perfil";
$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"] = "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["Relation"] = "Relación";
$a->strings["Your Gender:"] = "Género:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\"&hearts;</span> Estado civil:";
$a->strings["Example: fishing photography software"] = "Ejemplo: pesca fotografía software";
$a->strings["Profile Name:"] = "Nombres del perfil:";
$a->strings["Required"] = "Obligatorio";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Éste es tu perfil <strong>público</strong>.<br /><strong>Puede</strong> ser visto por cualquier usuario de internet.";
$a->strings["Your Full Name:"] = "Tu nombre completo:";
$a->strings["Title/Description:"] = "Título/Descrición:";
$a->strings["Street Address:"] = "Dirección";
$a->strings["Locality/City:"] = "Localidad/Ciudad:";
$a->strings["Region/State:"] = "Región/Estado:";
$a->strings["Postal/Zip Code:"] = "Código postal:";
$a->strings["Country:"] = "País";
$a->strings["Who: (if applicable)"] = "¿Quién? (si es aplicable)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ejemplos: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Desde [fecha]:";
$a->strings["Tell us about yourself..."] = "Háblanos sobre ti...";
$a->strings["XMPP (Jabber) address:"] = "Dirección XMPP (Jabber):";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "La dirección XMPP será propagada entre sus contactos para que puedan seguirle.";
$a->strings["Homepage URL:"] = "Dirección de tu página:";
$a->strings["Religious Views:"] = "Creencias religiosas:";
$a->strings["Public Keywords:"] = "Palabras clave públicas:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)";
$a->strings["Private Keywords:"] = "Palabras clave privadas:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizadas para buscar perfiles, nunca se muestra a otros)";
$a->strings["Musical interests"] = "Gustos 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["Hobbies/Interests"] = "Aficiones/Intereses";
$a->strings["Love/romance"] = "Amor/Romance";
$a->strings["Work/employment"] = "Trabajo/ocupación";
$a->strings["School/education"] = "Escuela/estudios";
$a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales";
$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles";
$a->strings["Tag removed"] = "Etiqueta eliminada";
$a->strings["Remove Item Tag"] = "Eliminar etiqueta";
$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: ";
$a->strings["Remove"] = "Eliminar";
$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["Theme settings updated."] = "Configuración de la apariencia actualizada.";
$a->strings["Site"] = "Sitio";
$a->strings["Users"] = "Usuarios";
@ -1227,6 +960,7 @@ $a->strings["check webfinger"] = "Verificar webfinger";
$a->strings["Plugin Features"] = "Características del módulo";
$a->strings["diagnostics"] = "diagnosticos";
$a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación";
$a->strings["unknown"] = "desconocido";
$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. ";
$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "El modulo <em>directorio de contactos encontrados</em> no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí.";
$a->strings["Administration"] = "Administración";
@ -1237,6 +971,8 @@ $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["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "Su DB aún funciona con las tablas MyISAM. Debería cambiar el tipo de motror a InnoDB. ¡Como Friendica sólo usará las características de InnoDB en el futuro, debería cambiar esto! Vea <a href=\"%s\">aquí</a> para una guía que puede ayudar a convertir las tablas de motor. También puede usar <tt>convert_innodb.sql</tt> en el directorio <tt>/util</tt> de su instalación de Friendica.<br />";
$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Está usando una versión de MySQL que no soporta todas las características de Friendica. Debería considerar cambiar a MariaDB.";
$a->strings["Normal Account"] = "Cuenta normal";
$a->strings["Soapbox Account"] = "Cuenta tribuna";
$a->strings["Community/Celebrity Account"] = "Cuenta de Comunidad/Celebridad";
@ -1433,6 +1169,8 @@ $a->strings["Don't use 'proc_open' with the worker"] = "No use 'proc_open' junto
$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)";
$a->strings["Enable fastlane"] = "Habilitar ascenso rápido";
$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad.";
$a->strings["Enable frontend worker"] = "Habilitar trabajador de interfaz";
$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
$a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito";
$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";
@ -1469,6 +1207,7 @@ $a->strings["User registrations waiting for confirm"] = "Registro de usuarios es
$a->strings["User waiting for permanent deletion"] = "Usuario esperando anulación permanente.";
$a->strings["Request date"] = "Solicitud de fecha";
$a->strings["No registrations."] = "Sin registros.";
$a->strings["Note from the user"] = "Nota para el usuario";
$a->strings["Deny"] = "Denegado";
$a->strings["Block"] = "Bloquear";
$a->strings["Unblock"] = "Desbloquear";
@ -1511,119 +1250,202 @@ $a->strings["Off"] = "Apagado";
$a->strings["On"] = "Encendido";
$a->strings["Lock feature %s"] = "Trancar opción %s ";
$a->strings["Manage Additional Features"] = "Administrar opciones adicionales";
$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["No friends to display."] = "No hay amigos para mostrar.";
$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido.";
$a->strings["View"] = "Vista";
$a->strings["Previous"] = "Previo";
$a->strings["Next"] = "Siguiente";
$a->strings["list"] = "lista";
$a->strings["User not found"] = "Usuario no encontrado";
$a->strings["This calendar format is not supported"] = "Este formato de calendario no se soporta";
$a->strings["No exportable data found"] = "No se ha encontrado información exportable";
$a->strings["calendar"] = "calendario";
$a->strings["No contacts in common."] = "Sin contactos en común.";
$a->strings["Common Friends"] = "Amigos comunes";
$a->strings["Not available."] = "No disponible";
$a->strings["%d contact edited."] = array(
0 => "%d contacto editado.",
1 => "%d contacts edited.",
$a->strings["No such group"] = "Ningún grupo";
$a->strings["Group is empty"] = "El grupo está vacío";
$a->strings["Group: %s"] = "Grupo: %s";
$a->strings["This entry was edited"] = "Esta entrada fue editada";
$a->strings["%d comment"] = array(
0 => "%d comentario",
1 => "%d comentarios",
);
$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.";
$a->strings["Contact updated."] = "Contacto actualizado.";
$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado";
$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado";
$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado";
$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado";
$a->strings["Contact has been archived"] = "El contacto ha sido archivado";
$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado";
$a->strings["Drop contact"] = "Eliminar contacto";
$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?";
$a->strings["Contact has been removed."] = "El contacto ha sido eliminado";
$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s";
$a->strings["You are sharing with %s"] = "Estás compartiendo con %s";
$a->strings["%s is sharing with you"] = "%s está compartiendo contigo";
$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto.";
$a->strings["(Update was successful)"] = "(La actualización se ha completado)";
$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)";
$a->strings["Suggest friends"] = "Sugerir amigos";
$a->strings["Network type: %s"] = "Tipo de red: %s";
$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["Fetch information"] = "Recaudar informacion";
$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves";
$a->strings["Contact"] = "Contacto";
$a->strings["Profile Visibility"] = "Visibilidad del Perfil";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura.";
$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas";
$a->strings["Edit contact notes"] = "Editar notas del contacto";
$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto";
$a->strings["Ignore contact"] = "Ignorar contacto";
$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección";
$a->strings["View conversations"] = "Ver conversaciones";
$a->strings["Last update:"] = "Última actualización:";
$a->strings["Update public posts"] = "Actualizar publicaciones públicas";
$a->strings["Update now"] = "Actualizar ahora";
$a->strings["Unignore"] = "Quitar de Ignorados";
$a->strings["Currently blocked"] = "Bloqueados";
$a->strings["Currently ignored"] = "Ignorados";
$a->strings["Currently archived"] = "Archivados";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles.";
$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["Actions"] = "Acciones";
$a->strings["Contact Settings"] = "Ajustes del contacto";
$a->strings["Suggestions"] = "Sugerencias";
$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas";
$a->strings["Show all contacts"] = "Mostrar todos los contactos";
$a->strings["Unblocked"] = "Desbloqueados";
$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear";
$a->strings["Blocked"] = "Bloqueados";
$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados";
$a->strings["Ignored"] = "Ignorados";
$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados";
$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["Search your contacts"] = "Buscar en tus contactos";
$a->strings["Update"] = "Actualizar";
$a->strings["Archive"] = "Archivo";
$a->strings["Unarchive"] = "Sin archivar";
$a->strings["Batch Actions"] = "Accones en lote";
$a->strings["View all contacts"] = "Ver todos los contactos";
$a->strings["View all common friends"] = "Ver todos los conocidos en común ";
$a->strings["Advanced Contact Settings"] = "Configuración avanzada";
$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["Toggle Blocked status"] = "Cambiar bloqueados";
$a->strings["Toggle Ignored status"] = "Cambiar ignorados";
$a->strings["Toggle Archive status"] = "Cambiar archivados";
$a->strings["Delete contact"] = "Eliminar contacto";
$a->strings["Global Directory"] = "Directorio global";
$a->strings["Find on this site"] = "Buscar en este sitio";
$a->strings["Results for:"] = "Resultados para:";
$a->strings["Site Directory"] = "Directorio del sitio";
$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas).";
$a->strings["People Search - %s"] = "Buscar perfiles - %s";
$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s";
$a->strings["No matches"] = "Sin conincidencias";
$a->strings["Item has been removed."] = "El elemento ha sido eliminado.";
$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["Create New Event"] = "Crea un evento nuevo";
$a->strings["Event details"] = "Detalles del evento";
$a->strings["Starting date and Title are required."] = "Se requiere fecha de comienzo y titulo";
$a->strings["Event Starts:"] = "Inicio del evento:";
$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["Title:"] = "Título:";
$a->strings["Share this event"] = "Comparte este evento";
$a->strings["Private Message"] = "Mensaje privado";
$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)";
$a->strings["like"] = "me gusta";
$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)";
$a->strings["dislike"] = "no me gusta";
$a->strings["Share this"] = "Compartir esto";
$a->strings["share"] = "compartir";
$a->strings["This is you"] = "Este eres tú";
$a->strings["Bold"] = "Negrita";
$a->strings["Italic"] = "Cursiva";
$a->strings["Underline"] = "Subrayado";
$a->strings["Quote"] = "Cita";
$a->strings["Code"] = "Código";
$a->strings["Image"] = "Imagen";
$a->strings["Link"] = "Enlace";
$a->strings["Video"] = "Vídeo";
$a->strings["Edit"] = "Editar";
$a->strings["add star"] = "Añadir estrella";
$a->strings["remove star"] = "Quitar estrella";
$a->strings["toggle star status"] = "Añadir a destacados";
$a->strings["starred"] = "marcados con estrellas";
$a->strings["add tag"] = "añadir etiqueta";
$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["save to folder"] = "grabado en directorio";
$a->strings["I will attend"] = "Voy a estar presente";
$a->strings["I will not attend"] = "No voy a estar presente";
$a->strings["I might attend"] = "Puede que voy a estar presente";
$a->strings["to"] = "a";
$a->strings["Wall-to-Wall"] = "Muro-A-Muro";
$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:";
$a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus";
$a->strings["Error"] = "error";
$a->strings["Done"] = "hecho!";
$a->strings["Keep this window open until done."] = "Mantén esta ventana abierta hasta que el proceso ha terminado.";
$a->strings["No potential page delegates located."] = "No se han localizado delegados potenciales de la página.";
$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."] = "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.";
$a->strings["Existing Page Managers"] = "Administradores actuales de la página";
$a->strings["Existing Page Delegates"] = "Delegados actuales de la página";
$a->strings["Potential Delegates"] = "Delegados potenciales";
$a->strings["Add"] = "Añadir";
$a->strings["No entries."] = "Sin entradas.";
$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 Album"] = "Ver Álbum";
$a->strings["Recent Videos"] = "Vídeos recientes";
$a->strings["Upload New Videos"] = "Subir nuevos vídeos";
$a->strings["Profile deleted."] = "Perfil eliminado.";
$a->strings["Profile-"] = "Perfil-";
$a->strings["New profile created."] = "Nuevo perfil creado.";
$a->strings["Profile unavailable to clone."] = "Imposible duplicar el perfil.";
$a->strings["Profile Name is required."] = "Se necesita un nombre de perfil.";
$a->strings["Marital Status"] = "Estado civil";
$a->strings["Romantic Partner"] = "Pareja sentimental";
$a->strings["Work/Employment"] = "Trabajo/estudios";
$a->strings["Religion"] = "Religión";
$a->strings["Political Views"] = "Preferencias políticas";
$a->strings["Gender"] = "Género";
$a->strings["Sexual Preference"] = "Orientación sexual";
$a->strings["XMPP"] = "XMPP";
$a->strings["Homepage"] = "Página de inicio";
$a->strings["Interests"] = "Intereses";
$a->strings["Address"] = "Dirección";
$a->strings["Location"] = "Ubicación";
$a->strings["Profile updated."] = "Perfil actualizado.";
$a->strings[" and "] = " y ";
$a->strings["public profile"] = "perfil público";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s cambió su %2\$s a &ldquo;%3\$s&rdquo;";
$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:"] = "Ocultar contactos y amigos";
$a->strings["No"] = "No";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar tu lista de contactos/amigos en este perfil?";
$a->strings["Show more profile fields:"] = "Mostrar mas campos del perfil:";
$a->strings["Profile Actions"] = "Acciones de perfil";
$a->strings["Edit Profile Details"] = "Editar detalles de tu perfil";
$a->strings["Change Profile Photo"] = "Cambiar imagen del Perfil";
$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"] = "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["Relation"] = "Relación";
$a->strings["Upload Profile Photo"] = "Subir foto del Perfil";
$a->strings["Your Gender:"] = "Género:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\"&hearts;</span> Estado civil:";
$a->strings["Example: fishing photography software"] = "Ejemplo: pesca fotografía software";
$a->strings["Profile Name:"] = "Nombres del perfil:";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Éste es tu perfil <strong>público</strong>.<br /><strong>Puede</strong> ser visto por cualquier usuario de internet.";
$a->strings["Your Full Name:"] = "Tu nombre completo:";
$a->strings["Title/Description:"] = "Título/Descrición:";
$a->strings["Street Address:"] = "Dirección";
$a->strings["Locality/City:"] = "Localidad/Ciudad:";
$a->strings["Region/State:"] = "Región/Estado:";
$a->strings["Postal/Zip Code:"] = "Código postal:";
$a->strings["Country:"] = "País";
$a->strings["Who: (if applicable)"] = "¿Quién? (si es aplicable)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ejemplos: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Desde [fecha]:";
$a->strings["Tell us about yourself..."] = "Háblanos sobre ti...";
$a->strings["XMPP (Jabber) address:"] = "Dirección XMPP (Jabber):";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "La dirección XMPP será propagada entre sus contactos para que puedan seguirle.";
$a->strings["Homepage URL:"] = "Dirección de tu página:";
$a->strings["Religious Views:"] = "Creencias religiosas:";
$a->strings["Public Keywords:"] = "Palabras clave públicas:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)";
$a->strings["Private Keywords:"] = "Palabras clave privadas:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizadas para buscar perfiles, nunca se muestra a otros)";
$a->strings["Musical interests"] = "Gustos 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["Hobbies/Interests"] = "Aficiones/Intereses";
$a->strings["Love/romance"] = "Amor/Romance";
$a->strings["Work/employment"] = "Trabajo/ocupación";
$a->strings["School/education"] = "Escuela/estudios";
$a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales";
$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles";
$a->strings["Credits"] = "Creditos";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! ";
$a->strings["- select -"] = "- seleccionar -";
$a->strings["Poke/Prod"] = "Toque/Empujón";
$a->strings["poke, prod or do other things to somebody"] = "da un toque, empujón o similar a alguien";
$a->strings["Recipient"] = "Receptor";
$a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor";
$a->strings["Make this post private"] = "Hacer esta publicación privada";
$a->strings["Recent Photos"] = "Fotos recientes";
$a->strings["Upload New Photos"] = "Subir nuevas fotos";
$a->strings["everybody"] = "todos";
$a->strings["Contact information unavailable"] = "Información del contacto no disponible";
$a->strings["Album not found."] = "Álbum no encontrado.";
$a->strings["Delete Album"] = "Eliminar álbum";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "¿Estás seguro de quieres borrar este álbum y todas sus fotos?";
$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 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.";
$a->strings["Upload Photos"] = "Subir fotos";
$a->strings["New album name: "] = "Nombre del nuevo álbum: ";
$a->strings["or existing album name: "] = "o nombre de un álbum existente: ";
$a->strings["Do not show a status post for this upload"] = "No actualizar tu estado con este envío";
$a->strings["Show to Groups"] = "Mostrar a los Grupos";
$a->strings["Show to Contacts"] = "Mostrar a los Contactos";
$a->strings["Private Photo"] = "Foto Privada";
$a->strings["Public Photo"] = "Foto Pública";
$a->strings["Edit Album"] = "Modificar álbum";
$a->strings["Show Newest First"] = "Mostrar más nuevos primero";
$a->strings["Show Oldest First"] = "Mostrar más antiguos primero";
$a->strings["View Photo"] = "Ver foto";
$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido.";
$a->strings["Photo not available"] = "Foto no disponible";
$a->strings["View photo"] = "Ver foto";
$a->strings["Edit photo"] = "Modificar foto";
$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["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["Map"] = "Mapa";
$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.";
@ -1699,22 +1521,151 @@ $a->strings["ImageMagick supports GIF"] = "ImageMagick supporta GIF";
$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.";
$a->strings["<h1>What next</h1>"] = "<h1>¿Ahora qué?</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo";
$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.";
$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica.";
$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes.";
$a->strings["%s posted an update."] = "%s ha publicado una actualización.";
$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento";
$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["Profile Match"] = "Coincidencias de Perfil";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Aviso: este grupo contiene %s contacto con conexión no segura.",
1 => "Aviso: este grupo contiene %s contactos con conexiones no seguras.",
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo las %3\$s de %2\$s";
$a->strings["Item not available."] = "Elemento no disponible.";
$a->strings["Item was not found."] = "Elemento no encontrado.";
$a->strings["%d contact edited."] = array(
0 => "%d contacto editado.",
1 => "%d contacts edited.",
);
$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["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.";
$a->strings["Contact updated."] = "Contacto actualizado.";
$a->strings["Failed to update contact record."] = "Error al actualizar el contacto.";
$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado";
$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado";
$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado";
$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado";
$a->strings["Contact has been archived"] = "El contacto ha sido archivado";
$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado";
$a->strings["Drop contact"] = "Eliminar contacto";
$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?";
$a->strings["Contact has been removed."] = "El contacto ha sido eliminado";
$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s";
$a->strings["You are sharing with %s"] = "Estás compartiendo con %s";
$a->strings["%s is sharing with you"] = "%s está compartiendo contigo";
$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto.";
$a->strings["(Update was successful)"] = "(La actualización se ha completado)";
$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)";
$a->strings["Suggest friends"] = "Sugerir amigos";
$a->strings["Network type: %s"] = "Tipo de red: %s";
$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["Fetch information"] = "Recaudar informacion";
$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves";
$a->strings["Contact"] = "Contacto";
$a->strings["Profile Visibility"] = "Visibilidad del Perfil";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura.";
$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas";
$a->strings["Edit contact notes"] = "Editar notas del contacto";
$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto";
$a->strings["Ignore contact"] = "Ignorar contacto";
$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección";
$a->strings["View conversations"] = "Ver conversaciones";
$a->strings["Last update:"] = "Última actualización:";
$a->strings["Update public posts"] = "Actualizar publicaciones públicas";
$a->strings["Update now"] = "Actualizar ahora";
$a->strings["Unignore"] = "Quitar de Ignorados";
$a->strings["Currently blocked"] = "Bloqueados";
$a->strings["Currently ignored"] = "Ignorados";
$a->strings["Currently archived"] = "Archivados";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles.";
$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["Actions"] = "Acciones";
$a->strings["Contact Settings"] = "Ajustes del contacto";
$a->strings["Suggestions"] = "Sugerencias";
$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas";
$a->strings["All Contacts"] = "Todos los contactos";
$a->strings["Show all contacts"] = "Mostrar todos los contactos";
$a->strings["Unblocked"] = "Desbloqueados";
$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear";
$a->strings["Blocked"] = "Bloqueados";
$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados";
$a->strings["Ignored"] = "Ignorados";
$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados";
$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["Search your contacts"] = "Buscar en tus contactos";
$a->strings["Update"] = "Actualizar";
$a->strings["Archive"] = "Archivo";
$a->strings["Unarchive"] = "Sin archivar";
$a->strings["Batch Actions"] = "Accones en lote";
$a->strings["View all contacts"] = "Ver todos los contactos";
$a->strings["Common Friends"] = "Amigos comunes";
$a->strings["View all common friends"] = "Ver todos los conocidos en común ";
$a->strings["Advanced Contact Settings"] = "Configuración avanzada";
$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["Toggle Blocked status"] = "Cambiar bloqueados";
$a->strings["Toggle Ignored status"] = "Cambiar ignorados";
$a->strings["Toggle Archive status"] = "Cambiar archivados";
$a->strings["Delete contact"] = "Eliminar contacto";
$a->strings["Submit Request"] = "Enviar solicitud";
$a->strings["You already added this contact."] = "Ya has añadido este contacto.";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado.";
$a->strings["OStatus support is disabled. Contact can't be added."] = "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado.";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "No se pudo detectar el tipo de red. Contacto no puede ser agregado.";
$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["Your Identity Address:"] = "Dirección de tu perfil:";
$a->strings["Contact added"] = "Contacto añadido";
$a->strings["Applications"] = "Aplicaciones";
$a->strings["No installed applications."] = "Sin aplicaciones";
$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas.";
$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
$a->strings["Not Extended"] = "No extendido";
$a->strings["Item has been removed."] = "El elemento ha sido eliminado.";
$a->strings["No contacts in common."] = "Sin contactos en común.";
$a->strings["Welcome to Friendica"] = "Bienvenido a Friendica ";
$a->strings["New Member Checklist"] = "Listado de nuevos miembros";
$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."] = "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á.";
$a->strings["Getting Started"] = "Empezando";
$a->strings["Friendica Walk-Through"] = "Visita guiada a Friendica";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "En tu página de <em>Inicio Rápido</em> - 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.";
$a->strings["Go to Your Settings"] = "Ir a tus ajustes";
$a->strings["On your <em>Settings</em> 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."] = "En la página de <em>Configuración</em> 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.";
$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."] = "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.";
$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."] = "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.";
$a->strings["Edit Your Profile"] = "Editar tu perfil";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edita tu perfil <strong>predeterminado</strong> como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos.";
$a->strings["Profile Keywords"] = "Palabras clave del perfil";
$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."] = "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.";
$a->strings["Connecting"] = "Conectando";
$a->strings["Importing Emails"] = "Importando correos electrónicos";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduce 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.";
$a->strings["Go to Your Contacts Page"] = "Ir a tu página de contactos";
$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 <em>Add New Contact</em> dialog."] = "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\".";
$a->strings["Go to Your Site's Directory"] = "Ir al directorio de tu sitio";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de <em>Conectar</em> o <em>Seguir</em> en su perfil. Proporciona tu direción personal si es necesario.";
$a->strings["Finding New People"] = "Encontrando nueva gente";
$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."] = "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.";
$a->strings["Group Your Contacts"] = "Agrupa tus contactos";
$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."] = "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.";
$a->strings["Why Aren't My Posts Public?"] = "¿Por qué mis publicaciones no son públicas?";
$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 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.";
$a->strings["Getting Help"] = "Consiguiendo ayuda";
$a->strings["Go to the Help Section"] = "Ir a la sección de ayuda";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de <strong>Ayuda</strong> para más información y recursos de ayuda.";
$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["Mood"] = "Ánimo";
$a->strings["Set your current mood and tell your friends"] = "Coloca tu ánimo actual y cuéntaselo a tus amigos";
$a->strings["Item not found"] = "Elemento no encontrado";
$a->strings["Edit post"] = "Editar publicación";
$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
0 => "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos.",
1 => "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos.",
);
$a->strings["Messages in this group won't be send to these receivers."] = "Los mensajes de este grupo no se enviarán a estos receptores.";
$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["Commented Order"] = "Orden de comentarios";
@ -1728,56 +1679,72 @@ $a->strings["Shared Links"] = "Enlaces compartidos";
$a->strings["Interesting Links"] = "Enlaces interesantes";
$a->strings["Starred"] = "Favoritos";
$a->strings["Favourite Posts"] = "Publicaciones favoritas";
$a->strings["Recent Photos"] = "Fotos recientes";
$a->strings["Upload New Photos"] = "Subir nuevas fotos";
$a->strings["everybody"] = "todos";
$a->strings["Contact information unavailable"] = "Información del contacto no disponible";
$a->strings["Album not found."] = "Álbum no encontrado.";
$a->strings["Delete Album"] = "Eliminar álbum";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "¿Estás seguro de quieres borrar este álbum y todas sus fotos?";
$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 file is empty."] = "El archivo de imagen está vacío.";
$a->strings["No photos selected"] = "Ninguna foto seleccionada";
$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido.";
$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.";
$a->strings["Upload Photos"] = "Subir fotos";
$a->strings["New album name: "] = "Nombre del nuevo álbum: ";
$a->strings["or existing album name: "] = "o nombre de un álbum existente: ";
$a->strings["Do not show a status post for this upload"] = "No actualizar tu estado con este envío";
$a->strings["Show to Groups"] = "Mostrar a los Grupos";
$a->strings["Show to Contacts"] = "Mostrar a los Contactos";
$a->strings["Private Photo"] = "Foto Privada";
$a->strings["Public Photo"] = "Foto Pública";
$a->strings["Edit Album"] = "Modificar álbum";
$a->strings["Show Newest First"] = "Mostrar más nuevos primero";
$a->strings["Show Oldest First"] = "Mostrar más antiguos primero";
$a->strings["View Photo"] = "Ver foto";
$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido.";
$a->strings["Photo not available"] = "Foto no disponible";
$a->strings["View photo"] = "Ver foto";
$a->strings["Edit photo"] = "Modificar foto";
$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["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["Map"] = "Mapa";
$a->strings["View Album"] = "Ver Álbum";
$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["Tips for New Members"] = "Consejos para nuevos miembros";
$a->strings["Not available."] = "No disponible";
$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."] = "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";
$a->strings["Please select your timezone:"] = "Por favor, selecciona tu zona horaria:";
$a->strings["The post was created"] = "La publicación fue creada";
$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"] = "Guardar grupo";
$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos.";
$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["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.";
$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "no se encontró %d parámetro requerido en el lugar determinado",
1 => "no se encontraron %d parámetros requeridos en el lugar determinado",
);
$a->strings["Introduction complete."] = "Presentación completa.";
$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable.";
$a->strings["Profile unavailable."] = "Perfil no disponible.";
$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy.";
$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas.";
$a->strings["Invalid locator"] = "Localizador no válido";
$a->strings["Invalid email address."] = "Dirección de correo incorrecta";
$a->strings["This account has not been configured for email. Request failed."] = "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud.";
$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí.";
$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s.";
$a->strings["Invalid profile URL."] = "Dirección de perfil no válida.";
$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada.";
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema.";
$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 <strong>this</strong> profile."] = "Sesión iniciada con la identificación incorrecta. Entra en <strong>este</strong> 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["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, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si aun no eres miembro de la red social libre <a href=\"%s/siteinfo\">seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo</a>";
$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["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["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla.";
$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["Upload File:"] = "Subir archivo:";
$a->strings["Select a profile:"] = "Elige un perfil:";
$a->strings["Upload"] = "Subir";
$a->strings["or"] = "o";
$a->strings["skip this step"] = "saltar este paso";
$a->strings["select a photo from your photo albums"] = "elige una foto de tus álbumes";
$a->strings["Crop Image"] = "Recortar imagen";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla.";
$a->strings["Done Editing"] = "Editado";
$a->strings["Image uploaded successfully."] = "Imagen subida con éxito.";
$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:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta: <br> login: %s<br> contraseña: %s<br><br>Puede cambiar su contraseña después de ingresar al sitio.";
$a->strings["Registration successful."] = "Registro exitoso.";
@ -1787,6 +1754,8 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos.";
$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):";
$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?";
$a->strings["Note for the admin"] = "Nota para el administrador";
$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo";
$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación.";
$a->strings["Your invitation ID: "] = "ID de tu invitación: ";
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):";
@ -1862,6 +1831,8 @@ $a->strings["Move to folder:"] = "Mover al directorio:";
$a->strings["Display Settings"] = "Configuración Tema/Visualización";
$a->strings["Display Theme:"] = "Utilizar tema:";
$a->strings["Mobile Theme:"] = "Tema móvil:";
$a->strings["Suppress warning of insecure networks"] = "Suprimir el aviso de redes inseguras";
$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas.";
$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos";
$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 segundos. Ingrese -1 para deshabilitar.";
$a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:";
@ -1873,7 +1844,8 @@ $a->strings["Beginning of week:"] = "Principio de la semana:";
$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["Bandwith Saver Mode"] = "";
$a->strings["Bandwith Saver Mode"] = "Modo de guardado de ancho de banda";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas.";
$a->strings["General Theme Settings"] = "Ajustes generales de tema";
$a->strings["Custom Theme Settings"] = "Ajustes personalizados de tema";
$a->strings["Content Settings"] = "Ajustes de contenido";
@ -1965,16 +1937,70 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ca
$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["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas.";
$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]";
$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["Recent Videos"] = "Vídeos recientes";
$a->strings["Upload New Videos"] = "Subir nuevos vídeos";
$a->strings["No contacts."] = "Ningún contacto.";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado.";
$a->strings["No recipient selected."] = "Ningún destinatario seleccionado";
$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio.";
$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado.";
$a->strings["Message collection failure."] = "Fallo en la recolección de mensajes.";
$a->strings["Message sent."] = "Mensaje enviado.";
$a->strings["No recipient."] = "Sin receptor.";
$a->strings["Send Private Message"] = "Enviar mensaje privado";
$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 quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos.";
$a->strings["To:"] = "Para:";
$a->strings["Subject:"] = "Asunto:";
$a->strings["link"] = "enlace";
$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación";
$a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:";
$a->strings["Please login to continue."] = "Inicia sesión para continuar.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?";
$a->strings["Source (bbcode) text:"] = "Texto fuente (bbcode):";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Fuente (Diaspora) para pasar a BBcode:";
$a->strings["Source input: "] = "Entrada: ";
$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): "] = "Fuente (formato Diaspora): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$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.";
$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica.";
$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes.";
$a->strings["%s posted an update."] = "%s ha publicado una actualización.";
$a->strings["Subscribing to OStatus contacts"] = "Subscribir a los contactos de OStatus";
$a->strings["No contact provided."] = "Sin suministro de datos de contacto.";
$a->strings["Couldn't fetch information for contact."] = "No se ha podido conseguir la información del contacto.";
$a->strings["Couldn't fetch friends for contact."] = "No se ha podido conseguir datos de amigos para contactar.";
$a->strings["success"] = "exito!";
$a->strings["failed"] = "fallido!";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s";
$a->strings["Tips for New Members"] = "Consejos para nuevos miembros";
$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto.";
$a->strings["Do you really want to delete this message?"] = "¿Estás seguro de que quieres borrar este mensaje?";
$a->strings["Message deleted."] = "Mensaje eliminado.";
$a->strings["Conversation removed."] = "Conversación eliminada.";
$a->strings["No messages."] = "No hay mensajes.";
$a->strings["Message not available."] = "Mensaje no disponibile.";
$a->strings["Delete message"] = "Borrar mensaje";
$a->strings["Delete conversation"] = "Eliminar conversación";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "No hay comunicaciones seguras disponibles. <strong>Podrías</strong> responder desde la página de perfil del remitente. ";
$a->strings["Send Reply"] = "Enviar respuesta";
$a->strings["Unknown sender - %s"] = "Remitente desconocido - %s";
$a->strings["You and %s"] = "Tú y %s";
$a->strings["%s and You"] = "%s y Tú";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d mensaje",
1 => "%d mensajes",
);
$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";
$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:";
$a->strings["via"] = "vía";
$a->strings["Repeat the image"] = "Repetir la imagen";
$a->strings["Will repeat your image to fill the background."] = "Repetirá su imagen para llenar el fondo";
@ -1984,6 +2010,8 @@ $a->strings["Resize fill and-clip"] = "Reajustar llenado y clip";
$a->strings["Resize to fill and retain aspect ratio."] = "Reajustar para llenar y conservar proporción";
$a->strings["Resize best fit"] = "Reajustar al mejor tamaño";
$a->strings["Resize to best fit and retain aspect ratio."] = "Reajustar al mejor tamaño y conservar proporción";
$a->strings["Guest"] = "Invitado";
$a->strings["Visitor"] = "Visitante";
$a->strings["Default"] = "Por defecto";
$a->strings["Note: "] = "Nota:";
$a->strings["Check image permissions if all users are allowed to visit the image"] = "Compruebe los permisos de imagen si se les permite a todos los usuarios visitar la imagen";
@ -1994,19 +2022,12 @@ $a->strings["Link color"] = "Color de enlace";
$a->strings["Set the background color"] = "Seleccionar el color de fondo";
$a->strings["Content background transparency"] = "Transparencia de contenido de fondo";
$a->strings["Set the background image"] = "Seleccionar la imagen de fondo";
$a->strings["Guest"] = "Invitado";
$a->strings["Visitor"] = "Visitante";
$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";
$a->strings["Color scheme"] = "Esquema de color";
$a->strings["Alignment"] = "Alineación";
$a->strings["Left"] = "Izquierda";
$a->strings["Center"] = "Centrado";
$a->strings["Color scheme"] = "Esquema de color";
$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 line-height for posts and comments"] = "Altura para las publicaciones y comentarios";
$a->strings["Set colour scheme"] = "Configurar esquema de color";
$a->strings["Community Profiles"] = "Perfiles de la Comunidad";
$a->strings["Last users"] = "Últimos usuarios";
$a->strings["Find Friends"] = "Buscar amigos";
@ -2017,18 +2038,6 @@ $a->strings["Comma separated list of helper forums"] = "Lista separada por comas
$a->strings["Set style"] = "Definir estilo";
$a->strings["Community Pages"] = "Páginas de Comunidad";
$a->strings["Help or @NewHere ?"] = "¿Ayuda o @NuevoAquí?";
$a->strings["Your contacts"] = "Tus contactos";
$a->strings["Your personal photos"] = "Tus fotos personales";
$a->strings["Last likes"] = "Últimos \"me gusta\"";
$a->strings["Last photos"] = "Últimas fotos";
$a->strings["Earth Layers"] = "Minimapa";
$a->strings["Set zoomfactor for Earth Layers"] = "Configurar zoom en Minimapa";
$a->strings["Set longitude (X) for Earth Layers"] = "Configurar longitud (X) en Minimapa";
$a->strings["Set latitude (Y) for Earth Layers"] = "Configurar latitud (Y) en Minimapa";
$a->strings["Show/hide boxes at right-hand column:"] = "Mostrar/Ocultar casillas en la columna derecha:";
$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";
$a->strings["greenzero"] = "greenzero";
$a->strings["purplezero"] = "purplezero";
$a->strings["easterbunny"] = "easterbunny";
@ -2036,16 +2045,3 @@ $a->strings["darkzero"] = "darkzero";
$a->strings["comix"] = "comix";
$a->strings["slackr"] = "slackr";
$a->strings["Variations"] = "Variaciones";
$a->strings["toggle mobile"] = "Cambiar a versión móvil";
$a->strings["Delete this item?"] = "¿Eliminar este elemento?";
$a->strings["show fewer"] = "ver menos";
$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores.";
$a->strings["Create a New Account"] = "Crear una nueva cuenta";
$a->strings["Password: "] = "Contraseña: ";
$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"] = "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";

View file

@ -158,9 +158,12 @@
<h3>{{$worker_title}}</h3>
{{include file="field_checkbox.tpl" field=$worker}}
{{include file="field_input.tpl" field=$worker_queues}}
{{include file="field_checkbox.tpl" field=$worker_dont_fork}}
{{include file="field_checkbox.tpl" field=$worker_fastlane}}
{{if $worker.2}}
{{include file="field_input.tpl" field=$worker_queues}}
{{include file="field_checkbox.tpl" field=$worker_dont_fork}}
{{include file="field_checkbox.tpl" field=$worker_fastlane}}
{{include file="field_checkbox.tpl" field=$worker_frontend}}
{{/if}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit|escape:'html'}}" /></div>
</form>

View file

@ -1,6 +1,13 @@
<div id='adminpage'>
<h1>{{$title}} - {{$page}}</h1>
{{if $showwarning}}
<div id="admin-warning-message-wrapper">
{{foreach $warningtext as $wt}}
<p class="warning-message">{{$wt}}</p>
{{/foreach}}
</div>
{{/if}}
<dl>
<dt>{{$queues.label}}</dt>

View file

@ -39,6 +39,9 @@
<a href="{{$baseurl}}/regmod/deny/{{$u.hash}}" title='{{$deny}}'><span class='icon dislike'></span></a>
</td>
</tr>
<tr>
<td class="pendingnote"><p><span>{{$pendingnotetext}}:</span> {{$u.note}}</p></td>
</tr>
{{/foreach}}
</tbody>
</table>

View file

@ -35,6 +35,9 @@ $a->config['php_path'] = '{{$phpath}}';
$a->path = '{{$urlpath}}';
// Allowed protocols in link URLs; HTTP protocols always are accepted
$a->config['system']['allowed_link_protocols'] = array('ftp', 'ftps', 'mailto', 'cid', 'gopher');
/* *********************************************************************
* The configuration below will be overruled by the admin panel.
* Changes made below will only have an effect if the database does

View file

@ -57,6 +57,10 @@
</div>
<div id="register-nickname-end" ></div>
{{if $permonly}}
{{include file="field_textarea.tpl" field=$permonlybox}}
{{/if}}
{{$publish}}
<div id="register-submit-wrapper">

View file

@ -9,6 +9,7 @@
{{include file="field_themeselect.tpl" field=$mobile_theme}}
{{include file="field_input.tpl" field=$itemspage_mobile_network}}
{{include file="field_input.tpl" field=$ajaxint}}
{{include file="field_checkbox.tpl" field=$nowarn_insecure}}
{{include file="field_checkbox.tpl" field=$no_auto_update}}
{{include file="field_checkbox.tpl" field=$nosmile}}
{{include file="field_checkbox.tpl" field=$noinfo}}

View file

@ -64,8 +64,8 @@
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
{{if $item.vote}}
<div class="wall-item-like-buttons" id="wall-item-like-buttons-{{$item.id}}">
<a href="#" class="icon like" title="{{$item.vote.like.0|escape:'html'}}" onclick="dolike({{$item.id}},'like'); return false"></a>
{{if $item.vote.dislike}}<a href="#" class="icon dislike" title="{{$item.vote.dislike.0|escape:'html'}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>{{/if}}
<a href="#" class="icon like{{if $item.responses.like.self}} active{{/if}}" title="{{$item.vote.like.0|escape:'html'}}" onclick="dolike({{$item.id}},'like'); return false"></a>
{{if $item.vote.dislike}}<a href="#" class="icon dislike{{if $item.responses.dislike.self}} active{{/if}}" title="{{$item.vote.dislike.0|escape:'html'}}" onclick="dolike({{$item.id}},'dislike'); return false"></a>{{/if}}
{{if $item.vote.share}}<a href="#" class="icon recycle wall-item-share-buttons" title="{{$item.vote.share.0|escape:'html'}}" onclick="jotShare({{$item.id}}); return false"></a>{{/if}}
<img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait|escape:'html'}}" title="{{$item.wait|escape:'html'}}" style="display: none;" />
</div>
@ -88,9 +88,9 @@
{{/if}}
{{if $item.isevent }}
<div class="wall-item-attend-wrapper">
<a href="#" id="attendyes-{{$item.id}}" class="icon attendyes" onclick="dolike({{$item.id}},'attendyes'); return false;" title="{{$item.attend.0|escape:'html'}}"></a>
<a href="#" id="attendno-{{$item.id}}" class="icon attendno" onclick="dolike({{$item.id}},'attendno'); return false;" title="{{$item.attend.1|escape:'html'}}"></a>
<a href="#" id="attendmaybe-{{$item.id}}" class="icon attendmaybe" onclick="dolike({{$item.id}},'attendmaybe'); return false;" title="{{$item.attend.2|escape:'html'}}"></a>
<a href="#" id="attendyes-{{$item.id}}" class="icon attendyes{{if $item.responses.attendyes.self}} active{{/if}}" onclick="dolike({{$item.id}},'attendyes'); return false;" title="{{$item.attend.0|escape:'html'}}"></a>
<a href="#" id="attendno-{{$item.id}}" class="icon attendno{{if $item.responses.attendno.self}} active{{/if}}" onclick="dolike({{$item.id}},'attendno'); return false;" title="{{$item.attend.1|escape:'html'}}"></a>
<a href="#" id="attendmaybe-{{$item.id}}" class="icon attendmaybe{{if $item.responses.attendmaybe.self}} active{{/if}}" onclick="dolike({{$item.id}},'attendmaybe'); return false;" title="{{$item.attend.2|escape:'html'}}"></a>
</div>
{{/if}}
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >

View file

@ -1,127 +0,0 @@
@import url('../greenzero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
// background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
//background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
//background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
//background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -1,127 +0,0 @@
@import url('../purplezero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
// background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
// background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
// background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -1,127 +0,0 @@
@import url('../duepuntozero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -1,89 +0,0 @@
<?php
/**
* Theme settings
*/
function theme_content(&$a){
if(!local_user())
return;
$resize = get_pconfig(local_user(), 'cleanzero', 'resize' );
$color = get_pconfig(local_user(), 'cleanzero', 'color' );
$font_size = get_pconfig(local_user(), 'cleanzero', 'font_size' );
$theme_width= get_pconfig(local_user(), 'cleanzero', 'theme_width' );
return cleanzero_form($a,$color,$font_size,$resize,$theme_width);
}
function theme_post(&$a){
if(! local_user())
return;
if (isset($_POST['cleanzero-settings-submit'])){
set_pconfig(local_user(), 'cleanzero', 'resize', $_POST['cleanzero_resize']);
set_pconfig(local_user(), 'cleanzero', 'color', $_POST['cleanzero_color']);
set_pconfig(local_user(), 'cleanzero', 'font_size', $_POST['cleanzero_font_size']);
set_pconfig(local_user(), 'cleanzero', 'theme_width', $_POST['cleanzero_theme_width']);
}
}
function theme_admin(&$a){
$resize = get_config('cleanzero', 'resize' );
$color = get_config('cleanzero', 'color' );
$font_size = get_config('cleanzero', 'font_size' );
$theme_width= get_config('cleanzero', 'theme_width' );
return cleanzero_form($a,$color,$font_size,$resize,$theme_width);
}
function theme_admin_post(&$a){
if (isset($_POST['cleanzero-settings-submit'])){
set_config('cleanzero', 'resize', $_POST['cleanzero_resize']);
set_config('cleanzero', 'color', $_POST['cleanzero_color']);
set_config('cleanzero', 'font_size', $_POST['cleanzero_font_size']);
set_config('cleanzero', 'theme_width', $_POST['cleanzero_theme_width']);
}
}
function cleanzero_form(&$a, $color,$font_size,$resize,$theme_width){
$colors = array(
"cleanzero"=>"cleanzero",
"cleanzero-green"=>"green",
"cleanzero-purple"=>"purple"
);
$font_sizes = array(
'12'=>'12',
"---"=>"---",
"16"=>"16",
"14"=>"14",
'10'=>'10',
);
$resizes = array(
"0"=>"0 (no resizing)",
"600"=>"1 (600px)",
"300"=>"2 (300px)",
"250"=>"3 (250px)",
"150"=>"4 (150px)",
);
$theme_widths =array (
"standard"=>"standard",
"narrow"=>"narrow",
"wide"=>"wide",
);
$t = get_markup_template("theme_settings.tpl" );
$o .= replace_macros($t, array(
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(),
'$title' => t("Theme settings"),
'$resize' => array('cleanzero_resize',t ('Set resize level for images in posts and comments (width and height)'),$resize,'',$resizes),
'$font_size' => array('cleanzero_font_size', t('Set font-size for posts and comments'), $font_size, '', $font_sizes),
'$theme_width' => array('cleanzero_theme_width', t('Set theme width'), $theme_width, '', $theme_widths),
'$color' => array('cleanzero_color', t('Color scheme'), $color, '', $colors),
));
return $o;
}

View file

@ -1,69 +0,0 @@
(function( $ ) {
$.fn.aeImageResize = function( params ) {
var aspectRatio = 0
// Nasty I know but it's done only once, so not too bad I guess
// Alternate suggestions welcome :)
, isIE6 = $.browser.msie && (6 == ~~ $.browser.version)
;
// We cannot do much unless we have one of these
if ( !params.height && !params.width ) {
return this;
}
// Calculate aspect ratio now, if possible
if ( params.height && params.width ) {
aspectRatio = params.width / params.height;
}
// Attach handler to load
// Handler is executed just once per element
// Load event required for Webkit browsers
return this.one( "load", function() {
// Remove all attributes and CSS rules
this.removeAttribute( "height" );
this.removeAttribute( "width" );
this.style.height = this.style.width = "";
var imgHeight = this.height
, imgWidth = this.width
, imgAspectRatio = imgWidth / imgHeight
, bxHeight = params.height
, bxWidth = params.width
, bxAspectRatio = aspectRatio;
// Work the magic!
// If one parameter is missing, we just force calculate it
if ( !bxAspectRatio ) {
if ( bxHeight ) {
bxAspectRatio = imgAspectRatio + 1;
} else {
bxAspectRatio = imgAspectRatio - 1;
}
}
// Only resize the images that need resizing
if ( (bxHeight && imgHeight > bxHeight) || (bxWidth && imgWidth > bxWidth) ) {
if ( imgAspectRatio > bxAspectRatio ) {
bxHeight = ~~ ( imgHeight / imgWidth * bxWidth );
} else {
bxWidth = ~~ ( imgWidth / imgHeight * bxHeight );
}
this.height = bxHeight;
this.width = bxWidth;
}
})
.each(function() {
// Trigger load event (for Gecko and MSIE)
if ( this.complete || isIE6 ) {
$( this ).trigger( "load" );
}
});
};
})( jQuery );

View file

@ -1 +0,0 @@
(function(d){d.fn.aeImageResize=function(a){var i=0,j=d.browser.msie&&6==~~d.browser.version;if(!a.height&&!a.width)return this;if(a.height&&a.width)i=a.width/a.height;return this.one("load",function(){this.removeAttribute("height");this.removeAttribute("width");this.style.height=this.style.width="";var e=this.height,f=this.width,g=f/e,b=a.height,c=a.width,h=i;h||(h=b?g+1:g-1);if(b&&e>b||c&&f>c){if(g>h)b=~~(e/f*c);else c=~~(f/e*b);this.height=b;this.width=c}}).each(function(){if(this.complete||j)d(this).trigger("load")})}})(jQuery);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

View file

@ -1,127 +0,0 @@
@import url('../duepuntozero/style.css');
body {background-image:none;
}
.wall-item-content-wrapper {
border-top: 1px solid #ccc;
//border-top:none;
border-left:none;
border-right:none;
border-radius:0px;
//border:none;
//background: #f8f8f8 !important;
}
.wall-item-content-wrapper.comment {
background: #f8f8f8 !important;
// border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-left:none;
border-right:none;
border-radius:0px;
}
.wall-item-tools {
// border-top: 1px solid #ccc;
// background: #f8f8f8 !important;
background: #ffffff !important;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: 1px solid #ccc;
border-left: 1px solid #EEE;
background: #ffffff;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
// background: #ffffff; !important;
background: #f8f8f8 !important;
}
section {
margin: 0px 10%;
margin-right:12%;
background-image:none;
}
aside {
margin-left: 10%;
background-image:none;
}
nav {
margin-left: 32px;
margin-right: 5%;
}
nav #site-location {
top: 80px;
right: 5%;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
}
.tabs { background-image:none;
}
.tab.active {
padding: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border: 1px solid #CCCCCC;
background: #F8F8F8;
font-weight: bold;
}
.tab { margin-right: 1px ;
}
#group-sidebar {
margin-bottom: 10px;
border:none;
}
#nets-sidebar {
margin-bottom: 10px;
border:none;
}
#saved-search-list {
border:none;
}
blockquote {
background-color: #f8f8f8;
border: 1px solid #ccc;
-moz-border-radius: 3px;
border-radius: 3px;
}
.widget {
border: none;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.nav-commlink, .nav-login-link {
margin-top: 67px;
height: 15px;
float:left;
padding: 6px 3px;
}
nav .nav-link {
//float: left;
}

View file

@ -1,140 +0,0 @@
<?php
$color=false;
$cleanzero_font_size=false;
$cleanzero_theme_width=false;
$site_color = get_config("cleanzero","color");
$site_cleanzero_font_size = get_config("cleanzero", "font_size" );
$site_cleanzero_theme_width = get_config("cleanzero", "theme_width");
if (local_user()) {
$color = get_pconfig(local_user(), "cleanzero","color");
$cleanzero_font_size = get_pconfig(local_user(), "cleanzero", "font_size");
$cleanzero_theme_width = get_pconfig(local_user(), "cleanzero", "theme_width");
}
if ($color===false) $color=$site_color;
if ($color===false) $color="cleanzero";
if ($cleanzero_font_size===false) $cleanzero_font_size=$site_cleanzero_font_size;
if ($cleanzero_theme_width===false) $cleanzero_theme_width=$site_cleanzero_theme_width;
if ($cleanzero_theme_width===false) $cleanzero_theme_width="standard";
if (file_exists("$THEMEPATH/$color/style.css")){
echo file_get_contents("$THEMEPATH/$color/style.css");
}
if($cleanzero_font_size == "16"){
echo "
.wall-item-content-wrapper {
font-size: 16px;
}
.wall-item-content-wrapper.comment {
font-size: 16px;
}
";
}
if($cleanzero_font_size == "14"){
echo "
.wall-item-content-wrapper {
font-size: 14px;
}
.wall-item-content-wrapper.comment {
font-size: 14px;
}
";
}
if($cleanzero_font_size == "12"){
echo "
.wall-item-content-wrapper {
font-size: 12px;
}
.wall-item-content-wrapper.comment {
font-size: 12px;
}
";
}
if($cleanzero_font_size == "10"){
echo "
.wall-item-content-wrapper {
font-size: 10px;
}
.wall-item-content-wrapper.comment {
font-size: 10px;
}
";
}
if ($cleanzero_theme_width === "standard") {
echo "
section {
margin: 0px 10%;
margin-right:10%;
}
aside {
margin-left: 10%;
}
nav {
margin-left: 10%;
margin-right: 10%;
}
nav #site-location {
right: 10%;
}
";
}
if ($cleanzero_theme_width === "narrow") {
echo "
section {
margin: 0px 15%;
margin-right:15%;
}
aside {
margin-left: 15%;
}
nav {
margin-left: 15%;
margin-right: 15%;
}
nav #site-location {
right: 15%;
}
";
}
if ($cleanzero_theme_width === "wide") {
echo "
section {
margin: 0px 5%;
margin-right:5%;
}
aside {
margin-left: 5%;
}
nav {
margin-left: 5%;
margin-right: 5%;
}
nav #site-location {
right: 5%;
}
";
}

View file

@ -1,86 +0,0 @@
<nav>
{{$langselector}}
<div id="site-location">{{$sitelocation}}</div>
<span id="nav-commlink-wrapper">
{{if $nav.register}}<a id="nav-register-link" class="nav-commlink {{$nav.register.2}} {{$sel.register}}" href="{{$nav.register.0}}" title="{{$nav.register.3}}" >{{$nav.register.1}}</a>{{/if}}
{{if $nav.network}}
<a id="nav-network-link" class="nav-commlink {{$nav.network.2}} {{$sel.network}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
<span id="net-update" class="nav-ajax-left"></span>
{{/if}}
{{if $nav.home}}
<a id="nav-home-link" class="nav-commlink {{$nav.home.2}} {{$sel.home}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
<span id="home-update" class="nav-ajax-left"></span>
{{/if}}
{{if $nav.community}}
<a id="nav-community-link" class="nav-commlink {{$nav.community.2}} {{$sel.community}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
{{/if}}
{{if $nav.introductions}}
<a id="nav-notify-link" class="nav-commlink {{$nav.introductions.2}} {{$sel.introductions}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a>
<span id="intro-update" class="nav-ajax-left"></span>
{{/if}}
{{if $nav.messages}}
<a id="nav-messages-link" class="nav-commlink {{$nav.messages.2}} {{$sel.messages}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >{{$nav.messages.1}}</a>
<span id="mail-update" class="nav-ajax-left"></span>
{{/if}}
{{if $nav.notifications}}
<a id="nav-notifications-linkmenu" class="nav-commlink" href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}">{{$nav.notifications.1}}</a>
<span id="notify-update" class="nav-ajax-left"></span>
<ul id="nav-notifications-menu" class="menu-popup">
<li id="nav-notifications-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
<li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">{{$nav.notifications.mark.3}}</a></li>
<li class="empty">{{$emptynotifications}}</li>
</ul>
{{/if}}
</span>
<span id="banner">{{$banner}}</span>
<span id="nav-link-wrapper">
{{if $nav.logout}}<a id="nav-logout-link" class="nav-link {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a> {{/if}}
{{if $nav.login}}<a id="nav-login-link" class="nav-login-link {{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a> {{/if}}
{{if $nav.help}} <a id="nav-help-link" class="nav-link {{$nav.help.2}}" target="friendica-help" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a>{{/if}}
{{if $nav.apps}}<a id="nav-apps-link" class="nav-link {{$nav.apps.2}}" href="{{$nav.apps.0}}" title="{{$nav.apps.3}}" >{{$nav.apps.1}}</a>{{/if}}
<a id="nav-search-link" class="nav-link {{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a>
<a id="nav-directory-link" class="nav-link {{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a>
{{if $nav.admin}}<a id="nav-admin-link" class="nav-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a>{{/if}}
{{if $nav.settings}}<a id="nav-settings-link" class="nav-link {{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a>{{/if}}
{{if $nav.profiles}}<a id="nav-profiles-link" class="nav-link {{$nav.profiles.2}}" href="{{$nav.profiles.0}}" title="{{$nav.profiles.3}}" >{{$nav.profiles.1}}</a>{{/if}}
{{if $nav.contacts}}<a id="nav-contacts-link" class="nav-link {{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a>{{/if}}
{{if $nav.manage}}<a id="nav-manage-link" class="nav-link {{$nav.manage.2}} {{$sel.manage}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a>{{/if}}
</span>
<span id="nav-end"></span>
</nav>
<ul id="nav-notifications-template" style="display:none;" rel="template">
<li class="{4}"><a href="{0}"><img data-src="{1}" height="24" width="24" alt="" />{2} <span class="notif-when">{3}</span></a></li>
</ul>
<script>
var pagetitle = null;
$("nav").bind('nav-update', function(e,data){
if (pagetitle==null) pagetitle = document.title;
var count = $(data).find('notif').attr('count');
if (count>0) {
document.title = "("+count+") "+pagetitle;
} else {
document.title = pagetitle;
}
});
</script>

View file

@ -1,11 +0,0 @@
{{include file="field_select.tpl" field=$color}}
{{include file="field_select.tpl" field=$font_size}}
{{include file="field_select.tpl" field=$resize}}
{{include file="field_select.tpl" field=$theme_width}}
<div class="settings-submit-wrapper">
<input type="submit" value="{{$submit}}" class="settings-submit" name="cleanzero-settings-submit" />
</div>

View file

@ -1,126 +0,0 @@
<?php
/*
* Name: cleanzero
* Description: Theme with clean design derived from the zero theme family. Including options to set color schemes, font sizes and resizing of images in posts
* Version:
* Author: Christian Vogeley (https://christian-vogeley.de/profile/christian)
*/
function cleanzero_init(&$a) {
$a->theme_info = array(
'extends' => 'duepuntozero',
);
set_template_engine($a, 'smarty3');
$a->page['htmlhead'] .= <<< EOT
<script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
$("#comment-edit-text-" + id).val(tmpStr);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(comment, id) {
if($(comment).hasClass('comment-edit-text-full')) {
$(".comment-edit-bb-" + id).show();
return true;
}
return false;
}
function cmtBbClose(comment, id) {
// if($(comment).hasClass('comment-edit-text-empty')) {
// $(".comment-edit-bb-" + id).hide();
// return true;
// }
return false;
}
$(document).ready(function() {
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
);
$('.savedsearchdrop').hover(
function() {
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.savedsearchterm').hover(
function() {
id = $(this).attr('id');
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
);
});
</script>
EOT;
// get resize configuration
$resize=false;
$site_resize = get_config('cleanzero', 'resize' );
if(local_user()) $resize = get_pconfig(local_user(), 'cleanzero', 'resize' );
if ($resize===false) $resize=$site_resize;
if ($resize===false) $resize=0;
if (intval($resize) > 0) {
//load jquery.ae.image.resize.js
$imageresizeJS = $a->get_baseurl($ssl_state)."/view/theme/cleanzero/js/jquery.ae.image.resize.js";
$a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s" ></script>', $imageresizeJS);
$a->page['htmlhead'] .= '
<script>
$(function() {
$(".wall-item-content img").aeImageResize({height: '.$resize.', width: '.$resize.'});
});
</script>';}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 KiB

View file

@ -1,105 +0,0 @@
@import url('../duepuntozero/style.css');
.wall-item-content-wrapper {
border: none;
}
.wall-item-content-wrapper.comment {
background: #ffffff !important;
border-left: 1px solid #EEE;
}
.wall-item-tools {
background: none;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: none;
border-left: 1px solid #EEE;
background: #EEEEEE;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
background: #ffffff !important;
}
section {
margin: 0px 32px;
}
aside {
margin-left: 32px;
}
nav {
margin-left: 32px;
margin-right: 32px;
}
nav #site-location {
top: 80px;
right: 36px;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
margin-top: 15px;
}
.wall-item-photo.comment {
margin-top: 26px;
}
.triangle-isosceles {
position:relative;
padding:15px;
margin:1em 0 3em;
color:#000;
background:#EEEEEE; /* default background for browsers without gradient support */
/* css3 */
background:-webkit-gradient(linear, 0 0, 0 100%, from(#EEEEEE), to(#ffffff));
background:-moz-linear-gradient(#EEEEEE, #ffffff);
background:-o-linear-gradient(#EEEEEE, #ffffff);
background:linear-gradient(#EEEEEE, #ffffff);
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
}
/* Variant : for left/right positioned triangle
------------------------------------------ */
.triangle-isosceles.left {
margin-left:30px;
background:#F8F8F8;
border: 2px solid #CCCCCC;
}
/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */
/* creates triangle */
.triangle-isosceles:after {
content:"";
position:absolute;
bottom:-8px; /* value = - border-top-width - border-bottom-width */
left:30px; /* controls horizontal position */
border-width:15px 15px 0; /* vary these values to change the angle of the vertex */
border-style:solid;
border-color:#f8f8f8 transparent;
/* reduce the damage in FF3.0 */
display:block;
width:0;
}
/* Variant : left
------------------------------------------ */
.triangle-isosceles.left:after {
top:12px; /* controls vertical position */
left:-30px; /* value = - border-left-width - border-right-width */
bottom:auto;
border-width:10px 30px 10px 0;
border-color:transparent #f8f8f8;
}

View file

@ -1,34 +0,0 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
<input type="hidden" name="type" value="{{$type}}" />
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
<input type="hidden" name="parent" value="{{$parent}}" />
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
<div class="comment-edit-photo" id="comment-edit-photo-{{$id}}" >
<a class="comment-edit-photo-link" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty triangle-isosceles left" style="display: block;" name="body" onFocus="commentOpen(this,{{$id}});" onBlur="commentClose(this,{{$id}});" >{{$comment}}</textarea>
{{if $qcomment}}
{{foreach $qcomment as $qc}}
<span class="fakelink qcomment" onclick="commentInsert(this,{{$id}}); return false;" >{{$qc}}</span>
&nbsp;
{{/foreach}}
{{/if}}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;" >
<input type="submit" onclick="post_comment({{$id}}); return false;" id="comment-edit-submit-{{$id}}" class="comment-edit-submit" name="submit" value="{{$submit}}" />
<span onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" class="fakelink">{{$preview}}</span>
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

View file

@ -1,55 +0,0 @@
<div class="wall-item-outside-wrapper {{$item.indent}}{{$item.previewing}}" id="wall-item-outside-wrapper-{{$item.id}}" >
<div class="wall-item-content-wrapper {{$item.indent}}" id="wall-item-content-wrapper-{{$item.id}}" >
<div class="wall-item-info" id="wall-item-info-{{$item.id}}">
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-{{$item.id}}"
onmouseover="if (typeof t{{$item.id}} != 'undefined') clearTimeout(t{{$item.id}}); openMenu('wall-item-photo-menu-button-{{$item.id}}')"
onmouseout="t{{$item.id}}=setTimeout('closeMenu(\'wall-item-photo-menu-button-{{$item.id}}\'); closeMenu(\'wall-item-photo-menu-{{$item.id}}\');',200)">
<a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}">
<img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" style="height: 80px; width: 80px;" alt="{{$item.name}}" /></a>
<span onclick="openClose('wall-item-photo-menu-{{$item.id}}');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-{{$item.id}}">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-{{$item.id}}">
<ul>
{{$item.item_photo_menu}}
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-wrapper" id="wall-item-wrapper-{{$item.id}}" >
{{if $item.lock}}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="{{$item.lock}}" onclick="lockview(event,{{$item.id}});" /></div>
{{else}}<div class="wall-item-lock"></div>{{/if}}
<div class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}</div>
</div>
</div>
<div class="wall-item-author">
<a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>
<div class="wall-item-ago" id="wall-item-ago-{{$item.id}}">{{$item.ago}}</div>
</div>
<div class="wall-item-content" id="wall-item-content-{{$item.id}}" >
<div class="wall-item-title" id="wall-item-title-{{$item.id}}">{{$item.title}}</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body triangle-isosceles left" id="wall-item-body-{{$item.id}}" >{{$item.body}}</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >
{{if $item.drop.dropping}}<a href="item/drop/{{$item.id}}" onclick="return confirmDelete();" class="icon drophide" title="{{$item.drop.delete}}" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{/if}}
</div>
{{if $item.drop.pagedrop}}<input type="checkbox" onclick="checkboxhighlight(this);" title="{{$item.drop.select}}" class="item-select" name="itemselected[]" value="{{$item.id}}" />{{/if}}
<div class="wall-item-delete-end"></div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-conv" id="wall-item-conv-{{$item.id}}" >
{{if $item.conv}}
<a href='{{$item.conv.href}}' id='context-{{$item.id}}' title='{{$item.conv.title}}'>{{$item.conv.title}}</a>
{{/if}}
</div>
<div class="wall-item-outside-wrapper-end {{$item.indent}}" ></div>
</div>

View file

@ -1,64 +0,0 @@
<?php
/*
* Name: Comix-Plain
* Description: Comix theme with a standard font
* Version: 1.0
* Author: Mike Macgirvin <mike@macgirvin.com>
*/
function comix_plain_init(&$a) {
$a->theme_info = array(
'extends' => 'duepuntozero',
);
set_template_engine($a, 'smarty3');
$a->page['htmlhead'] .= <<< EOT
<script>
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
);
$('.savedsearchdrop').hover(
function() {
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.savedsearchterm').hover(
function() {
id = $(this).attr('id');
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
);
});
</script>
EOT;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

View file

@ -1,109 +0,0 @@
@import url('../duepuntozero/style.css');
body {
font-family: "Comic Sans MS", sans !important;
font-size: 13px;
}
.wall-item-content-wrapper {
border: none;
}
.wall-item-content-wrapper.comment {
background: #ffffff !important;
border-left: 1px solid #EEE;
}
.wall-item-tools {
background: none;
}
.comment-edit-text-empty, .comment-edit-text-full {
border: none;
border-left: 1px solid #EEE;
background: #EEEEEE;
}
.comment-edit-wrapper, .comment-wwedit-wrapper {
background: #ffffff !important;
}
section {
margin: 0px 32px;
}
aside {
margin-left: 32px;
}
nav {
margin-left: 32px;
margin-right: 32px;
}
nav #site-location {
top: 80px;
right: 36px;
}
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
margin-top: 15px;
}
.wall-item-photo.comment {
margin-top: 26px;
}
.triangle-isosceles {
position:relative;
padding:15px;
margin:1em 0 3em;
color:#000;
background:#EEEEEE; /* default background for browsers without gradient support */
/* css3 */
background:-webkit-gradient(linear, 0 0, 0 100%, from(#EEEEEE), to(#ffffff));
background:-moz-linear-gradient(#EEEEEE, #ffffff);
background:-o-linear-gradient(#EEEEEE, #ffffff);
background:linear-gradient(#EEEEEE, #ffffff);
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
}
/* Variant : for left/right positioned triangle
------------------------------------------ */
.triangle-isosceles.left {
margin-left:30px;
background:#F8F8F8;
border: 2px solid #CCCCCC;
}
/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */
/* creates triangle */
.triangle-isosceles:after {
content:"";
position:absolute;
bottom:-8px; /* value = - border-top-width - border-bottom-width */
left:30px; /* controls horizontal position */
border-width:15px 15px 0; /* vary these values to change the angle of the vertex */
border-style:solid;
border-color:#f8f8f8 transparent;
/* reduce the damage in FF3.0 */
display:block;
width:0;
}
/* Variant : left
------------------------------------------ */
.triangle-isosceles.left:after {
top:12px; /* controls vertical position */
left:-30px; /* value = - border-left-width - border-right-width */
bottom:auto;
border-width:10px 30px 10px 0;
border-color:transparent #f8f8f8;
}

View file

@ -1,34 +0,0 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
<input type="hidden" name="type" value="{{$type}}" />
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
<input type="hidden" name="parent" value="{{$parent}}" />
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
<input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" />
<input type="hidden" name="post_id_random" value="{{$rand_num}}" />
<div class="comment-edit-photo" id="comment-edit-photo-{{$id}}" >
<a class="comment-edit-photo-link" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty triangle-isosceles left" style="display: block;" name="body" onFocus="commentOpen(this,{{$id}});" onBlur="commentClose(this,{{$id}});" >{{$comment}}</textarea>
{{if $qcomment}}
{{foreach $qcomment as $qc}}
<span class="fakelink qcomment" onclick="commentInsert(this,{{$id}}); return false;" >{{$qc}}</span>
&nbsp;
{{/foreach}}
{{/if}}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;" >
<input type="submit" onclick="post_comment({{$id}}); return false;" id="comment-edit-submit-{{$id}}" class="comment-edit-submit" name="submit" value="{{$submit}}" />
<span onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" class="fakelink">{{$preview}}</span>
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

View file

@ -1,55 +0,0 @@
<div class="wall-item-outside-wrapper {{$item.indent}} {{$item.shiny}}{{$item.previewing}}" id="wall-item-outside-wrapper-{{$item.id}}" >
<div class="wall-item-content-wrapper {{$item.indent}} {{$item.shiny}}" id="wall-item-content-wrapper-{{$item.id}}" >
<div class="wall-item-info" id="wall-item-info-{{$item.id}}">
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-{{$item.id}}"
onmouseover="if (typeof t{{$item.id}} != 'undefined') clearTimeout(t{{$item.id}}); openMenu('wall-item-photo-menu-button-{{$item.id}}')"
onmouseout="t{{$item.id}}=setTimeout('closeMenu(\'wall-item-photo-menu-button-{{$item.id}}\'); closeMenu(\'wall-item-photo-menu-{{$item.id}}\');',200)">
<a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}">
<img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" style="height: 80px; width: 80px;" alt="{{$item.name}}" /></a>
<span onclick="openClose('wall-item-photo-menu-{{$item.id}}');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-{{$item.id}}">menu</span>
<div class="wall-item-photo-menu" id="wall-item-photo-menu-{{$item.id}}">
<ul>
{{$item.item_photo_menu}}
</ul>
</div>
</div>
<div class="wall-item-photo-end"></div>
<div class="wall-item-wrapper" id="wall-item-wrapper-{{$item.id}}" >
{{if $item.lock}}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="{{$item.lock}}" onclick="lockview(event,{{$item.id}});" /></div>
{{else}}<div class="wall-item-lock"></div>{{/if}}
<div class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}</div>
</div>
</div>
<div class="wall-item-author">
<a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>
<div class="wall-item-ago" id="wall-item-ago-{{$item.id}}">{{$item.ago}}</div>
</div>
<div class="wall-item-content" id="wall-item-content-{{$item.id}}" >
<div class="wall-item-title" id="wall-item-title-{{$item.id}}">{{$item.title}}</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body triangle-isosceles left" id="wall-item-body-{{$item.id}}" >{{$item.body}}</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >
{{if $item.drop.dropping}}<a href="item/drop/{{$item.id}}" onclick="return confirmDelete();" class="icon drophide" title="{{$item.drop.delete}}" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{/if}}
</div>
{{if $item.drop.pagedrop}}<input type="checkbox" onclick="checkboxhighlight(this);" title="{{$item.drop.select}}" class="item-select" name="itemselected[]" value="{{$item.id}}" />{{/if}}
<div class="wall-item-delete-end"></div>
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-conv" id="wall-item-conv-{{$item.id}}" >
{{if $item.conv}}
<a href='{{$item.conv.href}}' id='context-{{$item.id}}' title='{{$item.conv.title}}'>{{$item.conv.title}}</a>
{{/if}}
</div>
<div class="wall-item-outside-wrapper-end {{$item.indent}} {{$item.shiny}}" ></div>
</div>

View file

@ -1,64 +0,0 @@
<?php
/*
* Name: Comix
* Description: An irreverent theme
* Version: 1.0
* Author: Mike Macgirvin <mike@macgirvin.com>
*/
function comix_init(&$a) {
$a->theme_info = array(
'extends' => 'duepuntozero',
);
set_template_engine($a, 'smarty3');
$a->page['htmlhead'] .= <<< EOT
<script>
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
);
$('.savedsearchdrop').hover(
function() {
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.savedsearchterm').hover(
function() {
id = $(this).attr('id');
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
);
});
</script>
EOT;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

View file

@ -1,33 +0,0 @@
@import url('../testbubble/style.css');
.icon {
background-image: url('dbicons.png');
}
body {
background: #000000;
color: #dddddd;
}
.info-message {
color: #444444;
}
#id_openid_url {
background: url(../testbubble/login-bg.gif) no-repeat #ffffff;
background-position: 0 50%;
padding-left: 18px;
width: 385px;
color: #000000;
}
.vevent, .eventcal {
color: #000000;
}
.event-list-date {
color: #DDDDDD;
}
.fortunate {
color: #8888FF !important;
}

View file

@ -1,25 +0,0 @@
<?php
/*
* Name: Dark Bubble
* Version: 1.0
* Maintainer: Mike Macgirvin <mike@macgirvin.com>
*/
function darkbubble_init(&$a) {
$a->theme_info = array(
'extends' => 'testbubble',
);
set_template_engine($a, 'smarty3');
$a->page['htmlhead'] .= <<< EOT
<script>
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
});
</script>
EOT;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 B

View file

@ -1,183 +0,0 @@
@import url('../duepuntozero/style.css');
/* dark variation Fabio Comuni <fabrix.xm@gmail.com> */
a:link, a:visited { color: #99CCFF; text-decoration: none; }
a:hover {text-decoration: underline; }
input, select, textarea {
background-color: #222222;
color: #FFFFFF !important;
border: 1px solid #444444;
}
.openid { background-color: #222222;}
body { background-color: #222222; color: #cccccc; background-image: url(head.jpg); }
aside{ background-image: url(border.jpg); padding-bottom: 0px; }
section { background-color: #333333; background-image: url(border.jpg); }
.tabs { background-image: url(head.jpg); }
div.wall-item-content-wrapper.shiny { background-image: url('shiny.png'); }
nav #banner #logo-text a { color: #ffffff; }
.wall-item-content-wrapper {
border: 1px solid #444444;
background: #444;
}
.wall-item-tools { background-color: #444444; background-image: none;}
.comment-wwedit-wrapper{ background-color: #333333; }
.comment-edit-preview{ color: #000000; }
.wall-item-content-wrapper.comment { background-color: #444444; border: 0px;}
.photo-top-album-name{ background-color: #333333; }
.photo-album-image-wrapper .caption { background-color: rgba(51, 51, 51, 0.8); color: #FFFFFF; }
.nav-selected.nav-link { color: #ffffff!important; border-bottom: 0px}
.nav-commlink, .nav-login-link {background-color: #b7bab3;}
.nav-commlink:link, .nav-commlink:visited,
.nav-login-link:link, .nav-login-link:visited{
color: #ffffff;
}
.fakelink, .fakelink:visited {
color: #99CCFF;
}
.wall-item-name-link {
color: #99CCFF;
}
.wall-item-photo-menu li a, .contact-photo-menu {
color: #CCCCCC; background-color: #333333;
}
.wall-item-photo-menu li a:hover {
background-color: #CCCCCC; color: #333333;
}
#page-footer { min-height: 1em;}
footer {
margin: 0px 10%;
display: block;
background-image: url('sectionend.jpg');
background-position: top left;
background-repeat: repeat-x;
height: 25px;
}
input#dfrn-url {
background-color: #222222;
color: #FFFFFF !important;
}
.pager_first a, .pager_last a, .pager_prev a, .pager_next a, .pager_n a, .pager_current {
color: #000088;
}
#jot-perms-icon {
float: left;
}
#jot-title, #jot-category {
background-color: #333333;
border: 1px solid #333333;
}
#jot-title::-webkit-input-placeholder{ color: #555555!important;}
#jot-title:-moz-placeholder{color: #555555!important;}
#jot-category::-webkit-input-placeholder{ color: #555555!important;}
#jot-category:-moz-placeholder{color: #555555!important;}
#jot-title:hover,
#jot-title:focus,
#jot-category:hover,
#jot-category:focus {
border: 1px solid #cccccc;
}
blockquote {
background: #ddd;
color: #000;
}
.acl-list-item p, #profile-jot-email-label, div#jot-preview-content, div.profile-jot-net {
color: #eec;
}
input#acl-search {
background-color: #aaa;
}
.notify-seen {
background:#111;
}
#nav-notifications-menu {
background: #2e2e2f;
}
#nav-notifications-menu li:hover {
background: #444;
}
.acpopupitem{
background:#2e2f2e;
}
code {
background:#2e2f2e !important;
color:#fff !important;
}
blockquote {
background:#2e2f2e !important;
color:#eec !important;
}
.group-selected, .nets-selected, .fileas-selected, .categories-selected {
background:#2e2f2e;
}
#fancybox-content{
background:#444;
}
.wall-item-content {
max-height: 20000px;
overflow: none;
}
.editicon {
background-color: #333;
}
#datebrowse-sidebar select {
color:#99CCFF !important;
}
.settings-widget .selected {
background: #666;
}
#adminpage table tr:hover {
color: #eec;
background-color: #666;
}
input#prvmail-subject {
background: #222 !important;
}
/* Events */
.fc-state-highlight {
background: #666 !important;
}
.fc-state-disabled, .fc-state-disabled .fc-button-inner {
color: #000 !important;
}

View file

@ -1,97 +0,0 @@
<?php
/*
* Name: Darkzero-NS
* Description: Darkzero theme with posts that do not scroll
* Version: 1.0
* Author: Mike Macgirvin <mike@macgirvin.com>
*/
function darkzero_NS_init(&$a) {
$a->theme_info = array(
'extends' => 'duepuntozero',
);
$a->page['htmlhead'] .= <<< EOT
<script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
$("#comment-edit-text-" + id).val(tmpStr);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
);
$('.savedsearchdrop').hover(
function() {
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.savedsearchterm').hover(
function() {
id = $(this).attr('id');
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
);
});
</script>
EOT;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 B

View file

@ -1,189 +0,0 @@
@import url('../duepuntozero/style.css');
/* dark variation Fabio Comuni <fabrix.xm@gmail.com> */
a:link, a:visited { color: #99CCFF; text-decoration: none; }
a:hover {text-decoration: underline; }
input, select, textarea {
background-color: #222222;
color: #FFFFFF !important;
border: 1px solid #444444;
}
.openid { background-color: #222222;}
body { background-color: #222222; color: #cccccc; background-image: url(head.jpg); }
aside{ background-image: url(border.jpg); padding-bottom: 0px; }
section { background-color: #333333; background-image: url(border.jpg); }
#panel { background-color: #2e2f2e;}
.tabs { background-image: url(head.jpg); }
div.wall-item-content-wrapper.shiny { background-image: url('shiny.png'); }
nav #banner #logo-text a { color: #ffffff; }
.wall-item-content-wrapper {
border: 1px solid #444444;
background: #444444;
}
.wall-item-outside-wrapper.threaded > .wall-item-content-wrapper {
-moz-border-radius: 3px 3px 0px;
border-radius: 3px 3px 0px;
}
.wall-item-tools { background-color: #444444; background-image: none;}
.comment-wwedit-wrapper{
background-color: #333333;
}
.comment-wwedit-wrapper.threaded {
border: solid #444444;
border-width: 0px 3px 3px;
-moz-border-radius: 0px 0px 3px 3px;
border-radius: 0px 0px 3px 3px;
}
.editicon {
background-color: #333;
}
.comment-edit-preview{ color: #000000; }
.wall-item-content-wrapper.comment { background-color: #444444; border: 0px;}
.photo-top-album-name{ background-color: #333333; }
.photo-album-image-wrapper .caption { background-color: rgba(51, 51, 51, 0.8); color: #FFFFFF; }
.nav-selected.nav-link { color: #ffffff!important; border-bottom: 0px}
.nav-commlink, .nav-login-link {background-color: #b7bab3;}
.nav-commlink:link, .nav-commlink:visited,
.nav-login-link:link, .nav-login-link:visited{
color: #ffffff;
}
.fakelink, .fakelink:visited {
color: #99CCFF;
}
.wall-item-name-link {
color: #99CCFF;
}
.wall-item-photo-menu li a, .contact-photo-menu {
color: #CCCCCC; background-color: #333333;
}
.wall-item-photo-menu li a:hover {
background-color: #CCCCCC; color: #333333;
}
code {
background:#2e2f2e !important;
color:#fff !important;
}
blockquote {
background:#2e2f2e !important;
color:#eec !important;
}
#page-footer { min-height: 1em;}
footer {
margin: 0px 10%;
display: block;
background-image: url('sectionend.jpg');
background-position: top left;
background-repeat: repeat-x;
height: 25px;
}
input#dfrn-url {
background-color: #222222;
color: #FFFFFF !important;
}
.pager_first a, .pager_last a, .pager_prev a, .pager_next a, .pager_n a, .pager_current {
color: #000088;
}
#jot-perms-icon {
float: left;
}
#jot-title, #jot-category {
background-color: #333333;
border: 1px solid #333333;
}
#jot-title::-webkit-input-placeholder{ color: #555555!important;}
#jot-title:-moz-placeholder{color: #555555!important;}
#jot-category::-webkit-input-placeholder{ color: #555555!important;}
#jot-category:-moz-placeholder{color: #555555!important;}
#jot-title:hover,
#jot-title:focus,
#jot-category:hover,
#jot-category:focus {
border: 1px solid #cccccc;
}
.acl-list-item p, #profile-jot-email-label, div#jot-preview-content, div.profile-jot-net {
color: #eec;
}
#fancybox-content{
background:#444;
}
input#acl-search {
background-color: #aaa;
}
.notify-seen {
background:#111;
}
#nav-notifications-menu {
background: #2e2e2f;
}
#nav-notifications-menu li:hover {
background: #444;
}
.acpopupitem{
background:#2e2f2e;
}
.group-selected, .nets-selected, .fileas-selected, .categories-selected{
background:#2e2f2e;
}
/* Events */
.fc-state-highlight {
background: #666 !important;
}
.fc-state-disabled, .fc-state-disabled .fc-button-inner {
color: #000 !important;
}
/*Admin page */
#adminpage table tr:hover {
color: #eec;
background-color: #666;
}
.settings-widget .selected {
background: #666;
}
/* Stuff that doesn't seem to fit with anything else */
#datebrowse-sidebar select {
color:#99CCFF !important;
}
input#prvmail-subject {
background: #222 !important;
}

View file

@ -1,108 +0,0 @@
<?php
/*
* Name: Darkzero
* Version: 1.0
* Author: Fabio Communi <fabrix.xm@gmail.com>
* Maintainer: Fabio Communi <fabrix.xm@gmail.com>
* Maintainer: Mike Macgirvin <mike@macgirvin.com>
*/
function darkzero_init(&$a) {
$a->theme_info = array(
'extends' => 'duepuntozero',
);
set_template_engine($a, 'smarty3');
$a->page['htmlhead'] .= <<< EOT
<script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
$("#comment-edit-text-" + id).val(tmpStr);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(comment, id) {
if($(comment).hasClass('comment-edit-text-full')) {
$(".comment-edit-bb-" + id).show();
return true;
}
return false;
}
function cmtBbClose(comment, id) {
if($(comment).hasClass('comment-edit-text-empty')) {
$(".comment-edit-bb-" + id).hide();
return true;
}
return false;
}
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
);
$('.savedsearchdrop').hover(
function() {
$(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
function() {
$(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$('.savedsearchterm').hover(
function() {
id = $(this).attr('id');
$('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
function() {
id = $(this).attr('id');
$('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
);
});
</script>
EOT;
}

View file

@ -1,31 +0,0 @@
Photo album display?
- The "lock" icon for private items
- change it to black?
- when clicked, the popup window displays poorly
- Edit photo page: bottom buttons are off-center in Dolphin Mini
- BB code buttons for status updates
- Get "add contact" back on contacts page
- Allow creating a new private message
- Admin: access to more pages than summary?
- Find a way to show embedded videos at the normal size for tablets that can handle it
- Need to find a way to deal with freakin annoying elements that don't respect screen width limits.
Specifically, need to find a way to keep them from forcing a horizontal scroll bar to show up and
making the rest of the body text overflow the item's borders that is screen-width sensitive (it's
annoying to have a 300px truncated code block on a 1024px wide screen). At least the following cause problems:
- code blocks
- blockquote blocks
- #reallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallyreallylongtags
- Needs to be faster!
- Reduce DOM elements (~2400 for 10 items, ~8400 for 40 items)
- Sometimes, when "Permission denied", wrong login page is shown

Binary file not shown.

Before

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 615 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 383 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 562 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 306 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 574 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 530 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 568 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 425 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 305 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 520 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1,019 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 770 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 923 B

View file

@ -1,165 +0,0 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Some files were not shown because too many files have changed in this diff Show more